﻿
        /* ===== VARIABLES ===== */
        :root {
            --primary: #680201;
            --primary-dark: #460702;
            --primary-light: #680201;
            --secondary: #DACCB4;
            --white: #F9F0EE;
            --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary);
            color: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ===== TYPOGRAPHY ===== */
        h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            line-height: 1.2;
        }

        h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
        h2 { font-size: clamp(2rem, 4vw, 2.3rem);

             white-space: nowrap;
        }

        h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }

        p {
            font-weight: 300;
            line-height: 1.8;
            font-size: 1rem;
        }

        /* ===== PRELOADER ===== */
        .preloader {
            position: fixed;
            inset: 0;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

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

        .preloader-logo {
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: preloaderPulse 1.5s ease-in-out infinite;
        }

        .preloader-logo img {
            max-width: 100%;
            max-height: 100%;
        }

        .preloader-text {
            margin-top: 2rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1rem;
            letter-spacing: 8px;
            text-transform: uppercase;
            color: var(--secondary);
            animation: textPulse 1.5s ease-in-out infinite;
        }

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

        @keyframes textPulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(60px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideLeft {
            from {
                opacity: 0;
                transform: translateX(-80px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideRight {
            from {
                opacity: 0;
                transform: translateX(80px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        @keyframes floatRotate {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(5deg); }
        }

        @keyframes shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }

        @keyframes lineFlow {
            0% { transform: translateY(-100%); }
            100% { transform: translateY(100%); }
        }

        @keyframes smokeRise {
            0% { opacity: 0; transform: translateY(0) scale(1); }
            50% { opacity: 0.5; }
            100% { opacity: 0; transform: translateY(-100px) scale(1.5); }
        }

        @keyframes rotateInfinite {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes scrollDown {
            0% { opacity: 1; top: 8px; }
            100% { opacity: 0; top: 30px; }
        }

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

        /* ===== REVEAL ANIMATIONS ===== */
        .fade-up {
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
        }

        .fade-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-right {
            opacity: 0;
            transform: translateX(60px);
            transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
        }

        .fade-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-scale {
            opacity: 0;
            transform: scale(0.85);
            transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
        }

        .fade-scale.visible {
            opacity: 1;
            transform: scale(1);
        }

        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }
        .delay-5 { transition-delay: 0.5s; }
        .delay-6 { transition-delay: 0.6s; }
        .delay-7 { transition-delay: 0.7s; }
        .delay-8 { transition-delay: 0.8s; }

        /* ===== FLOATING ELEMENTS ===== */
        .floating-bg {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .floating-orb {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(218, 204, 180, 0.1) 0%, transparent 70%);
        }

        .orb-1 {
            width: 400px;
            height: 400px;
            top: 10%;
            right: -100px;
            animation: float 15s ease-in-out infinite;
        }

        .orb-2 {
            width: 300px;
            height: 300px;
            bottom: 20%;
            left: -80px;
            animation: float 12s ease-in-out infinite reverse;
        }

        .orb-3 {
            width: 200px;
            height: 200px;
            top: 50%;
            left: 30%;
            animation: float 18s ease-in-out infinite 2s;
        }


       /* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: transparent;
    border-radius: 0;
    transition: all 0.9s ease;
}

.navbar.scrolled {
    background-image: url(/img/bg_red.png);
    background-size: cover;
    background-position: bottom;
    backdrop-filter: blur(20px);
    padding: 0.8rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    top: 20px;
    left: 10%;
    right: 10%;
    width: 80%;
    max-width: 1400px;
    border-radius: 20px;
}


.nav-logo {
    height: 100px;
    transition: height 0.4s var(--transition-smooth);
}

.navbar.scrolled .nav-logo {
    height: 70px;
    width: auto;
}

.nav-logo img {
    height: 100%;
    width: auto;
    transition: transform 0.7s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}
/* ===== HAMBURGER - TOUJOURS VISIBLE ===== */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
    border: none;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: all 0.4s var(--transition-smooth);
    transform-origin: center;
}

.hamburger:hover span {
    background: var(--secondary);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== SIDE MENU - DEPUIS LA DROITE ===== */
.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100vh;
    background: var(--primary-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--transition-smooth);
    z-index: 999;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.side-menu.active {
    transform: translateX(0);
}

/* Overlay sombre derrière le menu */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== LIENS DU MENU ===== */
.side-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.side-menu-link {
    color: var(--white);
    text-decoration: none;
    font-size: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 1rem 0;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease, color 0.3s ease;
    border-bottom: 1px solid rgba(218, 204, 180, 0.1);
}

.side-menu-link:last-child {
    border-bottom: none;
}

.side-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.4s ease;
}

.side-menu-link:hover {
    color: var(--secondary);
    transform: translateX(10px);
}

.side-menu-link:hover::before {
    width: 50px;
}

/* Animation des liens quand le menu s'ouvre */
.side-menu.active .side-menu-link {
    opacity: 1;
    transform: translateX(0);
}

.side-menu.active .side-menu-link:nth-child(1) { transition-delay: 0.1s; }
.side-menu.active .side-menu-link:nth-child(2) { transition-delay: 0.2s; }
.side-menu.active .side-menu-link:nth-child(3) { transition-delay: 0.3s; }
.side-menu.active .side-menu-link:nth-child(4) { transition-delay: 0.4s; }
.side-menu.active .side-menu-link:nth-child(5) { transition-delay: 0.5s; }

/* ===== BOUTON CTA DANS LE MENU ===== */
.side-menu-cta {
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.6s;
}

.side-menu.active .side-menu-cta {
    opacity: 1;
    transform: translateY(0);
}

.side-menu-cta .btn {
    width: 100%;
    text-align: center;
}

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

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.1);
    object-fit: cover;
}

@keyframes slowZoom {
    0% {
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2) translate(-2%, -2%);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 34, 64, 0.4) 0%,
        rgba(38, 48, 86, 0.4) 50%,
        rgba(26, 34, 64, 0.4) 100%
    );
}

.hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(218, 204, 180, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(218, 204, 180, 0.08) 0%, transparent 50%);
}

.hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.1;
    z-index: 1;
}

.hero-lines span {
    position: absolute;
    display: block;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--secondary), transparent);
    animation: lineFlow 8s linear infinite;
}

.hero-lines span:nth-child(1) { left: 10%; animation-delay: 0s; }
.hero-lines span:nth-child(2) { left: 30%; animation-delay: 2s; }
.hero-lines span:nth-child(3) { left: 50%; animation-delay: 1s; }
.hero-lines span:nth-child(4) { left: 70%; animation-delay: 3s; }
.hero-lines span:nth-child(5) { left: 90%; animation-delay: 0.5s; }

/* ===== TRANSITION HERO → ABOUT ===== */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--primary-light));
    z-index: 1;
    pointer-events: none;
}

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

        .hero-logo {
            width: 200px;
            margin: 0 auto 1.5rem;
            opacity: 0;
            animation: fadeUp 1s var(--transition-smooth) forwards;
            animation-delay: 0.5s;
        }

        .hero-logo img {
            width: 45%;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
        }

        .hero-tagline {
            color: var(--secondary);
            font-size: 1rem;
            letter-spacing: 6px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeUp 1s var(--transition-smooth) forwards;
            animation-delay: 0.5s;
        }

        .hero h1 {
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeUp 1s var(--transition-smooth) forwards;
            animation-delay: 0.7s;
        }

        .accent {
            color: var(--secondary);
        }

        .hero-date {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            font-weight: 400;
            opacity: 0;
            animation: fadeUp 1s var(--transition-smooth) forwards;
            animation-delay: 0.9s;
        }

        .hero-location {
            color: var(--secondary);
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            opacity: 0;
            animation: fadeUp 1s var(--transition-smooth) forwards;
            animation-delay: 1.1s;
        }

        .hero-location svg {
            animation: float 3s ease-in-out infinite;
        }

        .hero-actions {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeUp 1s var(--transition-smooth) forwards;
            animation-delay: 1.3s;
        }

        .btn {
            padding: 1.2rem 3rem;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.4s ease;
            border: none;
        }

        .btn-primary {
            background: var(--secondary);
            color: var(--primary);
            transition: all 0.4s ease, transform 0.15s ease-out;
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(218, 204, 180, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--secondary);
        }

        .btn-outline:hover {
            background: var(--secondary);
            color: var(--primary);
            transform: translateY(-5px);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            opacity: 0;
            animation: fadeUp 1s var(--transition-smooth) forwards;
            animation-delay: 1.6s;
        }

        .scroll-indicator span {
            display: block;
            width: 30px;
            height: 50px;
            border: 2px solid var(--secondary);
            border-radius: 20px;
            position: relative;
        }

        .scroll-indicator span::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: var(--secondary);
            border-radius: 50%;
            animation: scrollDown 2s infinite;
        }

        .smoke-effect {
            position: absolute;
            bottom: 20%;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 200px;
            pointer-events: none;
        }

        .smoke-particle {
            position: absolute;
            bottom: 0;
            width: 20px;
            height: 20px;
            background: radial-gradient(circle, rgba(218, 204, 180, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            animation: smokeRise 4s ease-out infinite;
        }

        .smoke-particle:nth-child(1) { left: 20%; animation-delay: 0s; }
        .smoke-particle:nth-child(2) { left: 40%; animation-delay: 0.8s; }
        .smoke-particle:nth-child(3) { left: 60%; animation-delay: 1.6s; }
        .smoke-particle:nth-child(4) { left: 80%; animation-delay: 2.4s; }

        /* ===== SECTIONS BASE ===== */
        section {
            padding: 8rem 5%;
            position: relative;
            overflow: hidden;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 6rem;
        }

        .section-tag {
            color: var(--secondary);
            font-size: 0.85rem;
            letter-spacing: 6px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            display: block;
        }

        .section-header p {
            opacity: 0.85;
        }

        /* ===== ABOUT ===== */
        .about {
             background: linear-gradient(to right, var(--primary), var(--primary-dark));
        }

        .about-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
            max-width: 2000px;
            margin: 0 auto;
        }

        .about-visual {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform: scale(1.4); 
    left: -100px;
}

.about-visual-video {
  position: absolute;
  top: -20%;
  left: 0px;
  width: 120%;
  height: 120%;
  transition: transform 1s ease;
}

.about-visual:hover .about-visual-video {
    transform: scale(1.05);
}


        .about-text h2 {
            margin-bottom: 2rem;
        }

        .about-text p {
            margin-bottom: 1.5rem;
        }

        .about-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .highlight-item {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            border: 1px solid rgba(218, 204, 180, 0.2);
            transition: all 0.4s ease;
        }

        .highlight-item:hover {
            background: rgba(218, 204, 180, 0.1);
            border-color: var(--secondary);
            transform: translateX(10px);
        }

        .highlight-icon img {
           width: 30px;
           height: 30px;
        }

        .about-btn-wrapper {
    margin-top: 2rem;
    text-align: left;
    padding-left: 0;
}

.about-btn-wrapper .btn {
    margin: 0 auto;
    display: block;
    width: fit-content;
}

/* ==================== CATEGORIES ==================== */
.categories {
    background-image: url(/img/red_bg_light.png);
    background-size: cover;
    background-position: top;
    padding-bottom: 200px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-items: center;
    align-items: start;
    padding-bottom: 140px;
}

.category-card {
    position: relative;
    width: 200px;
    height: 500px;
    overflow: visible;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    border-radius: 100px;
    border: 2px solid rgba(218, 204, 180, 0.2);
    transition: all 0.5s ease;
    transform-origin: center top;
}

.category-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100px;
    transition: transform 0.6s ease;
}

