/* ============================================
   PRAJZ HITS - REDESIGN inspired by Radio Energic
   Light theme with red accents
   ============================================ */
:root {
    /* Colors - Light theme with red accents */
    --color-bg-body: #f5f5f5;
    --color-bg-surface: #ffffff;
    --color-bg-glass: rgba(255, 255, 255, 0.85);
    --color-brand-primary: #D32F2F;
    --color-brand-primary-dark: #B71C1C;
    --color-brand-primary-light: rgba(211, 47, 47, 0.1);
    --color-brand-secondary: #1a1a1a;
    --color-accent: #E53935;
    
    --color-text-primary: #1a1a1a;
    --color-text-secondary: #555555;
    --color-text-muted: #888888;
    --color-text-on-primary: #ffffff;
    
    --color-border: rgba(0, 0, 0, 0.08);
    --color-border-hover: rgba(211, 47, 47, 0.3);

    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
    --glow-primary: 0 4px 20px rgba(211, 47, 47, 0.25);
    
    /* Fluid Layout */
    --navbar-height: clamp(80px, 12vw, 120px);
    --container-width: 1200px;
    --container-padding: clamp(16px, 4vw, 24px);
    
    /* Fluid Typography */
    --fs-hero-title: clamp(2.5rem, 7vw, 5.5rem);
    --fs-hero-subtitle: clamp(0.95rem, 2vw, 1.25rem);
    --fs-hero-label: clamp(0.7rem, 1.5vw, 0.85rem);
    --fs-section-title: clamp(2rem, 5vw, 3.5rem);
    --fs-section-subtitle: clamp(0.9rem, 1.5vw, 1.1rem);
    --fs-schedule-name: clamp(1.1rem, 2vw, 1.5rem);
    --fs-schedule-desc: clamp(0.8rem, 1.3vw, 0.95rem);
    --fs-btn: clamp(0.85rem, 1.5vw, 1rem);
    
    /* Fluid Spacing */
    --space-section: clamp(60px, 10vw, 120px);
    --space-section-header: clamp(40px, 6vw, 72px);
    --space-hero-gap: clamp(24px, 5vw, 64px);
    
    /* Fluid Sizes */
    --size-logo: clamp(96px, 14vw, 144px);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    background: var(--color-bg-body);
    color: var(--color-text-primary);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); -webkit-tap-highlight-color: transparent; }
button { border: none; background: none; cursor: pointer; font-family: inherit; -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-text-primary);
}

.text-gradient {
    color: var(--color-brand-primary);
    -webkit-text-fill-color: var(--color-brand-primary);
}

/* ============================================
   BACKGROUND EFFECTS - Geometric blocks (Energic style)
   ============================================ */
.bg-gradient-orb {
    display: none; /* Remove dark theme orbs */
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    z-index: 1000;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    background: transparent;
}

