/* ============================================================
   INDEPENDENCE SHOW by SAPAMINA — Design System & Styles
   ============================================================ */

/* ============ CUSTOM PROPERTIES ============ */
:root {
    /* Senegal Palette */
    --green: #006B3F;
    --green-light: #00C853;
    --yellow: #FFD700;
    --yellow-light: #FFEB3B;
    --red: #E31B23;
    --red-light: #FF5252;

    /* Gradients */
    --gradient-gy: linear-gradient(135deg, #006B3F 0%, #00C853 40%, #FFD700 100%);
    --gradient-gr: linear-gradient(135deg, #006B3F 0%, #E31B23 100%);
    --gradient-yr: linear-gradient(135deg, #FFD700 0%, #E31B23 100%);
    --gradient-full: linear-gradient(135deg, #006B3F 0%, #FFD700 50%, #E31B23 100%);
    --gradient-accent: linear-gradient(135deg, #00C853 0%, #FFD700 100%);

    /* Dark Theme */
    --bg-primary: #0A0A0A;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 24px;
    --glass-bg-hover: rgba(255, 255, 255, 0.1);

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1280px;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;

    /* 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);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

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

.hidden {
    display: none !important;
}

/* ============ TYPOGRAPHY ============ */
.gradient-text {
    background: var(--gradient-gy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 16px;
    padding: 6px 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* ============ GLASSMORPHISM ============ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.18);
}

/* Gradient backgrounds */
.gradient-bg-gy {
    background: var(--gradient-gy);
}
.gradient-bg-gr {
    background: var(--gradient-gr);
}
.gradient-bg-yr {
    background: var(--gradient-yr);
}

/* ============ PRELOADER ============ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-primary);
    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 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.preloader-logo {
    width: 120px;
    margin-bottom: 32px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

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

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--gradient-gy);
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* ============ BACKGROUND GRADIENT ORBS ============ */
.gradient-orbs {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    will-change: transform;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--green) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: orbFloat1 25s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
    bottom: 20%;
    left: -150px;
    animation: orbFloat2 30s ease-in-out infinite;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--red) 0%, transparent 70%);
    top: 50%;
    right: -100px;
    animation: orbFloat3 20s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-80px, 60px) scale(1.1); }
    66% { transform: translate(40px, -40px) scale(0.9); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, -80px) scale(1.15); }
    66% { transform: translate(-30px, 50px) scale(0.85); }
}
@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-70px, -60px) scale(1.1); }
}

/* ============ DESKTOP NAVIGATION ============ */
.desktop-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

.desktop-nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 0;
}

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

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

.nav-logo:hover img {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 8px 20px;
    border-radius: 50px;
    transition: all var(--transition-fast);
    color: var(--text-secondary);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
    background: rgba(255, 215, 0, 0.1);
    color: var(--yellow);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 50px;
    background: var(--gradient-accent);
    color: #000;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 200, 83, 0.3);
}

/* ============ SECTION HERO ============ */
.section-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.2) 40%,
        rgba(10, 10, 10, 0.6) 70%,
        rgba(10, 10, 10, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    margin-bottom: 80px;
}

.hero-glass {
    text-align: center;
    padding: 50px 60px;
    max-width: 760px;
    width: 100%;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.hero-logo {
    width: 100px;
    margin: 0 auto 24px;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.2));
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    max-width: 100%;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.5em;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.hero-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-separator {
    color: var(--yellow);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    background: var(--gradient-accent);
    color: #000;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 200, 83, 0.35);
}

.cta-btn svg {
    transition: transform var(--transition-fast);
}

.cta-btn:hover svg {
    transform: translate(3px, -3px);
}

/* ============ SECTION LOGOS PARTICIPANTS ============ */
.section-logos {
    position: relative;
    z-index: 1;
    padding: 50px 0 40px;
}

