/* ============================================
   10. Uluslararası Uzunyayla Çerkes Kültür Festivali
   Premium Festival Website Styles — Page-Based SPA
   ============================================ */

/* === CSS Custom Properties === */
:root {
    --gold-50: #fefce8;
    --gold-100: #fef9c3;
    --gold-200: #fef08a;
    --gold-300: #fde047;
    --gold-400: #facc15;
    --gold-500: #d4a017;
    --gold-600: #c49000;
    --gold-700: #a16207;
    --gold-800: #854d0e;
    --gold-900: #713f12;

    --green-900: #0b3d0b;
    --green-800: #14532d;
    --green-700: #166534;
    --green-600: #16a34a;

    --dark-950: #0a0a0a;
    --dark-900: #0f0f0f;
    --dark-800: #171717;
    --dark-700: #1e1e1e;
    --dark-600: #262626;
    --dark-500: #333333;
    --dark-400: #404040;
    --dark-300: #525252;
    --dark-200: #737373;
    --dark-100: #a3a3a3;

    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-05: rgba(255, 255, 255, 0.05);

    --gradient-gold: linear-gradient(135deg, #d4a017 0%, #f0c850 50%, #d4a017 100%);
    --gradient-gold-radial: radial-gradient(ellipse at center, #f0c850 0%, #d4a017 50%, #a16207 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #171717 100%);
    --gradient-dark-green: linear-gradient(135deg, #0a1a0a 0%, #0b2b0b 50%, #0a0a0a 100%);
    --gradient-hero: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.8) 50%, #0a0a0a 100%);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Outfit', sans-serif;

    --section-padding: clamp(4rem, 8vw, 8rem);
    --container-max: 1200px;
    --container-padding: clamp(1rem, 4vw, 2rem);

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.2s var(--ease-out-expo);
    --transition-normal: 0.4s var(--ease-out-expo);
    --transition-slow: 0.8s var(--ease-out-expo);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 4px 24px rgba(212, 160, 23, 0.3);
    --shadow-gold-lg: 0 8px 40px rgba(212, 160, 23, 0.4);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--dark-950);
    color: var(--white-90);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Page System === */
.page {
    display: block;
    flex: 1;
    animation: pageFadeIn 0.5s var(--ease-out-expo);
}

/* === Page System === */
.page {
    display: block;
    flex: 1;
    animation: pageFadeIn 0.5s var(--ease-out-expo);
}

@keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.page-inner {
    padding: calc(var(--section-padding) + 40px) 0 var(--section-padding);
    min-height: calc(100vh - 80px - 200px);
    background: var(--dark-900);
}

.page-inner-dark {
    background: var(--gradient-dark-green);
}

/* === Preloader === */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--dark-950);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    width: 150px;
    height: auto;
    margin-bottom: 2rem;
    animation: preloaderPulse 2s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.5; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: var(--dark-700);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto;
}

.preloader-bar-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    animation: preloaderFill 2s ease-in-out;
}

@keyframes preloaderFill {
    from { width: 0%; }
    to { width: 100%; }
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--white-10);
    transition: all var(--transition-normal);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    transition: transform var(--transition-fast);
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white-70);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    letter-spacing: 0.5px;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--white);
    background: var(--white-10);
}

.nav-link.active {
    color: var(--dark-950);
    background: var(--gradient-gold);
    font-weight: 600;
}

/* Mobile Nav */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.nav-toggle.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translateY(5px) translateX(5px); }
.nav-toggle.active .hamburger-line:nth-child(2) { opacity: 0; }
.nav-toggle.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translateY(-5px) translateX(5px); }

/* === Hero Section === */
.hero-section {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-dark-green);
    overflow: hidden;
    padding-top: 120px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.6), transparent);
    border-radius: 50%;
    animation: particleFloat linear infinite;
    bottom: -10px;
}

@keyframes particleFloat {
    0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--container-padding);
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.badge-text {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-400);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-logo {
    display: block;
    margin: 0 auto 2rem;
    max-width: min(350px, 70vw);
    height: auto;
    filter: drop-shadow(0 0 60px rgba(212, 160, 23, 0.3));
    animation: heroLogoGlow 4s ease-in-out infinite alternate;
}

