/*
Theme Name: LA KW Theme
Theme URI: https://lakw.tv/
Author: KushLab
Author URI: https://lakw.tv/
Description: A WordPress theme for LA KW
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lakw-theme
*/

/* Custom Colors & Root Variables */
:root {
  --brand-dark: #120a2e;
  --brand-purple-deep: #1a0b3d;
  --brand-yellow: #f8e71c;
  --brand-accent: #3b1e7b;
}


@tailwind base;
@tailwind components;
@tailwind utilities;

body {
    background-color: var(--brand-dark);
    color: white;
    font-family: 'Inter', sans-serif;
}

/* Post/Spain pages use Public Sans */
.font-display {
    font-family: 'Public Sans', sans-serif !important;
}

/* Layout Effects */
.gradient-overlay {
    background: linear-gradient(to bottom, rgba(26, 11, 61, 0) 0%, rgba(26, 11, 61, 0.9) 80%);
}

.card-hover {
    transition: transform 0.2s ease-in-out;
}

.card-hover:hover {
    transform: scale(1.02);
}

.active-nav {
    border-bottom: 4px solid var(--brand-yellow);
}

.active-country {
    background: rgba(59, 30, 123, 0.6);
    border: 1px solid #4a26a1;
}

/* Scrollbar Utility */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}