.logos-label {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.logos-band {
    background-color: #FFFFFF;
    padding: 32px 0;
    overflow: hidden;
}

.logos-track {
    display: flex;
    width: max-content;
    animation: logosMarquee 25s linear infinite;
}

.logos-band:hover .logos-track {
    animation-play-state: paused;
}

.logos-set {
    display: flex;
    align-items: center;
    /* 5 logos visible = each logo takes 20vw. With gap, logo width ≈ 16vw + 4vw gap */
    gap: calc(4vw);
    padding: 0 calc(2vw);
}

.logos-set img {
    height: 70px;
    width: calc(16vw);
    object-fit: contain;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.logos-set img:hover {
    transform: scale(1.08);
}

@keyframes logosMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============ SECTION PROGRAMME ============ */
.section-programme {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 0;
}

.programme-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.programme-card {
    position: relative;
    padding: 48px 40px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.programme-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.programme-date {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.date-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-gy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.date-month {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
}

.date-year {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}

.programme-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.programme-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 400px;
}

.programme-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-hour {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold);
    min-width: 90px;
    letter-spacing: 0.02em;
}

.timeline-label {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.programme-icon {
    position: absolute;
    bottom: 30px;
    right: 30px;
    opacity: 0.08;
    color: var(--text-primary);
}

/* Lieu Card */
.lieu-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 40px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.lieu-pin {
    color: var(--red-light);
    flex-shrink: 0;
}

.lieu-text h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.lieu-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.lieu-decoration {
    position: absolute;
    right: -40px;
    top: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    opacity: 0.08;
}

/* Countdown */
.countdown-wrapper {
    text-align: center;
    margin-top: 60px;
}

.countdown-label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-item {
    text-align: center;
    padding: 24px 20px;
    min-width: 100px;
    border-radius: var(--radius-md);
}

.countdown-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-gy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.countdown-unit {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ============ TICKET CTA BANNER ============ */
.section-ticket {
    position: relative;
    z-index: 1;
    padding: 40px 0 0;
}

.ticket-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.ticket-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 107, 63, 0.08) 0%, rgba(255, 215, 0, 0.06) 50%, rgba(227, 27, 35, 0.08) 100%);
    pointer-events: none;
}

.ticket-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 48px 60px;
    flex-wrap: wrap;
}

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

.ticket-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 6px;
}

.ticket-heading {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.ticket-logo-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.ticket-logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    transition: transform var(--transition-fast);
}

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

.ticket-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    background: var(--gradient-accent);
    color: #000;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    white-space: nowrap;
    flex-shrink: 0;
}

.ticket-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 200, 83, 0.35);
}

.ticket-btn svg:last-child {
    transition: transform var(--transition-fast);
}

.ticket-btn:hover svg:last-child {
    transform: translate(3px, -3px);
}

/* ============ SECTION ORGANISATRICE ============ */
.section-organisatrice {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 0;
}

.org-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.org-image-wrapper {
    display: flex;
    justify-content: center;
}

.org-image-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.org-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.org-image-frame:hover .org-image {
    transform: scale(1.05);
}

.org-image-border {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.org-image-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.5), transparent);
    pointer-events: none;
}

.org-text {
    padding: 48px;
    border-radius: var(--radius-lg);
}

.org-brand {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    background: var(--gradient-gy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.org-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.org-description:last-of-type {
    margin-bottom: 32px;
}

.org-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    background: var(--gradient-accent);
    color: #000;
    font-size: 0.85rem;
    font-weight: 600;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.org-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 200, 83, 0.3);
}

/* ============ SECTION STYLISTES (EDITORIAL CAROUSEL) ============ */
.section-stylistes {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 0 60px;
    overflow: hidden;
}

.magazine-carousel {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    overflow: hidden;
}

.magazine-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
    cursor: grab;
}

.magazine-track.dragging {
    transition: none;
    cursor: grabbing;
}

.magazine-spread {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.08);
    min-height: 520px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.magazine-photo-page {
    position: relative;
    overflow: hidden;
}

.magazine-photo-page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 6s ease;
}

.magazine-spread:hover .magazine-photo-page img {
    transform: scale(1.05);
}

.magazine-text-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 48px 56px 44px;
    position: relative;
}

.magazine-text-page::before {
    content: '';
    position: absolute;
    top: 48px;
    bottom: 48px;
    left: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 215, 0, 0.2), transparent);
}

.magazine-logo-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.magazine-logo-wrap img {
    width: 75%;
    height: 75%;
    object-fit: contain;
}

.magazine-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 16px;
}

.magazine-brand::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-gy);
}

.magazine-description {
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

.magazine-description:last-child {
    margin-bottom: 0;
}

/* Navigation dots */
.magazine-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.magazine-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    transition: all var(--transition-base);
    cursor: pointer;
    padding: 0;
}

.magazine-dot.active {
    background: var(--yellow);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    transform: scale(1.4);
}

.magazine-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.35);
}

/* ============ SECTION SPONSORS (MARQUEE) ============ */
.section-sponsors {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 0;
}

