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

        :root {
            --bg: #f5f0e8;
            --bg-deep: #ebe4d6;
            --surface: #ffffff;
            --surface-tinted: #f0ebe0;
            --primary: #1a3a2a;
            --primary-mid: #2d5a3f;
            --accent: #c9a84c;
            --accent-light: #e0c872;
            --text: #2a2a2a;
            --text-muted: #6b6560;
            --text-light: #9a9490;
            --border: #d5cfc5;
            --radius: 10px;
            --radius-lg: 16px;
            --shadow-soft: 0 4px 24px rgba(26,58,42,0.07);
            --shadow-hover: 0 12px 40px rgba(26,58,42,0.13);
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

            --section-pad: clamp(3rem, 6vw, 6rem);
            --container-pad: clamp(1.2rem, 4vw, 2rem);
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: 'Lora', Georgia, serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body::after {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9999;
        }

        .section-title {
            font-family: 'Bebas Neue', Impact, sans-serif;
            font-size: clamp(2rem, 5vw, 3.6rem);
            letter-spacing: 0.03em;
            line-height: 1.1;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .section-subtitle {
            font-family: 'Lora', serif;
            font-style: italic;
            font-size: clamp(0.9rem, 1.5vw, 1.05rem);
            color: var(--text-muted);
            margin-bottom: 2.5rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--container-pad);
        }
		
		/* ═══════════════════════════════════════
           BOUTONS
           ═══════════════════════════════════════ */
        .btn {
            display: inline-block;
            font-family: var(--font-display);
            font-size: 1.1rem;
            letter-spacing: 0.08em;
            padding: 0.7rem 2rem;
            border: 2px solid var(--accent);
            border-radius: var(--radius);
            background: transparent;
            color: var(--accent);
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
            text-align: center;
        }
        .btn:hover { background: var(--accent); color: var(--dark); text-decoration: none; }
        .btn-filled { background: var(--accent); color: var(--dark); }
        .btn-filled:hover { background: var(--accent-hover); }
        .btn-block { display: block; width: 100%; }
        .btn-sm { font-size: 0.9rem; padding: 0.4rem 1rem; }

        /* ============================
           NAVIGATION — Desktop
           ============================ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(26, 58, 42, 0.97);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(201, 168, 76, 0.15);
            transition: box-shadow var(--transition);
        }

        .navbar.scrolled {
            box-shadow: 0 4px 30px rgba(0,0,0,0.25);
        }

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

        .nav-brand {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 0.06em;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-shrink: 0;
        }

        .nav-brand .brand-icon {
            width: 36px;
            height: 36px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: var(--primary);
            flex-shrink: 0;
			overflow: visible;
        }
		
		.nav-brand .brand-icon img {
			height: 60px;
			width: auto;
			display: block;      /* évite les petits espaces liés aux images inline */
			margin-right: 0.6rem;
		}

        .nav-links {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 0.2rem;
        }

        .nav-links a {
            font-family: 'Lora', serif;
            font-size: 0.88rem;
            color: rgba(255,255,255,0.75);
            text-decoration: none;
            padding: 0.5rem 0.9rem;
            border-radius: 6px;
            transition: all var(--transition);
            font-weight: 600;
            white-space: nowrap;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #fff;
            background: rgba(255,255,255,0.08);
        }

        .nav-links a.active {
            color: var(--accent);
        }

        /* Hamburger button — hidden on desktop */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
            -webkit-tap-highlight-color: transparent;
        }

        .nav-toggle span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: #fff;
            margin: 6px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
        .nav-toggle.open span:nth-child(2) { opacity: 0; }
        .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

        /* Mobile overlay */
        .nav-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 998;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nav-overlay.visible {
            opacity: 1;
        }
		
		.nav-member-btn { font-size: 0.95rem; padding: 0.5rem 1.4rem; }

        /* ============================
           HERO
           ============================ */
        .hero {
            min-height: 85vh;
            display: flex;
            align-items: center;
            background: var(--primary);
            position: relative;
            overflow: hidden;
            margin-top: 70px;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 15% 80%, rgba(201,168,76,0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 85% 15%, rgba(45,90,63,0.4) 0%, transparent 50%),
                linear-gradient(135deg, #0f2b1d 0%, #1a3a2a 40%, #1a3a2a 100%);
        }

        .hero-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.03;
            background-image:
                repeating-linear-gradient(0deg, transparent, transparent 49px, #fff 49px, #fff 50px),
                repeating-linear-gradient(90deg, transparent, transparent 49px, #fff 49px, #fff 50px);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem var(--container-pad);
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text { animation: fadeUp 0.8s ease forwards; }

        .hero-badge {
            display: inline-block;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 0.8rem;
            letter-spacing: 0.15em;
            color: var(--accent);
            background: rgba(201,168,76,0.12);
            border: 1px solid rgba(201,168,76,0.25);
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            margin-bottom: 1.5rem;
        }

        .hero h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(3rem, 8vw, 6rem);
            color: #fff;
            line-height: 0.95;
            letter-spacing: 0.02em;
            margin-bottom: 1.5rem;
        }

        .hero h1 em {
            color: var(--accent);
            font-style: normal;
        }

        .hero-desc {
            font-size: clamp(0.95rem, 1.3vw, 1.1rem);
            color: rgba(255,255,255,0.65);
            max-width: 480px;
            margin-bottom: 2rem;
            line-height: 1.8;
			text-align: justify;
        }
		
        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: var(--accent);
            color: var(--primary);
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.1rem;
            letter-spacing: 0.08em;
            padding: 0.9rem 2.2rem;
            border-radius: 6px;
            text-decoration: none;
            transition: all var(--transition);
            min-height: 48px;
        }

        .hero-cta:hover {
            background: var(--accent-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(201,168,76,0.3);
        }

        .hero-visual {
            position: relative;
            animation: fadeUp 0.8s 0.2s ease both;
        }

        .hero-card {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            backdrop-filter: blur(8px);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
        }

        .stat-item { text-align: center; }

        .stat-number {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.8rem;
            color: var(--accent);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 0.3rem;
        }
		

        /* ============================
           CAROUSEL / SLIDESHOW
           ============================ */
        .carousel-section {
            padding: var(--section-pad) 0;
            background: var(--bg);
        }

        .carousel-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 2rem;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
        }

        .carousel-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .carousel-slide {
            min-width: 100%;
            position: relative;
			overflow: hidden; /* important pour carrousel */
        }

        .carousel-slide .slide-image {
            width: 100%;
            height: clamp(240px, 40vw, 480px);
            object-fit: contain;   /* ← affiche l’image entière, sans rognage */
            object-position: center; /* centré */
            background: #000;      /* fond noir pour combler les espaces vides */
            display: block;
        }

        .slide-placeholder {
            width: 100%;
            height: clamp(240px, 40vw, 480px);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(0.9rem, 2vw, 1.3rem);
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.6);
			display: none;
        }

        .slide-placeholder:nth-child(1) { background: linear-gradient(135deg, #2d5a3f, #1a3a2a); }
        .slide-placeholder:nth-child(2) { background: linear-gradient(135deg, #3a6b4f, #2d5a3f); }
        .slide-placeholder:nth-child(3) { background: linear-gradient(135deg, #1a3a2a, #0f2b1d); }
        .slide-placeholder:nth-child(4) { background: linear-gradient(135deg, #2d5a3f, #3a6b4f); }
        .slide-placeholder:nth-child(5) { background: linear-gradient(135deg, #0f2b1d, #1a3a2a); }

        .slide-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 3rem 2rem 1.5rem;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
            color: #fff;
        }

        .slide-caption h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(1.1rem, 2.5vw, 1.6rem);
            letter-spacing: 0.04em;
        }

        .slide-caption p {
            font-size: clamp(0.78rem, 1.2vw, 0.9rem);
            opacity: 0.8;
            margin-top: 0.25rem;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: none;
            background: rgba(255,255,255,0.92);
            color: var(--primary);
            font-size: 1.3rem;
            cursor: pointer;
            z-index: 10;
            transition: all var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            -webkit-tap-highlight-color: transparent;
            min-width: 48px;
            min-height: 48px;
        }

        .carousel-btn:hover {
            background: var(--accent);
            transform: translateY(-50%) scale(1.08);
        }

        .carousel-btn.prev { left: 1rem; }
        .carousel-btn.next { right: 1rem; }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: none;
            background: var(--border);
            cursor: pointer;
            transition: all var(--transition);
            -webkit-tap-highlight-color: transparent;
            min-width: 10px;
            min-height: 10px;
        }

        .carousel-dot.active {
            background: var(--accent);
            width: 30px;
            border-radius: 5px;
        }

        /* ============================
           HISTORY
           ============================ */
        .history-section {
            padding: var(--section-pad) 0;
            background: var(--surface);
            position: relative;
        }

        .history-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--accent), var(--primary));
        }

        .history-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .history-text p {
            margin-bottom: 1.3rem;
            color: var(--text);
            font-size: clamp(0.92rem, 1.2vw, 1.02rem);
        }

        .history-text p:first-of-type::first-letter {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3.5rem;
            float: left;
            line-height: 0.8;
            margin-right: 0.4rem;
            margin-top: 0.15rem;
            color: var(--primary);
        }

        .history-milestones {
            list-style: none;
            margin-top: 2rem;
            padding-left: 1.5rem;
            border-left: 2px solid var(--accent);
        }

        .history-milestones li {
            position: relative;
            padding: 0.6rem 0 0.6rem 1.5rem;
            font-size: clamp(0.85rem, 1.1vw, 0.95rem);
            color: var(--text-muted);
        }

        .history-milestones li::before {
            content: '';
            position: absolute;
            left: -1.85rem;
            top: 1rem;
            width: 10px;
            height: 10px;
            background: var(--accent);
            border-radius: 50%;
            border: 2px solid var(--surface);
        }

        .milestone-year {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.1rem;
            color: var(--primary);
            letter-spacing: 0.04em;
        }

        .history-aside {
            position: sticky;
            top: 100px;
        }

        .history-quote {
            background: var(--primary);
            color: #fff;
            padding: 2.5rem;
            border-radius: var(--radius-lg);
            position: relative;
            margin-bottom: 2rem;
        }

        .history-quote::before {
            content: '\201C';
            font-family: 'Bebas Neue', sans-serif;
            font-size: 6rem;
            color: var(--accent);
            position: absolute;
            top: -0.3rem;
            left: 1.2rem;
            line-height: 1;
            opacity: 0.4;
        }

        .history-quote p {
            font-style: italic;
            font-size: clamp(0.95rem, 1.2vw, 1.1rem);
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        .history-quote cite {
            display: block;
            margin-top: 1rem;
            font-style: normal;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 0.95rem;
            letter-spacing: 0.08em;
            color: var(--accent);
        }

        .history-image-placeholder {
            width: 100%;
            height: 260px;
            background: linear-gradient(135deg, var(--bg-deep), var(--border));
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-style: italic;
            font-size: 0.95rem;
        }
		.history-grid p {
		  text-align: justify;
		}

        /* ============================
           PAST ACTIVITIES
           ============================ */
        .past-section {
            padding: var(--section-pad) 0;
            background: var(--bg);
        }

        .activities-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.8rem;
        }
		.activities-grid p {
		  text-align: justify;
		}


        .activity-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all var(--transition);
            opacity: 0;
            transform: translateY(24px);
        }

        .activity-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .activity-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }

        .activity-image {
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .activity-image .img-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1rem;
            letter-spacing: 0.12em;
            color: rgba(255,255,255,0.5);
        }

        .activity-image .img-placeholder.green { background: linear-gradient(135deg, #2d5a3f, #1a3a2a); }
        .activity-image .img-placeholder.gold { background: linear-gradient(135deg, #c9a84c, #a8893a); }
        .activity-image .img-placeholder.dark { background: linear-gradient(135deg, #1a3a2a, #0f2b1d); }

        .activity-tag {
            position: absolute;
            top: 0.8rem;
            left: 0.8rem;
            background: var(--accent);
            color: var(--primary);
            font-family: 'Bebas Neue', sans-serif;
            font-size: 0.72rem;
            letter-spacing: 0.1em;
            padding: 0.25rem 0.8rem;
            border-radius: 50px;
        }

        .activity-body {
            padding: 1.5rem;
        }

        .activity-date {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 0.82rem;
            color: var(--accent);
            letter-spacing: 0.08em;
            margin-bottom: 0.4rem;
        }

        .activity-body h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.35rem;
            color: var(--primary);
            letter-spacing: 0.03em;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .activity-body p {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.7;
        }
		
        /* ============================
           UPCOMING ACTIVITIES
           ============================ */
        .upcoming-section {
            padding: var(--section-pad) 0;
            background: var(--primary);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .upcoming-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 10% 90%, rgba(45,90,63,0.3) 0%, transparent 50%);
        }

        .upcoming-section .container { position: relative; z-index: 1; }

        .upcoming-section .section-title { color: #fff; }
        .upcoming-section .section-subtitle { color: rgba(255,255,255,0.5); }

        .upcoming-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .upcoming-item {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 1.5rem;
            align-items: center;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: var(--radius);
            padding: 1.5rem 1.8rem;
            transition: all var(--transition);
        }

        .upcoming-item:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(201,168,76,0.25);
            transform: translateX(6px);
        }

        .upcoming-date-block {
            text-align: center;
            min-width: 64px;
        }

        .upcoming-day {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.2rem;
            color: var(--accent);
            line-height: 1;
        }

        .upcoming-month {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 0.78rem;
            letter-spacing: 0.12em;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
        }

        .upcoming-info h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(1rem, 1.8vw, 1.35rem);
            letter-spacing: 0.04em;
            margin-bottom: 0.25rem;
        }

        .upcoming-info p {
            font-size: clamp(0.8rem, 1.1vw, 0.9rem);
            color: rgba(255,255,255,0.55);
        }

        .upcoming-tag {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 0.72rem;
            letter-spacing: 0.1em;
            padding: 0.35rem 0.9rem;
            border-radius: 50px;
            white-space: nowrap;
        }

        .upcoming-tag.match {
            background: rgba(201,168,76,0.15);
            color: var(--accent);
            border: 1px solid rgba(201,168,76,0.25);
        }

        .upcoming-tag.training {
            background: rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.7);
            border: 1px solid rgba(255,255,255,0.12);
        }

        .upcoming-tag.event {
            background: rgba(76,175,80,0.12);
            color: #81c784;
            border: 1px solid rgba(76,175,80,0.2);
        }

        /* ============================
           BIRTHDAYS (MODIFIED & LIGHTENED)
           ============================ */
        .birthday-section {
            padding: var(--section-pad) 0;
            background: var(--bg);
            position: relative;
        }

        .birthday-subsection-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(1.4rem, 2.5vw, 1.8rem);
            color: var(--primary);
            letter-spacing: 0.02em;
            margin-bottom: 0.25rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .birthday-subsection-title .pulse-dot {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        .birthday-subsection-sub {
            font-family: 'Lora', serif;
            font-style: italic;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 1.2rem;
        }

        .birthday-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .birthday-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            display: grid;
            grid-template-columns: 100px 1fr;
            position: relative;
            transition: transform var(--transition), box-shadow var(--transition);
        }

        .birthday-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .birthday-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
        }

        .birthday-photo {
            background: linear-gradient(135deg, var(--primary), var(--primary-mid));
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 200px;
            position: relative;
            overflow: hidden;
        }

        .birthday-photo::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 70%, rgba(201,168,76,0.12), transparent 60%);
        }

        .birthday-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            border: 2px solid rgba(201,168,76,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .birthday-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .birthday-content {
            padding: 1.2rem 1.2rem 1.2rem 1rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .birthday-label {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 0.7rem;
            letter-spacing: 0.12em;
            color: var(--accent);
            margin-bottom: 0.3rem;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .birthday-label .pulse-dot {
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        .birthday-name {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(1.2rem, 2vw, 1.6rem);
            color: var(--primary);
            letter-spacing: 0.02em;
            line-height: 1.1;
            margin-bottom: 0.2rem;
        }

        .birthday-age {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 0.75rem;
            color: var(--text-light);
            letter-spacing: 0.04em;
            margin-bottom: 0.8rem;
        }

        .birthday-message {
            font-style: italic;
            font-size: clamp(0.8rem, 0.9vw, 0.85rem);
            color: var(--text);
            line-height: 1.5;
            margin-bottom: 0.9rem;
            padding-left: 0.8rem;
            border-left: 2px solid var(--accent);
        }

        .birthday-gift {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            background: var(--surface-tinted);
            padding: 0.5rem 0.8rem;
            border-radius: var(--radius);
            border: 1px solid var(--border);
        }

        .gift-icon {
            font-size: 1.4rem;
            flex-shrink: 0;
        }

        .gift-info {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .gift-info strong {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 0.75rem;
            letter-spacing: 0.04em;
            color: var(--primary);
            display: block;
            margin-bottom: 0.05rem;
        }

        .birthday-empty-message {
            background: var(--surface);
            border-radius: var(--radius-lg);
            padding: 1.5rem 1rem;
            text-align: center;
            color: var(--text-muted);
            font-style: italic;
            border: 1px solid var(--border);
            font-size: 0.85rem;
        }
		
		
		/* ============================
		   LIVE SECTION — uniformisée
		   ============================ */
		.carousel-section-live {
			padding: var(--section-pad) 0;
			background: var(--bg);
		}

		.carousel-header-live {
			display: flex;
			align-items: flex-end;
			justify-content: space-between;
			margin-bottom: 2rem;
		}

		.section-title-live {
			font-family: 'Bebas Neue', sans-serif;
			font-size: clamp(2rem, 5vw, 3.6rem);
			letter-spacing: 0.03em;
			line-height: 1.1;
			color: var(--primary);
			margin-bottom: 0.5rem;
		}

		.section-subtitle-live {
			font-family: 'Lora', serif;
			font-style: italic;
			font-size: clamp(0.9rem, 1.5vw, 1.05rem);
			color: var(--text-muted);
			margin-bottom: 0;
		}

		.live-badge-live {
			display: none;
			align-items: center;
			gap: 0.5rem;
			background: var(--accent);
			color: var(--primary);
			font-family: 'Bebas Neue', sans-serif;
			font-size: 0.75rem;
			letter-spacing: 0.1em;
			padding: 0.4rem 1rem;
			border-radius: 50px;
		}

		.live-badge-live.active {
			display: flex;
		}

		.live-dot-live {
			width: 8px;
			height: 8px;
			background: var(--primary);
			border-radius: 50%;
			animation: livePulse 1.5s ease-in-out infinite;
		}

		@keyframes livePulse {
			0%, 100% { opacity: 1; transform: scale(1); }
			50% { opacity: 0.5; transform: scale(0.9); }
		}

		/* État vide */
		.live-empty-live {
			text-align: center;
			padding: 4rem 2rem;
			border: 2px dashed var(--border);
			border-radius: var(--radius-lg);
			background: var(--surface-tinted);
		}

		.live-empty-live.hidden {
			display: none;
		}

		.live-empty-icon-live {
			font-size: 3rem;
			margin-bottom: 1rem;
			opacity: 0.5;
			color: var(--text-muted);
		}

		.live-empty-live p {
			font-family: 'Bebas Neue', sans-serif;
			font-size: 1.1rem;
			font-weight: normal;
			letter-spacing: 0.04em;
			margin: 0 0 0.5rem;
			color: var(--text);
		}

		.live-empty-live span {
			font-family: 'Lora', serif;
			font-size: 0.85rem;
			color: var(--text-muted);
		}

		/* Wrapper carousel (comme la galerie) */
		.carousel-wrapper-live {
			position: relative;
			overflow: hidden;
			border-radius: var(--radius-lg);
			box-shadow: var(--shadow-soft);
			background: var(--surface);
		}

		.carousel-track-live {
			display: flex;
			transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
		}

		.carousel-slide-live {
			min-width: 100%;
			position: relative;
			overflow: hidden;
		}

		.slide-image-live {
			width: 100%;
			height: clamp(240px, 40vw, 480px);
			object-fit: cover;
			object-position: 50% 30%;
			display: block;
		}

		.slide-caption-live {
			position: absolute;
			bottom: 0;
			left: 0;
			right: 0;
			padding: 3rem 2rem 1.5rem;
			background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
			color: #fff;
		}

		.slide-caption-live h3 {
			font-family: 'Bebas Neue', sans-serif;
			font-size: clamp(1.1rem, 2.5vw, 1.6rem);
			letter-spacing: 0.04em;
			margin-bottom: 0.25rem;
			color: #fff;
		}

		.slide-caption-live p {
			font-family: 'Lora', serif;
			font-size: clamp(0.78rem, 1.2vw, 0.9rem);
			opacity: 0.8;
			margin: 0;
		}

		/* Boutons carousel (identiques à la galerie) */
		.carousel-btn-live {
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			width: 48px;
			height: 48px;
			border-radius: 50%;
			border: none;
			background: rgba(255,255,255,0.92);
			color: var(--primary);
			font-size: 1.3rem;
			cursor: pointer;
			z-index: 10;
			transition: all var(--transition);
			display: flex;
			align-items: center;
			justify-content: center;
			box-shadow: 0 4px 15px rgba(0,0,0,0.15);
			-webkit-tap-highlight-color: transparent;
			min-width: 48px;
			min-height: 48px;
		}

		.carousel-btn-live:hover {
			background: var(--accent);
			transform: translateY(-50%) scale(1.08);
		}

		.carousel-btn-live.prev {
			left: 1rem;
		}

		.carousel-btn-live.next {
			right: 1rem;
		}

		/* Dots */
		.carousel-dots-live {
			display: flex;
			justify-content: center;
			gap: 0.5rem;
			margin-top: 1.5rem;
		}

		.carousel-dots-live.hidden {
			display: none;
		}

		.carousel-dot-live {
			width: 10px;
			height: 10px;
			border-radius: 50%;
			border: none;
			background: var(--border);
			cursor: pointer;
			transition: all var(--transition);
			-webkit-tap-highlight-color: transparent;
			min-width: 10px;
			min-height: 10px;
		}

		.carousel-dot-live.active {
			background: var(--accent);
			width: 30px;
			border-radius: 5px;
			transform: none;
			box-shadow: none;
		}

		/* Responsive pour la section live */
		@media (max-width: 768px) {
			.slide-image-live {
				height: 250px;
			}

			.carousel-btn-live {
				width: 36px;
				height: 36px;
				font-size: 1.2rem;
			}
		}

		@media (max-width: 480px) {
			.slide-image-live {
				height: 200px;
			}
		}

		

        /* ============================
           FOOTER
           ============================ */
        .site-footer {
            background: #0d1f15;
            color: rgba(255,255,255,0.5);
            padding: 3.5rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2.5rem;
        }

        .footer-brand {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            color: var(--accent);
            letter-spacing: 0.06em;
            margin-bottom: 0.8rem;
        }

        .footer-desc {
            font-size: 0.88rem;
            line-height: 1.7;
            max-width: 360px;
			text-align: justify;
        }

        .footer-heading {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 0.95rem;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.8);
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li { margin-bottom: 0.5rem; }

        .footer-links a {
            color: rgba(255,255,255,0.45);
            text-decoration: none;
            font-size: 0.86rem;
            transition: color var(--transition);
        }

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

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.07);
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            gap: 1rem;
        }

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

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

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

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

        /* ============================
           RESPONSIVE — TABLET (≤ 1024px)
           ============================ */
        @media (max-width: 1024px) {
            .activities-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .history-grid {
                gap: 2.5rem;
            }

            .hero-content {
                gap: 2.5rem;
            }

            .footer-grid {
                gap: 2rem;
            }
        }

        /* ============================
           RESPONSIVE — SMALL TABLET (≤ 768px)
           ============================ */
        @media (max-width: 768px) {
            .nav-toggle { display: block; }
            .nav-overlay {
                display: block;
                pointer-events: none;
            }
            .nav-overlay.visible { pointer-events: auto; }
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                max-width: 85vw;
                height: 100vh;
                height: 100dvh;
                background: var(--primary);
                flex-direction: column;
                padding: 5.5rem 2rem 2rem;
                gap: 0.3rem;
                transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: -10px 0 40px rgba(0,0,0,0.3);
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                align-items: stretch; /* stretch ou flex-start selon le design */
            }
            .nav-links.open { right: 0; }
            .nav-links a { text-align: left; white-space: normal; border-radius: 8px; }

            .hero { min-height: auto; }
            .hero-content { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem var(--container-pad); }
            .hero h1 { font-size: clamp(2.8rem, 10vw, 4rem); }
            .hero-card { padding: 2rem; }

            .history-grid { grid-template-columns: 1fr; gap: 2.5rem; }
            .history-aside { position: static; }

            .activities-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
            .activity-image { height: 150px; }
            .activity-body { padding: 1.2rem; }

            .upcoming-item { grid-template-columns: auto 1fr; gap: 1.2rem; padding: 1.3rem 1.5rem; }
            .upcoming-tag { grid-column: 2; justify-self: start; }

            .birthday-card { grid-template-columns: 1fr; }
            .birthday-photo { min-height: 160px; }
            .birthday-avatar { width: 80px; height: 80px; font-size: 2rem; }
            .birthday-content { padding: 1rem; }
            .birthday-grid { grid-template-columns: 1fr; gap: 1.2rem; }

            .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
            .footer-grid > div:first-child { grid-column: 1 / -1; }
            .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
        }

        /* ============================
           RESPONSIVE — MOBILE (≤ 480px)
           ============================ */
        @media (max-width: 480px) {
            .nav-inner { height: 60px; }
            .nav-brand { font-size: 1.25rem; }
            .hero { margin-top: 60px; }
            .hero-content { padding: 2.5rem var(--container-pad); }
            .hero h1 { font-size: 2.6rem; }
            .hero-cta { width: 100%; justify-content: center; }
            .activities-grid { grid-template-columns: 1fr; }
            .birthday-avatar { width: 70px; height: 70px; font-size: 1.8rem; }
            .birthday-photo { min-height: 140px; }
            .birthday-message { font-size: 0.8rem; }
        }

        @media (max-width: 360px) {
            .hero h1 { font-size: 2.2rem; }
            .birthday-grid { grid-template-columns: 1fr; }
        }

        @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; }
        }

        .nav-inner {
            padding-left: max(var(--container-pad), env(safe-area-inset-left));
            padding-right: max(var(--container-pad), env(safe-area-inset-right));
        }
        .container {
            padding-left: max(var(--container-pad), env(safe-area-inset-left));
            padding-right: max(var(--container-pad), env(safe-area-inset-right));
        }
        body.nav-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
        }
		
		
	/* UPCOMING EVENTS MEDIA COM*/
/* Conteneur du carrousel */
.upcoming-media-container {
    display: flex;
    overflow-x: auto;          /* défilement horizontal */
    gap: 10px;
    padding: 5px 0;
    scroll-snap-type: x mandatory; /* pour un effet de snap (optionnel) */
    -webkit-overflow-scrolling: touch; /* pour iOS */
    margin-top: 12px;
}

/* Élément du carrousel */
.upcoming-media-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 150px;              /* taille de base, ajustable */
    height: 150px;             /* carré */
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.1);
    transition: border 0.2s, transform 0.2s;
}