.navbar.scrolled {
    background: var(--color-bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-img {
    height: var(--size-logo);
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

.navbar.scrolled .logo-img { height: calc(var(--size-logo) * 0.85); }

.nav-list {
    display: flex;
    gap: clamp(20px, 3vw, 36px);
}

.nav-link {
    font-weight: 700;
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
}

.navbar.scrolled .nav-link {
    color: var(--color-text-secondary);
    text-shadow: none;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--color-brand-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-brand-primary);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-link.active::after, .nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 24px);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: clamp(4px, 0.8vw, 6px) clamp(10px, 1.5vw, 14px);
    background: var(--color-brand-primary);
    border-radius: 50px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: live-pulse 1.5s infinite;
}

.live-text {
    font-size: clamp(0.65rem, 1vw, 0.75rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.1em;
}

@keyframes live-pulse {
    0% { transform: scale(1); opacity: 1; }
    70% { transform: scale(1.3); opacity: 0.6; }
    100% { transform: scale(1); opacity: 1; }
}

/* Menu Button */
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.menu-line {
    width: 24px;
    height: 2.5px;
    background: var(--color-text-primary);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* ============================================
   HERO SECTION - Fullscreen image style (Energic)
   ============================================ */
.hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--color-text-primary);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/create-a-realistic-picture-of-a-concert-at-a-large.png') center 40% / 120% auto no-repeat;
    opacity: 0.55;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    z-index: 0;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: var(--navbar-height);
    padding-bottom: clamp(80px, 12vw, 120px);
    min-height: 100vh;
    min-height: 100dvh;
}

.hero-content {
    max-width: 900px;
}

.hero-label {
    display: inline-block;
    padding: clamp(6px, 1vw, 8px) clamp(14px, 2vw, 20px);
    background: var(--color-brand-primary);
    color: #ffffff;
    border-radius: 4px;
    font-weight: 800;
    font-size: var(--fs-hero-label);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: clamp(16px, 3vw, 32px);
}

.hero-title {
    font-size: var(--fs-hero-title);
    margin-bottom: clamp(16px, 3vw, 32px);
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
}

.hero-title .text-gradient {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    position: relative;
    display: inline-block;
}

.hero-title .text-gradient::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: clamp(4px, 0.8vw, 8px);
    background: var(--color-brand-primary);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: var(--fs-hero-subtitle);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto clamp(24px, 4vw, 48px);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(12px, 2vw, 16px);
    align-items: center;
    justify-content: center;
}

/* Hero Graphic - simplified */
.hero-graphic {
    display: none; /* Hide the old visualizer circle in hero */
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(14px, 2vw, 18px) clamp(28px, 4vw, 40px);
    border-radius: 4px;
    font-weight: 800;
    font-size: var(--fs-btn);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    min-height: 44px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--color-brand-primary);
    color: #ffffff;
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    background: var(--color-brand-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(211, 47, 47, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    transition: var(--transition-base);
    pointer-events: none;
}

.btn:hover .btn-glow { opacity: 0.3; transform: translate(-50%, -50%) scale(2); }

/* ============================================
   HERO PLAY BUTTON - Modern Animations
   ============================================ */
.btn-hero-play {
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: hero-btn-breathe 3s ease-in-out infinite;
}

.btn-hero-play:hover {
    animation: none;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 32px rgba(211, 47, 47, 0.5), 0 0 60px rgba(211, 47, 47, 0.2);
}

.btn-hero-play:active {
    transform: translateY(0) scale(0.97);
    animation: none;
}

/* Breathing glow animation */
@keyframes hero-btn-breathe {
    0%, 100% { box-shadow: 0 4px 20px rgba(211, 47, 47, 0.25); }
    50% { box-shadow: 0 4px 30px rgba(211, 47, 47, 0.45), 0 0 50px rgba(211, 47, 47, 0.15); }
}

/* Pulse rings around button */
.btn-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(211, 47, 47, 0.4);
    border-radius: 4px;
    transform: translate(-50%, -50%);
    animation: btn-pulse-expand 3s ease-out infinite;
    pointer-events: none;
    z-index: -1;
}

.btn-pulse-ring-2 {
    animation-delay: 1.5s;
}

@keyframes btn-pulse-expand {
    0% { width: 100%; height: 100%; opacity: 0.6; }
    100% { width: 140%; height: 160%; opacity: 0; }
}

/* Ripple effect on click */
.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

.btn-hero-play.ripple-active .btn-ripple {
    animation: btn-ripple-anim 0.6s ease-out forwards;
}

@keyframes btn-ripple-anim {
    0% { width: 0; height: 0; opacity: 0.5; }
    100% { width: 300px; height: 300px; opacity: 0; }
}

/* Playing state - stop pulse, add glow */
.btn-hero-play.is-playing {
    animation: none;
    background: var(--color-brand-primary-dark);
    box-shadow: 0 4px 20px rgba(211, 47, 47, 0.3);
}

.btn-hero-play.is-playing .btn-pulse-ring {
    animation: none;
    opacity: 0;
}

/* Icon spin on state change */
.btn-hero-play .icon-play {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-play:active .icon-play {
    transform: scale(0.85);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1vw, 10px);
}