.category-card-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s ease;
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(192 0 26 / 70%) 0%, rgba(38, 48, 86, 0.2) 40%, transparent 100%);
    border-radius: 100px;
    transition: all 0.5s ease;
}

.category-content {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    backdrop-filter: blur(10px);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(218, 204, 180, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.category-card.active {
    transform: scale(1.05) translateY(10px);
    border-color: var(--secondary);
    z-index: 10;
}

.category-card.active .category-card-img {
    transform: scale(1.1);
}

.category-card.active .category-overlay {
    background: linear-gradient(to top, rgba(38, 48, 86, 0.5) 0%, transparent 60%);
    opacity: 0;
}

.category-card.active .category-content {
    opacity: 1;
    bottom: -180px;
}

.category-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: var(--secondary);
    transition: color 0.3s ease;
}

.category-content p {
    font-size: 0.8rem;
    opacity: 0.7;
    color: var(--white);
}

/* Hover effects (desktop only) */
@media (hover: hover) {
    .categories-grid:hover .category-card {
        transform: scale(0.95);
        opacity: 0.6;
    }

    .categories-grid .category-card:hover {
        transform: scale(1.08) translateY(15px);
        opacity: 1;
        border-color: var(--secondary);
        z-index: 10;
    }

    .category-card:hover .category-card-img {
        transform: scale(1.1);
    }

    .category-card:hover .category-overlay {
        background: linear-gradient(to top, rgba(38, 48, 86, 0.5) 0%, transparent 60%);
        opacity: 0;
    }

    .category-card:hover .category-content {
        opacity: 1;
        bottom: -180px;
    }
}

/* Tablets et petits écrans */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        padding-bottom: 200px;
    }
}