.upcoming-media-item:hover {
    border-color: rgba(255,255,255,0.4);
    transform: scale(1.02);
}

/* Image à l'intérieur */
.upcoming-media-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Badge "+N" à la fin du carrousel */
.upcoming-media-extra {
    flex: 0 0 auto;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 2px dashed rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
}

.upcoming-media-extra:hover {
    background: rgba(255,255,255,0.1);
}

/* Responsive : réduire la taille sur petits écrans */
@media (max-width: 768px) {
    .upcoming-media-item,
    .upcoming-media-extra {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .upcoming-media-item,
    .upcoming-media-extra {
        width: 90px;
        height: 90px;
    }
}

/* ===== Lightbox (plein écran) ===== */
/* ========== CONTENEUR DES MÉDIAS ========== */
/* ===== CONTENEUR DES MÉDIAS ===== */
/* ===== CONTENEUR DES MÉDIAS ===== */
.upcoming-media-container {
    margin-top: 12px;
    width: 100%;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

/* ===== ÉLÉMENT MÉDIA (avec bouton zoom) ===== */
.media-item {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.media-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.3);
}

/* Image et vidéo */
.upcoming-media-img,
.upcoming-media-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
}

/* Bouton zoom (toujours visible, mais discret) */
.media-zoom-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    font-size: 1.2rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
}
.media-zoom-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

/* ===== MODAL ===== */
.media-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s;
}
.media-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: transparent;
    display: flex;
    flex-direction: column;
}
.media-modal-body {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.media-modal-image {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.media-modal-video {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    background: #000;
}
.media-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s;
    z-index: 10;
}
.media-modal-close:hover {
    transform: scale(1.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .media-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 8px;
    }
}
@media (max-width: 480px) {
    .media-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 6px;
    }
    .media-modal-close {
        top: -30px;
        font-size: 2rem;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

.empty-message, .error-message {
    text-align: center;
    padding: 2rem;
    border: 2px dashed rgba(255,255,255,0.15);
    border-radius: 12px;
    color: #fff;
}