.icon-play { 
    width: clamp(18px, 2.5vw, 24px); 
    height: clamp(18px, 2.5vw, 24px); 
}

/* Install Button */
.btn-install {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-install:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-install:active {
    transform: translateY(0);
}

.icon-install {
    width: clamp(18px, 2.5vw, 24px);
    height: clamp(18px, 2.5vw, 24px);
}

/* ============================================
   SECTIONS
   ============================================ */
.section { 
    padding: var(--space-section) 0; 
    position: relative;
}

.section-dark { 
    background: var(--color-bg-surface);
}

.section-header { 
    text-align: center; 
    margin-bottom: var(--space-section-header); 
}

.section-title { 
    font-size: var(--fs-section-title); 
    margin-bottom: clamp(8px, 1.5vw, 16px);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--color-brand-primary);
    border-radius: 2px;
}

.section-subtitle { 
    font-size: var(--fs-section-subtitle); 
    color: var(--color-text-secondary);
    margin-top: 20px;
}

/* ============================================
   NOW PLAYING SECTION
   ============================================ */
.now-playing-section {
    padding: clamp(30px, 5vw, 50px) 0;
    background: var(--color-bg-surface);
    border-bottom: 1px solid var(--color-border);
}

.now-playing-container {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 32px);
}

.now-playing-label {
    font-size: clamp(0.7rem, 1vw, 0.8rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-brand-primary);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.now-playing-label .pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--color-brand-primary);
    border-radius: 50%;
    animation: live-pulse 1.5s infinite;
    flex-shrink: 0;
}

.now-playing-track {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: var(--color-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.now-playing-divider {
    width: 2px;
    height: 30px;
    background: var(--color-border);
    flex-shrink: 0;
}

/* ============================================
   HOW TO LISTEN SECTION
   ============================================ */
.listen-section {
    background: var(--color-bg-body);
}

.listen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(16px, 3vw, 24px);
}

.listen-card {
    background: var(--color-bg-surface);
    padding: clamp(24px, 4vw, 36px);
    border-radius: 8px;
    border: 1px solid var(--color-border);
    transition: var(--transition-base);
    text-align: center;
}

.listen-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.listen-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto clamp(12px, 2vw, 20px);
    background: var(--color-brand-primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand-primary);
}

.listen-card-icon svg {
    width: 24px;
    height: 24px;
}

.listen-card h3 {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    margin-bottom: 8px;
    font-weight: 800;
}

.listen-card p {
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ============================================
   SCHEDULE
   ============================================ */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(12px, 3vw, 24px);
}

.schedule-card {
    background: var(--color-bg-surface);
    padding: clamp(24px, 4vw, 36px);
    border-radius: 8px;
    border: 1px solid var(--color-border);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-border);
    transition: var(--transition-base);
}

.schedule-card:hover::before,
.schedule-card.active::before {
    background: var(--color-brand-primary);
}

.schedule-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.schedule-card.active {
    border-color: var(--color-border-hover);
    background: linear-gradient(135deg, var(--color-brand-primary-light) 0%, var(--color-bg-surface) 100%);
}

.schedule-time {
    color: var(--color-brand-primary);
    font-weight: 800;
    margin-bottom: clamp(8px, 1.5vw, 16px);
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    padding: 4px 12px;
    background: var(--color-brand-primary-light);
    border-radius: 4px;
    display: inline-block;
    letter-spacing: 0.05em;
}

.schedule-name { 
    font-size: var(--fs-schedule-name); 
    margin-bottom: clamp(6px, 1vw, 12px);
    font-weight: 800;
}

.schedule-desc { 
    color: var(--color-text-secondary); 
    font-size: var(--fs-schedule-desc); 
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 3vw, 24px);
}