.sponsors-band {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 40px 0;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

.sponsors-track {
    display: flex;
    animation: sponsorsScroll 30s linear infinite;
    width: max-content;
}

.sponsors-set {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
    flex-shrink: 0;
}

.sponsors-set img {
    height: 70px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    filter: grayscale(0);
    transition: transform var(--transition-fast);
}

.sponsors-set img:hover {
    transform: scale(1.1);
}

@keyframes sponsorsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============ SECTION ARTISTE ============ */
.section-artiste {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 0;
}

.artiste-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.artiste-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.artiste-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.artiste-info-box {
    text-align: center;
    padding: 32px 48px;
    border-radius: var(--radius-md);
    max-width: 600px;
    width: 100%;
}

.artiste-name {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.artiste-role {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--yellow);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.artiste-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ============ SECTION GALERIES ============ */
.section-galeries {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 0;
}

/* Gallery Tabs */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.gallery-tab {
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.gallery-tab:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.gallery-tab.active {
    background: var(--gradient-accent);
    color: #000;
    border-color: transparent;
}

/* Gallery Horizontal Scroll Track */
.gallery-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 16px 0;
    cursor: grab;
    -webkit-mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
    mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
}

.gallery-grid::-webkit-scrollbar {
    display: none;
}

.gallery-grid:active {
    cursor: grabbing;
}

.gallery-item {
    flex-shrink: 0;
    position: relative;
    width: 300px;
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
    color: white;
}

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

/* ============ 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: opacity var(--transition-base), visibility var(--transition-base);
}

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

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    animation: lightboxIn 0.4s ease;
}

@keyframes lightboxIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: white;
    z-index: 10;
    transition: transform var(--transition-fast);
    line-height: 1;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    padding: 16px;
    color: white;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: background var(--transition-fast);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============ FOOTER ============ */
.site-footer {
    position: relative;
    z-index: 1;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    width: 80px;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.footer-info {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-col p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer-social:hover {
    color: var(--yellow);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* ============ MOBILE BOTTOM NAVIGATION ============ */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
}

.mobile-nav .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 4px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav .mobile-nav-item span {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.mobile-nav .mobile-nav-item.active {
    color: var(--yellow);
}

.mobile-nav .mobile-nav-item.active svg {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

/* ============ SCROLL ANIMATIONS ============ */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

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

/* ============ BEAUTIFICATION & ENHANCEMENTS ============ */

/* Shimmer on gradient text in hero */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.hero-title .gradient-text {
    background: linear-gradient(90deg, #006B3F, #00C853, #FFD700, #FFD700, #E31B23, #FFD700, #00C853, #006B3F);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s ease-in-out infinite;
}

/* Hero title subtle text shadow for depth */
.hero-title {
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Section tag glow */
.section-tag {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.08);
}

/* Programme card hover lift */
.programme-card {
    transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-fast), border-color var(--transition-fast);
}

.programme-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Countdown golden accent border */
.countdown-item {
    border: 1px solid rgba(255, 215, 0, 0.08);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.countdown-item:hover {
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

/* Magazine spread subtle glow */

/* Org image glow */
.org-image-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    background: var(--gradient-gy);
    z-index: -1;
    opacity: 0.15;
    filter: blur(20px);
}

/* Gallery item golden border on hover */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: border-color var(--transition-fast);
    pointer-events: none;
    z-index: 2;
}

.gallery-item:hover::after {
    border-color: rgba(255, 215, 0, 0.2);
}

/* Smooth will-change for performance */
.programme-card,
.gallery-item,
.countdown-item,
.cta-btn,
.nav-cta,
.org-instagram {
    will-change: transform;
}

/* Footer gradient separator */
.site-footer {
    border-top: 1px solid transparent;
    border-image: var(--gradient-gy) 1;
}

/* ============ MEDIA QUERIES — TABLET ============ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .container {
        padding: 0 24px;
    }

    .nav-inner {
        padding: 0 24px;
    }

    .programme-grid {
        gap: 20px;
    }

    .programme-card {
        padding: 36px 28px;
    }

    .date-number {
        font-size: 3.5rem;
    }

    .org-layout {
        gap: 40px;
    }

    .org-text {
        padding: 36px;
    }

    .gallery-item {
        width: 260px;
        height: 350px;
    }

    .footer-info {
        gap: 40px;
    }
}

/* ============ MEDIA QUERIES — MOBILE ============ */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --glass-blur: 16px;
    }

    /* Show mobile nav, hide desktop nav */
    .mobile-nav {
        display: flex;
        justify-content: space-around;
    }

    .desktop-nav {
        display: none;
    }

    /* Add bottom padding for mobile nav */
    body {
        padding-bottom: calc(70px + env(safe-area-inset-bottom));
    }

    html {
        scroll-padding-top: 20px;
    }

    .container {
        padding: 0 16px;
    }

    /* Hero */
    .hero-content {
        padding: 0 16px;
        margin-bottom: 100px;
        width: 100%;
    }

    .hero-glass {
        padding: 36px 24px;
        border-radius: var(--radius-md);
        max-width: 100%;
        overflow: hidden;
    }

    .hero-logo {
        width: 60px;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 0.03em;
        word-break: break-word;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.25em;
    }

    .hero-info {
        flex-direction: column;
        gap: 4px;
        font-size: 0.75rem;
    }

    .hero-separator {
        display: none;
    }

    .cta-btn {
        padding: 14px 28px;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
    }

    .hero-content {
        margin-bottom: 100px;
    }

    /* Logos participants */
    .section-logos {
        padding: 30px 0 16px;
    }

    .logos-label {
        font-size: 0.6rem;
        margin-bottom: 16px;
    }

    .logos-band {
        padding: 20px 0;
    }

    .logos-set {
        gap: 28px;
        padding: 0 14px;
    }

    .logos-set img {
        height: 45px;
        width: 60px;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 48px;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Programme */
    .programme-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .programme-card {
        padding: 32px 24px;
    }

    .date-number {
        font-size: 3rem;
    }

    .programme-title {
        font-size: 1.3rem;
    }

    .lieu-card {
        padding: 24px;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-item {
        padding: 16px 12px;
        min-width: 70px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-unit {
        font-size: 0.6rem;
    }

    /* Ticket Banner */
    .ticket-content {
        flex-direction: column;
        gap: 24px;
        padding: 32px 24px;
        text-align: center;
    }

    .ticket-heading {
        font-size: 1.2rem;
    }

    .ticket-logo {
        height: 40px;
    }

    .ticket-btn {
        padding: 14px 28px;
        font-size: 0.82rem;
        width: 100%;
        justify-content: center;
    }

    /* Organisatrice */
    .org-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .org-image-frame {
        max-width: 100%;
        aspect-ratio: 3 / 3.5;
    }

    .org-text {
        padding: 28px 24px;
    }

    .org-brand {
        font-size: 1.5rem;
    }

    .org-description {
        font-size: 0.88rem;
    }

    /* Stylistes Carousel */
    .magazine-carousel {
        max-width: 100%;
        padding: 0 16px;
    }

    .magazine-spread {
        grid-template-columns: 1fr;
        min-height: auto;
        border-radius: var(--radius-md);
    }

    .magazine-photo-page {
        aspect-ratio: 3 / 4;
        max-height: 380px;
    }

    .magazine-photo-page img {
        border-radius: 0;
    }

    .magazine-text-page {
        padding: 24px 22px 28px;
        text-align: center;
        align-items: center;
    }

    .magazine-text-page::before {
        display: none;
    }

    .magazine-logo-wrap {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }

    .magazine-brand {
        font-size: 1.15rem;
        margin-bottom: 16px;
        padding-bottom: 12px;
        letter-spacing: 0.1em;
    }

    .magazine-brand::after {
        left: 50%;
        transform: translateX(-50%);
        width: 32px;
    }

    .magazine-description {
        font-size: 0.82rem;
        line-height: 1.6;
        margin-bottom: 8px;
    }

    .magazine-nav {
        margin-top: 24px;
        gap: 10px;
        padding: 0 16px;
    }

    .magazine-dot {
        width: 7px;
        height: 7px;
    }

    /* Sponsors */
    .sponsors-band {
        border-radius: var(--radius-md);
        padding: 24px 0;
        margin: 0 16px;
    }

    .sponsors-set {
        gap: 40px;
        padding: 0 20px;
    }

    .sponsors-set img {
        height: 50px;
    }

    /* Artiste */
    .artiste-info-box {
        padding: 24px 20px;
    }

    .artiste-name {
        font-size: 1.8rem;
    }

    /* Gallery */
    .gallery-grid {
        gap: 10px;
        padding: 12px 0;
        -webkit-mask-image: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent);
        mask-image: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent);
    }

    .gallery-item {
        width: 220px;
        height: 300px;
        border-radius: var(--radius-sm);
    }

    .gallery-tabs {
        gap: 4px;
        margin-bottom: 24px;
    }

    .gallery-tab {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    /* Footer */
    .site-footer {
        padding: 60px 0 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }

    .footer-info {
        flex-direction: column;
        gap: 32px;
    }

    .footer-logo {
        margin: 0 auto 12px;
    }

    /* Lightbox mobile */
    .lightbox-prev { left: 10px; padding: 10px; }
    .lightbox-next { right: 10px; padding: 10px; }
    .lightbox-close { top: 15px; right: 20px; }

    /* Disable heavy effects on mobile for performance */
    .orb {
        filter: blur(80px);
        opacity: 0.08;
    }
}

/* ============ SMALL MOBILE ============ */
@media (max-width: 400px) {
    .hero-title {
        font-size: 5.8vw;
        letter-spacing: 0;
    }

    .hero-glass {
        padding: 28px 16px;
    }

    .countdown {
        flex-wrap: wrap;
    }
}

/* ============ PERFORMANCE: CONTENT VISIBILITY ============ */
/* Skip rendering of off-screen sections until scrolled into view */
.section-programme,
.section-ticket,
.section-organisatrice,
.section-stylistes,
.section-artiste,
.section-galeries,
.section-sponsors,
.site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

/* ============ PERFORMANCE: PREFERS REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
    }
}