@keyframes heroLogoGlow {
    from { filter: drop-shadow(0 0 40px rgba(212, 160, 23, 0.2)); }
    to   { filter: drop-shadow(0 0 80px rgba(212, 160, 23, 0.4)); }
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--white-70);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* === Countdown (inline inside Hero page) === */
.countdown-inline {
    padding: 3rem 0 4rem;
    background: var(--dark-950);
    position: relative;
}

.countdown-inline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 2vw, 2rem);
    margin-bottom: 2rem;
    flex-wrap: nowrap;
}

.countdown-item {
    text-align: center;
    min-width: 80px;
}

.countdown-value {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    color: var(--gold-400);
    line-height: 1;
    text-shadow: 0 0 40px rgba(212, 160, 23, 0.3);
    transition: transform 0.3s ease;
}

.countdown-value.tick {
    animation: countTick 0.3s ease;
}

@keyframes countTick {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.countdown-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--white-50);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--gold-500);
    opacity: 0.5;
    padding-bottom: 1rem;
}

.countdown-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-date-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--dark-800);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-md);
    color: var(--white-70);
    font-size: 0.9rem;
}

.countdown-date-card svg {
    color: var(--gold-500);
    flex-shrink: 0;
}

/* === Section Headers === */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-400);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.divider-star {
    color: var(--gold-500);
    font-size: 1rem;
}

.section-desc {
    font-size: 1rem;
    color: var(--white-50);
    max-width: 600px;
    margin: 0 auto;
}

/* === Program Section === */
.program-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.program-category-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-400);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--white-10);
}

.program-category-title svg { color: var(--gold-500); }

.program-artists {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.artist-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--dark-800);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.artist-card:hover {
    border-color: rgba(212, 160, 23, 0.3);
    background: rgba(212, 160, 23, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.artist-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(212, 160, 23, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold-500);
}

.artist-icon-group {
    background: rgba(22, 163, 74, 0.1);
    color: var(--green-600);
}

.artist-icon-dance {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.artist-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white-90);
}

/* === Festival Akışı (Schedule) === */
.schedule-day {
    margin-bottom: 3rem;
}

.schedule-day:last-child {
    margin-bottom: 0;
}

.schedule-day-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 160, 23, 0.2);
}

.schedule-day-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--dark-900);
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.schedule-day-title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--white);
}

.schedule-day-title span {
    color: var(--white-50);
    font-weight: 400;
    font-style: italic;
}

.schedule-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    padding-left: 2rem;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold-500), rgba(212, 160, 23, 0.1));
    border-radius: var(--radius-full);
}

.schedule-event {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
}

.schedule-event::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 1.25rem;
    width: 10px;
    height: 10px;
    background: var(--gold-500);
    border-radius: 50%;
    border: 2px solid var(--dark-900);
    transform: translateX(-4px);
    z-index: 1;
}

.schedule-event-highlight::before {
    width: 14px;
    height: 14px;
    background: var(--gradient-gold);
    box-shadow: 0 0 12px rgba(212, 160, 23, 0.5);
    transform: translateX(-6px);
}

.schedule-time {
    min-width: 70px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    flex-shrink: 0;
    padding-top: 0.75rem;
}

.schedule-time-start {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-400);
}

.schedule-time-end {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--white-30);
}

.schedule-event-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: var(--dark-800);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.schedule-event-card:hover {
    border-color: rgba(212, 160, 23, 0.3);
    transform: translateX(4px);
    box-shadow: var(--shadow-gold);
}

.schedule-event-highlight .schedule-event-card {
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.1), rgba(212, 160, 23, 0.02));
    border-color: rgba(212, 160, 23, 0.25);
}

.schedule-event-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(212, 160, 23, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold-500);
}

.schedule-event-info {
    flex: 1;
}

.schedule-event-info h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.schedule-event-info p {
    font-size: 0.85rem;
    color: var(--white-50);
    line-height: 1.5;
}

.schedule-duration {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white-30);
    padding: 0.25rem 0.75rem;
    background: var(--white-05);
    border-radius: var(--radius-full);
    white-space: nowrap;
    flex-shrink: 0;
}

.schedule-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--dark-900);
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

/* === Tarihçe Text === */
.tarihce-text {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 2.5rem;
    background: var(--dark-800);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    position: relative;
}

.tarihce-text::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold-500);
    opacity: 0.3;
    line-height: 1;
}