.about-text p {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.about-text strong {
    color: var(--color-text-primary);
}

/* ============================================
   TEAM SECTION - Energic style with geometric blocks
   ============================================ */
.team-section {
    background: var(--color-bg-body);
    position: relative;
    overflow: hidden;
    padding: var(--space-section) 0;
}

.team-section .section-header {
    position: relative;
    z-index: 2;
}

.team-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(6rem, 20vw, 20rem);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.team-geometric {
    position: absolute;
    background: var(--color-brand-primary);
    z-index: 1;
}

.team-geo-1 {
    width: clamp(60px, 12vw, 160px);
    height: clamp(80px, 15vw, 200px);
    top: 10%;
    left: -2%;
}

.team-geo-2 {
    width: clamp(40px, 8vw, 100px);
    height: clamp(40px, 8vw, 100px);
    bottom: 15%;
    right: 5%;
}

.team-geo-3 {
    width: clamp(80px, 15vw, 200px);
    height: clamp(30px, 5vw, 60px);
    top: 20%;
    right: -3%;
}

/* ============================================
   CUSTOM RADIO PLAYER BAR
   ============================================ */
.player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-brand-primary);
    z-index: 2000;
    padding: clamp(8px, 1.5vw, 12px) 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    overflow: visible;
}

/* Equalizer Canvas behind player bar */
.player-eq-canvas {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.25;
    z-index: 0;
}

.player-container {
    width: 100%;
    position: relative;
    z-index: 1;
}

.player {
    display: flex;
    align-items: center;
    gap: clamp(10px, 2vw, 16px);
    width: 100%;
}

/* Album Artwork */
.player-artwork {
    width: clamp(44px, 8vw, 56px);
    height: clamp(44px, 8vw, 56px);
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}

.player-art-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Track Info */
.player-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.player-station {
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    font-weight: 800;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.player-track {
    font-size: clamp(0.65rem, 1.2vw, 0.8rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

/* ============================================
   MINI EQUALIZER BARS (in player bar)
   ============================================ */
.player-eq-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 28px;
    flex-shrink: 0;
    padding: 0 4px;
}

.player-eq-bars .eq-bar {
    display: block;
    width: 4px;
    height: 4px;
    min-height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    transition: height 0.15s ease;
}

.player-eq-bars.is-active .eq-bar {
    background: #ffffff;
    animation: eq-bounce 0.8s ease-in-out infinite alternate;
}

.player-eq-bars.is-active .eq-bar:nth-child(1) { animation-delay: 0s; }
.player-eq-bars.is-active .eq-bar:nth-child(2) { animation-delay: 0.15s; }
.player-eq-bars.is-active .eq-bar:nth-child(3) { animation-delay: 0.05s; }
.player-eq-bars.is-active .eq-bar:nth-child(4) { animation-delay: 0.2s; }
.player-eq-bars.is-active .eq-bar:nth-child(5) { animation-delay: 0.1s; }

@keyframes eq-bounce {
    0% { height: 4px; }
    25% { height: 14px; }
    50% { height: 22px; }
    75% { height: 10px; }
    100% { height: 28px; }
}

/* Play Button */
.player-controls {
    flex-shrink: 0;
}

.player-play-btn {
    width: clamp(40px, 7vw, 48px);
    height: clamp(40px, 7vw, 48px);
    border-radius: 50%;
    background: #ffffff;
    color: var(--color-brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.player-play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.player-play-btn:active {
    transform: scale(0.95);
}

.player-play-icon {
    width: clamp(22px, 3.5vw, 28px);
    height: clamp(22px, 3.5vw, 28px);
}

.player-play-btn.is-playing {
    background: #ffffff;
    color: var(--color-brand-primary);
}

/* ============================================
   PLAYLIST TOGGLE BUTTON
   ============================================ */
.player-playlist-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.player-playlist-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.player-playlist-btn.is-active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}

.player-playlist-btn svg {
    width: 20px;
    height: 20px;
}

/* Volume Control */
.player-volume {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.player-volume-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
    border-radius: 50%;
}

.player-volume-btn:hover {
    color: #ffffff;
}

.player-volume-btn svg {
    width: 20px;
    height: 20px;
}

.player-volume-btn.is-muted svg {
    opacity: 0.5;
}

/* Volume Slider */
.player-volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: clamp(60px, 10vw, 100px);
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.player-volume-slider:hover {
    background: rgba(255, 255, 255, 0.45);
}

.player-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    transition: var(--transition-fast);
}

.player-volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.player-volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    border: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* ============================================
   PLAYLIST PANEL
   ============================================ */
.playlist-panel {
    position: absolute;
    bottom: 100%;
    right: 0;
    width: clamp(320px, 40vw, 440px);
    max-height: 0;
    background: #1a1a1a;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease,
                box-shadow 0.3s ease;
    opacity: 0;
    box-shadow: none;
    z-index: 10;
}

.playlist-panel.is-open {
    max-height: 520px;
    opacity: 1;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.35);
}

.playlist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.playlist-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
}