/* Mobile landscape et tablettes portrait */
@media (max-width: 768px) {

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding-bottom: 160px;
        justify-items: center;
    }

    .category-card {
        width: 140px;
        height: 300px;
        border-radius: 70px;
    }

    .category-card-img,
    .category-overlay {
        border-radius: 70px;
    }

    .category-content {
        width: 140px;
        padding: 1rem 0.8rem;
        bottom: -60px;
    }

    .category-card:hover .category-content,
    .category-card.active .category-content {
        bottom: -140px;
    }

    .category-content h3 {
        font-size: 0.9rem;
    }

    .category-content p {
        font-size: 0.65rem;
        line-height: 1.4;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-bottom: 180px;
    }

    .category-card {
        width: 160px;
        height: 350px;
        border-radius: 80px;
    }

    .category-card-img,
    .category-overlay {
        border-radius: 80px;
    }

    .category-content {
        width: 160px;
    }

    .category-content h3 {
        font-size: 1rem;
    }

    .category-content p {
        font-size: 0.7rem;
    }
}

/* Très petits écrans */
@media (max-width: 375px) {
    .category-card {
        width: 140px;
        height: 320px;
    }
}


        /* ==================== WHY EXHIBIT ==================== */
.why-exhibit {
    background: var(--primary-dark);
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(218, 204, 180, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.benefit-card:hover {
    transform: translateY(-15px);
    border-color: var(--secondary);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover::before {
    transform: translateX(100%);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease;
}

.benefit-icon .icon-logo {
    width: 50px;
    height: 50px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.benefit-icon .icon-hover {
    position: absolute;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.benefit-card:hover .icon-logo {
    opacity: 0;
}

.benefit-card:hover .icon-hover {
    opacity: 1;
}

.benefit-card:hover .benefit-icon {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: rotateY(360deg);
}

.benefit-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.benefit-card p {
    opacity: 0.8;
}

/* ==================== RESPONSIVE WHY EXHIBIT ==================== */

@media (max-width: 1024px) {
    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefit-card {
        padding: 2rem 1.5rem;
    }

    .benefit-card:hover {
        transform: none;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .benefit-icon .icon-logo {
        width: 30px;
        height: 30px;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .benefit-card {
        padding: 1.5rem 1rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
    }

    .benefit-icon .icon-logo {
        width: 25px;
        height: 25px;
    }
}


        /* ===== CTA SECTION ===== */
.cta {
    position: relative;
    text-align: center;
    padding: 8rem 5%;
    overflow: hidden;
}

.cta-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
}

.cta h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta p {
    color: var(--primary-dark);
    opacity: 1;
    font-weight: bold;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
}

.cta-btn {
    background: var(--primary-dark);
    color: var(--secondary);
    padding: 1.2rem 3.5rem;
    border: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease, transform 0.15s ease-out;
    z-index: 1;
}

.cta-btn:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ===== NEWSLETTER ===== */
.newsletter {
    background: var(--primary-dark);
    padding: 6rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.newsletter::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    margin-bottom: 1rem;
}

.newsletter-content p {
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-wrapper {
    display: flex;
    gap: 0;
    border: 2px solid var(--secondary);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.newsletter-input-wrapper:focus-within {
    box-shadow: 0 0 30px rgba(218, 204, 180, 0.2);
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1.2rem 2rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    padding: 1.2rem 2.5rem;
    background: var(--secondary);
    color: var(--primary);
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--white);
    color: var(--primary-dark);
}

/* ===== FOOTER ===== */
        footer {
            background: var(--primary-dark);
            padding: 5rem 5% 2rem;
        }

        .footer-container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            max-width: 1400px;
            margin: 0 auto 4rem;
        }

        .footer-brand .footer-logo {
            height: 70px;
            margin-bottom: 1.5rem;
        }

        .footer-brand .footer-logo img {
            height: 100%;
            width: auto;
        }

        .footer-brand p {
            opacity: 0.7;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .footer-col h4 {
            color: var(--secondary);
            font-size: 0.9rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 0.8rem;
        }

        .footer-col a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.7;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-col a:hover {
            opacity: 1;
            color: var(--secondary);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            border: 1px solid rgba(218, 204, 180, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 1.1rem;
            transition: all 0.4s ease;
        }

        .social-links a:hover {
            background: var(--secondary);
            color: var(--primary);
            border-color: var(--secondary);
            transform: translateY(-5px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(218, 204, 180, 0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            opacity: 0.6;
            font-size: 0.85rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 2rem;
        }

        .footer-bottom-links a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--secondary);
        }

        /* ===== BACK TO TOP ===== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--secondary);
            color: var(--primary);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s ease;
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            background: var(--white);
            transform: translateY(-5px);
        }

/* ============================================= */
/* ===== RESPONSIVE OPTIMISÉ MOBILE/TABLETTE ===== */
/* ============================================= */

/* 1. GRAND ÉCRAN */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        padding-bottom: 200px;
    }

    .benefits-container {
        gap: 2rem;
    }
}

/* 2. TABLETTE */
@media (max-width: 1024px) {
    section {
        padding: 5rem 5%;
    }

    h2 {
        white-space: normal !important;
        font-size: clamp(1.5rem, 4vw, 2rem);
        line-height: 1.3;
    }

    .section-header {
        margin-bottom: 4rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        height: 400px;
        order: -1;
    }

    .about-text {
        padding: 0 2rem;
        text-align: center;
    }

    .about-text p {
        text-align: left;
    }

    .about-highlights {
        justify-content: center;
    }

    .about-btn-wrapper {
        text-align: center;
    }

    .scroll-indicator {
        display: none;
    }

    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .category-card {
        width: 180px;
        height: 420px;
    }

    .side-menu {
        width: 350px;
    }

    .hero-content {
        padding: 0 3rem;
    }
}

/* 3. MOBILE */
@media (max-width: 768px) {
    /* BASE */
    section {
        padding: 3.5rem 4%;
    }

    h2 {
        white-space: normal !important;
        font-size: clamp(1.3rem, 5vw, 1.7rem) !important;
        line-height: 1.3;
    }

    h3 {
        font-size: clamp(1.1rem, 4vw, 1.4rem);
    }

    p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-tag {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }

    /* NAVBAR */
    .navbar {
        padding: 0.8rem 4%;
    }

    .nav-logo {
        height: 55px;
    }

    .navbar.scrolled {
        width: 92%;
        left: 4%;
        right: 4%;
        padding: 0.5rem 1rem;
        border-radius: 25px;
        top: 10px;
    }

    .navbar.scrolled .nav-logo {
        height: 40px;
    }

    .hamburger {
        padding: 8px;
    }

    .hamburger span {
        width: 24px;
    }

    /* HERO */
    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: 0 1.2rem;
    }

    .hero-logo {
        width: 100px;
        margin-bottom: 1rem;
    }

    .hero-tagline {
        font-size: 0.65rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .hero h1 {
        font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
        margin-bottom: 1rem;
    }

    .hero-date {
        font-size: 0.9rem;
    }

    .hero-location {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .scroll-indicator {
        display: none;
    }

    .smoke-effect {
        display: none;
    }

    /* ABOUT */
    .about-wrapper {
        gap: 2rem;
    }

    .about-visual {
        height: 250px;
         width: 132%;         
    }

    .about-text {
        padding: 0 0.5rem;
        text-align: center;
    }

    .about-text p {
        font-size: 0.9rem;
        text-align: left;
    }

    .about-highlights {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .highlight-item {
        padding: 0.7rem;
        font-size: 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .highlight-icon img {
        width: 22px;
        height: 22px;
    }

    .about-btn-wrapper {
        text-align: center;
        margin-top: 1.5rem;
    }

    /* CATEGORIES */
    #about {
        padding-top: 3rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding-bottom: 160px;
        justify-items: center;
    }

    .category-card {
        width: 140px;
        height: 300px;
        border-radius: 70px;
    }

    .category-card-img,
    .category-overlay {
        border-radius: 70px;
    }

    .category-content {
        width: 140px;
        padding: 1rem 0.8rem;
        bottom: -60px;
    }

    .category-card:hover .category-content {
        bottom: -140px;
    }

    .category-content h3 {
        font-size: 0.9rem;
    }

    .category-content p {
        font-size: 0.65rem;
        line-height: 1.4;
    }

    /* BENEFITS */
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 2rem 1.2rem;
    }

    .benefit-card:hover {
        transform: none;
    }

    .benefit-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1.2rem;
    }

    .benefit-icon .icon-logo {
        width: 32px;
        height: 32px;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }

    .benefit-card p {
        font-size: 0.85rem;
    }

    /* TESTIMONIALS */
    .testimonial {
        padding: 1.5rem 0.5rem;
    }

    .testimonial-quote {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .testimonial::before {
        font-size: 4rem;
        top: -0.5rem;
    }

    /* CTA */
    .cta {
        padding: 4rem 4%;
    }

    .cta h2 {
        font-size: clamp(1.2rem, 5vw, 1.6rem) !important;
    }

    .cta p {
        font-size: 0.85rem;
    }

    .cta-btn {
        padding: 1rem 1.8rem;
        font-size: 0.75rem;
    }

    /* NEWSLETTER */
    .newsletter {
        padding: 3rem 4%;
    }

    .newsletter-input-wrapper {
        flex-direction: column;
        border-radius: 15px;
    }

    .newsletter-form input[type="email"] {
        padding: 1rem 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(218, 204, 180, 0.2);
        border-radius: 15px 15px 0 0;
    }

    .newsletter-btn {
        padding: 1rem 1.5rem;
        border-radius: 0 0 13px 13px;
        font-size: 0.8rem;
    }

    /* FOOTER */
    footer {
        padding: 3rem 4% 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand .footer-logo {
        height: 45px;
        margin: 0 auto 1rem;
    }

    .footer-brand p {
        max-width: 280px;
        margin: 0 auto 1.5rem;
        font-size: 0.85rem;
    }

    .social-links {
        justify-content: center;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .footer-col h4 {
        margin-bottom: 0.8rem;
        font-size: 0.8rem;
    }

    .footer-col a {
        font-size: 0.85rem;
    }

    .footer-col a:hover {
        transform: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-top: 1.5rem;
        font-size: 0.75rem;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    /* SIDE MENU */
    .side-menu {
        width: 100%;
        padding: 3rem 1.5rem 2rem;
    }

    .side-menu-link {
        font-size: 1.5rem;
        padding: 0.8rem 0;
    }

    .side-menu-cta {
        margin-top: 2rem;
    }

    /* BACK TO TOP */
    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 20px;
        right: 15px;
        font-size: 1rem;
    }
}

/* 4. PETIT MOBILE */
@media (max-width: 480px) {
    section {
        padding: 3rem 3.5%;
    }

    /* NAVBAR */
    .nav-logo {
        height: 60px;
    }

    .navbar.scrolled {
        width: 94%;
        left: 3%;
        height: 82px;
        right: 3%;
    }

    .navbar.scrolled .nav-logo {
        height: 60px;
    }

    .hamburger span {
        width: 22px;
    }

    /* HERO */
    .hero-logo {
        width: 85px;
    }

    .hero-tagline {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }

    .hero h1 {
        font-size: clamp(1.4rem, 6.5vw, 1.9rem) !important;
    }

    .hero-date {
        font-size: 0.85rem;
    }

    .hero-location {
        font-size: 0.75rem;
    }

    .btn {
        max-width: 240px;
        padding: 0.9rem 1.2rem;
        font-size: 0.7rem;
    }

    /* ABOUT */
    .about-visual {
        height: 220px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .highlight-item {
        flex-direction: row;
        text-align: left;
    }

    /* CATEGORIES */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-bottom: 180px;
    }

    .category-card {
        width: 160px;
        height: 350px;
        border-radius: 80px;
    }

    .category-card-img,
    .category-overlay {
        border-radius: 80px;
    }

    .category-content {
        width: 160px;
    }

    .category-content h3 {
        font-size: 1rem;
    }

    .category-content p {
        font-size: 0.7rem;
    }

    /* BENEFITS */
    .benefit-card {
        padding: 1.5rem 1rem;
    }

    .benefit-icon {
        width: 55px;
        height: 55px;
    }

    .benefit-icon .icon-logo {
        width: 28px;
        height: 28px;
    }

    /* SECTION HEADERS */
    .section-header {
        margin-bottom: 2rem;
    }

    .section-tag {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    /* NEWSLETTER */
    .newsletter-form input[type="email"] {
        font-size: 0.9rem;
    }

    /* CTA */
    .cta-btn {
        padding: 0.9rem 1.5rem;
    }
}

/* 5. TRÈS PETIT ÉCRAN */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.3rem !important;
    }

    /* CATEGORIES */
    .category-card {
        width: 140px;
        height: 320px;
    }

    .categories-grid {
        gap: 0.6rem;
    }

    .footer-brand p {
        font-size: 0.8rem;
    }
}

/* 6. TRÈS PETIT ÉCRAN (iPhone SE) */
@media (max-width: 360px) {
    .category-card {
        max-width: 125px;
        height: 280px;
    }
}