.tarihce-text p {
    font-size: 0.95rem;
    color: var(--white-70);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.tarihce-text p:last-child {
    margin-bottom: 0;
}

/* === Gallery === */
.gallery-subsection-header {
    text-align: center;
    margin: 2rem 0 2rem;
    padding-top: 3rem;
    border-top: 1px solid var(--white-10);
}

.gallery-inline-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.gallery-inline-desc {
    color: var(--white-50);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3 / 4;
    transition: all var(--transition-normal);
}

.gallery-item-wide {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-year {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-400);
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--white-70);
}

/* === Lightbox === */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--dark-700);
    border: 1px solid var(--white-10);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--gold-500);
    color: var(--dark-950);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark-700);
    border: 1px solid var(--white-10);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
}

.lightbox-nav:hover {
    background: var(--gold-500);
    color: var(--dark-950);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    transition: opacity 0.3s ease;
}

.lightbox-caption {
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white-70);
}

/* === Contact Section === */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--dark-800);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.contact-card:hover {
    border-color: rgba(212, 160, 23, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--gold-500);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--white-50);
    line-height: 1.7;
}

.contact-map {
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--white-10);
    height: 400px;
    position: relative;
    background: var(--dark-800);
}

/* === Feedback Form === */
.feedback-panel {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--dark-800);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    text-align: center;
}

.feedback-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.feedback-desc {
    font-size: 0.95rem;
    color: var(--white-50);
    margin-bottom: 2rem;
}

.feedback-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    text-align: left;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--dark-900);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.form-control::placeholder {
    color: var(--white-30);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.map-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.map-link iframe {
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.map-link:hover .map-overlay {
    opacity: 1;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark-950);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    box-shadow: var(--shadow-gold-lg);
    transform: translateY(-2px);
}

/* === Footer === */
.footer {
    padding: 2.5rem 0;
    background: var(--dark-950);
    border-top: 1px solid var(--white-10);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.footer-logo-img:hover {
    opacity: 1;
}

/* Footer Social */
.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--dark-800);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-full);
    color: var(--white-70);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.footer-social-link:hover {
    border-color: rgba(212, 160, 23, 0.4);
    color: var(--gold-400);
    background: rgba(212, 160, 23, 0.08);
    transform: translateY(-2px);
}

.footer-social-link svg {
    flex-shrink: 0;
    transition: color var(--transition-fast);
}

.footer-social-link:hover svg {
    color: var(--gold-500);
}

.footer-text {
    text-align: center;
}

.footer-text p {
    font-size: 0.85rem;
    color: var(--white-50);
}

.footer-powered {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--white-70);
}

.footer-powered a {
    color: var(--gold-500);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.footer-powered a:hover {
    color: var(--gold-400);
}

.footer-sub {
    font-size: 0.8rem;
    color: var(--white-30);
    margin-top: 0.25rem;
}

/* === Scroll Animations === */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

[data-animate="fadeInDown"] {
    transform: translateY(-30px);
}

[data-animate="fadeInLeft"] {
    transform: translateX(-30px);
}

[data-animate="fadeInRight"] {
    transform: translateX(30px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ========================== */
/* === RESPONSIVE === */
/* ========================== */

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 90px;
        min-height: 60vh;
    }

    .countdown-inline {
        padding: 2rem 0 3rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark-900);
        border-left: 1px solid var(--white-10);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: right var(--transition-normal);
        z-index: 999;
        gap: 0.5rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .schedule-event {
        flex-direction: column;
        gap: 0.5rem;
    }

    .schedule-time {
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
    }

    .schedule-event-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .schedule-day-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item-wide {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 70px;
        min-height: 50vh;
    }
    
    .countdown-inline {
        padding: 1.5rem 0 2.5rem;
    }

    .hero-logo {
        max-width: 220px;
    }

    .program-artists {
        grid-template-columns: 1fr;
    }

    .countdown-item {
        min-width: unset;
        flex: 1;
    }

    .countdown-value {
        font-size: 1.75rem;
    }

    .countdown-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }

    .footer-social {
        gap: 0.5rem;
    }

    .footer-social-link span {
        display: none;
    }

    .footer-social-link {
        padding: 0.75rem;
        border-radius: 50%;
    }
}