.playlist-header-left svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.playlist-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.playlist-close-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.playlist-close-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.playlist-close-btn svg {
    width: 18px;
    height: 18px;
}

/* Playlist Equalizer Visualizer */
.playlist-eq-visualizer {
    padding: 0 20px;
    height: 60px;
    position: relative;
    overflow: hidden;
}

.playlist-eq-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Playlist List */
.playlist-list {
    padding: 8px 12px 16px;
    max-height: 360px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.playlist-list::-webkit-scrollbar {
    width: 4px;
}

.playlist-list::-webkit-scrollbar-track {
    background: transparent;
}

.playlist-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.playlist-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Playlist Empty State */
.playlist-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
}

.playlist-empty svg {
    opacity: 0.4;
}

.playlist-empty p {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Playlist Item */
.playlist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    transition: background 0.2s ease;
    cursor: default;
}

.playlist-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.playlist-item.is-current {
    background: rgba(211, 47, 47, 0.2);
}

.playlist-item-index {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

.playlist-item.is-current .playlist-item-index {
    color: var(--color-brand-primary);
}

.playlist-item-art {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
}

.playlist-item-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.playlist-item-info {
    flex: 1;
    min-width: 0;
}

.playlist-item-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.playlist-item-artist {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.playlist-item-time {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    white-space: nowrap;
}

/* Playlist Item Music Links */
.playlist-item-links {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.playlist-music-link {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0.5;
    text-decoration: none;
}

.playlist-music-link:hover {
    opacity: 1;
    transform: scale(1.15);
}

.playlist-music-link svg {
    width: 16px;
    height: 16px;
}

.playlist-music-link.link-spotify {
    color: #1DB954;
    background: rgba(29, 185, 84, 0.1);
}

.playlist-music-link.link-spotify:hover {
    background: rgba(29, 185, 84, 0.25);
}

.playlist-music-link.link-apple {
    color: #FC3C44;
    background: rgba(252, 60, 68, 0.1);
}

.playlist-music-link.link-apple:hover {
    background: rgba(252, 60, 68, 0.25);
}

.playlist-item:hover .playlist-music-link {
    opacity: 0.8;
}

.playlist-item.is-current .playlist-item-title {
    color: var(--color-brand-primary);
}

/* Now playing indicator in playlist */
.playlist-item.is-current .playlist-item-index::after {
    content: '';
    display: none;
}

.playlist-item-now-icon {
    display: none;
}

.playlist-item.is-current .playlist-item-now-icon {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
}

.playlist-item.is-current .playlist-item-index span {
    display: none;
}

.playlist-now-bar {
    display: block;
    width: 3px;
    background: var(--color-brand-primary);
    border-radius: 1px;
    animation: eq-bounce-sm 0.6s ease-in-out infinite alternate;
}

.playlist-now-bar:nth-child(1) { height: 6px; animation-delay: 0s; }
.playlist-now-bar:nth-child(2) { height: 10px; animation-delay: 0.15s; }
.playlist-now-bar:nth-child(3) { height: 4px; animation-delay: 0.08s; }

@keyframes eq-bounce-sm {
    0% { height: 3px; }
    100% { height: 14px; }
}

.hidden { display: none; }

@media (max-width: 480px) {
    .player-volume {
        display: none;
    }
    .player-eq-bars {
        display: none;
    }
    .playlist-panel {
        width: 100%;
        border-radius: 16px 16px 0 0;
    }
}

@media (max-width: 768px) {
    .playlist-panel {
        width: 100%;
    }
}

/* ============================================
   FOOTER - Red background (Energic style)
   ============================================ */
.site-footer {
    background: var(--color-brand-primary);
    color: #ffffff;
    padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 12vw, 120px);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: 'PRAJZ HITS';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(4rem, 15vw, 14rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
    margin-bottom: clamp(32px, 5vw, 56px);
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-brand-text strong {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: #ffffff;
}

.footer-brand-text span {
    font-size: clamp(0.7rem, 1.2vw, 0.8rem);
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav {
    display: flex;
    gap: clamp(16px, 3vw, 24px);
    justify-content: center;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: clamp(0.8rem, 1.3vw, 0.9rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.footer-info address {
    font-style: normal;
    font-size: clamp(0.7rem, 1.1vw, 0.8rem);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: clamp(16px, 3vw, 24px);
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: clamp(0.7rem, 1.1vw, 0.8rem);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--delay, 0s);
}

.animate-on-scroll[data-animation="fade-in-up"] {
    transform: translateY(40px);
}

.animate-on-scroll[data-animation="fade-in-up"].animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll[data-animation="zoom-in"] {
    transform: scale(0.85);
}

.animate-on-scroll[data-animation="zoom-in"].animated {
    opacity: 1;
    transform: scale(1);
}

.animate-on-scroll[data-animation="fade-in-left"] {
    transform: translateX(-40px);
}

.animate-on-scroll[data-animation="fade-in-left"].animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-on-scroll[data-animation="fade-in-right"] {
    transform: translateX(40px);
}

.animate-on-scroll[data-animation="fade-in-right"].animated {
    opacity: 1;
    transform: translateX(0);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    70% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Visualizer bars - keep for player functionality */
.visualizer-circle {
    display: none;
}

.visualizer-container {
    display: none;
}

.visualizer-bar {
    display: none;
}

.hero-art {
    display: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-container { 
        text-align: center; 
    }
    .hero-subtitle { 
        margin: 0 auto clamp(24px, 4vw, 48px); 
    }
}

/* Mobile menu - hidden on all screens by default */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--color-bg-surface);
    z-index: 3000;
    transition: var(--transition-base);
    padding: 40px;
    display: none;
    align-items: center;
    justify-content: center;
}

.mobile-menu.open {
    right: 0;
    display: flex;
}

@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .menu-btn { display: flex; }

    .schedule-grid { grid-template-columns: 1fr; }

    .mobile-menu {
        display: flex;
    }
    
    .mobile-menu.open { right: 0; }
    .mobile-nav { 
        display: flex; 
        flex-direction: column; 
        gap: clamp(20px, 5vw, 32px); 
        text-align: center; 
    }
    .mobile-nav-link { 
        font-size: clamp(1.5rem, 5vw, 2rem); 
        font-weight: 900; 
        min-height: 44px; 
        display: flex; 
        align-items: center; 
        justify-content: center;
        color: var(--color-text-primary);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    .mobile-nav-link:hover,
    .mobile-nav-link.active {
        color: var(--color-brand-primary);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand {
        justify-content: center;
    }
    .footer-nav {
        justify-content: center;
    }
    .footer-info {
        text-align: center;
    }

    .now-playing-container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .now-playing-divider {
        display: none;
    }

    .listen-grid {
        grid-template-columns: 1fr;
    }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .animate-float { animation: none; }
}

/* Safe area insets */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .player-bar {
        padding-bottom: calc(clamp(6px, 1.5vw, 12px) + env(safe-area-inset-bottom));
    }
    .navbar {
        padding-top: env(safe-area-inset-top);
    }
}

/* ============================================
   ZAJÍMAVOSTI SECTION
   ============================================ */
.zajimavosti-section {
    background-color: var(--color-bg-surface);
}

.zajimavosti-intro {
    max-width: 800px;
    margin: 0 auto clamp(32px, 5vw, 48px);
    text-align: center;
}

.zajimavosti-intro p {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* Accordion */
.zajimavosti-accordion {
    max-width: 900px;
    margin: 0 auto clamp(40px, 6vw, 64px);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.zajimavosti-item {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-bg-surface);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.zajimavosti-item:hover {
    border-color: var(--color-border-hover);
}

.zajimavosti-item.active {
    border-color: var(--color-brand-primary);
    box-shadow: 0 2px 16px rgba(211, 47, 47, 0.08);
}

.zajimavosti-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: clamp(14px, 2.5vw, 20px) clamp(16px, 3vw, 24px);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.2s ease;
}

.zajimavosti-toggle:hover {
    background-color: rgba(211, 47, 47, 0.03);
}

.zajimavosti-toggle-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-brand-primary-light);
    border-radius: 8px;
}

.zajimavosti-toggle-title {
    flex: 1;
    font-weight: 700;
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    color: var(--color-text-primary);
    line-height: 1.4;
}

.zajimavosti-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--color-text-muted);
    transition: transform 0.3s ease;
}

.zajimavosti-item.active .zajimavosti-chevron {
    transform: rotate(180deg);
    color: var(--color-brand-primary);
}

.zajimavosti-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 clamp(16px, 3vw, 24px);
}

.zajimavosti-item.active .zajimavosti-content {
    max-height: 1000px;
    padding: 0 clamp(16px, 3vw, 24px) clamp(16px, 2.5vw, 24px);
}

.zajimavosti-content p {
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 44px;
}

.zajimavosti-content p:last-child {
    margin-bottom: 0;
}

/* Highlight Cards */
.zajimavosti-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(12px, 2vw, 20px);
    max-width: 1100px;
    margin: 0 auto;
}

.zajimavosti-highlight-card {
    background: var(--color-bg-body);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: clamp(20px, 3vw, 28px);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.zajimavosti-highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-border-hover);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--color-brand-primary-light);
    border-radius: 14px;
    margin-left: auto;
    margin-right: auto;
}

.zajimavosti-highlight-card h3 {
    font-weight: 800;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--color-text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.zajimavosti-highlight-card p {
    font-size: clamp(0.8rem, 1.3vw, 0.9rem);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .zajimavosti-content p {
        padding-left: 0;
    }
    
    .zajimavosti-highlights {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
    position: relative;
    z-index: 100;
}

.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    position: relative;
    z-index: 101;
}

.lang-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.navbar.scrolled .lang-label {
    color: var(--color-text-primary);
}

.lang-switcher-btn:hover {
    border-color: var(--color-brand-primary);
    box-shadow: var(--glow-primary);
}

.lang-chevron {
    transition: transform 0.2s ease;
    opacity: 0.6;
}

.lang-switcher.open .lang-chevron {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    min-width: 150px;
    z-index: 1000;
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-primary);
    transition: all 0.15s ease;
    text-align: left;
}

.lang-option:hover {
    background: var(--color-brand-primary-light);
    color: var(--color-brand-primary);
}

.lang-option.active {
    background: var(--color-brand-primary);
    color: white;
    font-weight: 700;
}

.lang-option span {
    font-size: 16px;
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
    display: flex;
    gap: 8px;
    padding: 16px 0;
    margin-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-lang-btn:hover,
.mobile-lang-btn.active {
    background: var(--color-brand-primary);
    border-color: var(--color-brand-primary);
    color: white;
}

/* Navbar scrolled - lang switcher adjustments */
.navbar.scrolled .lang-switcher-btn {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--color-border);
    color: var(--color-text-primary);
}

.navbar.scrolled .lang-chevron {
    color: var(--color-text-secondary);
}

/* Landscape phone */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding-top: calc(var(--navbar-height) + 16px);
        padding-bottom: 80px;
    }
    .hero-container { 
        min-height: auto;
        gap: 16px; 
    }
}
