@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Saira+Stencil:ital,wght@0,100..900;1,100..900&display=swap');

 
 /* ===== PALETTE AUTHENTIQUE, MÉLANCOLIQUE & HISTORIQUE ===== */
        :root {
            --terracotta: #b87b5a;
            --terre-brulee: #8b5a3c;
            --sepia: #7a5a4b;
            --ocre-doux: #d9a56c;
            --ambre-melancolie: #c2864a;
            --ardoise-temps: #2e3a3c;
            --brun-patina: #4a3729;
            --beige-ancien: #e8ddd0;
            --gris-memoire: #b7aa9d;
            --noir-velours: #1e1b18;
            --blanc-casse: #f4ede5;
            --vert-sauge: #6f7e6b;
            --rouille: #9e5a3a;
            
            --primary: var(--terracotta);
            --primary-dark: var(--terre-brulee);
            --primary-light: var(--ocre-doux);
            --accent: var(--ambre-melancolie);
            --bg-dark: var(--noir-velours);
            --bg-card: rgba(30, 27, 24, 0.85);
            --text-light: var(--blanc-casse);
            --text-muted: var(--gris-memoire);
            --border-gold: rgba(184, 123, 90, 0.4);
            --shadow: rgba(0, 0, 0, 0.4);
            
            --gradient-primary: linear-gradient(135deg, var(--terracotta), var(--ambre-melancolie));
            --gradient-hero: linear-gradient(135deg, rgba(184, 123, 90, 0.9), rgba(194, 134, 74, 0.8));
            --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
            
            --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-medium: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --border-radius: 16px;
            --border-radius-lg: 24px;
            --box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            --box-shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.4);
            --box-shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            line-height: 1.7;
            color: var(--text-light);
            overflow-x: hidden;
            background-color: var(--bg-dark);
            font-weight: 400;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', Georgia, serif;
            font-weight: 700;
            line-height: 1.2;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

/* LOADER */
.loading-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000; /* fond sombre */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-logo-img {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
}

.loading-spinner {
  border: 4px solid #eee;
  border-top: 4px solid #2ecc71;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 10px auto;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.loading-text {
  text-align: center;
  color: white;
}

.loading-progress {
  width: 200px;
  height: 5px;
  background: #333;
  margin-top: 10px;
}

.progress-bar {
  width: 0;
  height: 100%;
  background: #2ecc71;
  animation: load 3s forwards;
}

@keyframes load {
  100% { width: 100%; }
}

/* NAVBAR */
.navbar {
  background: #000;
  padding: 10px 0;
}

.logo-container {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 50px;
  width: auto;
}

/* MENU */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

/* RESPONSIVE MENU */
.menu-toggle {
  display: none;
}
        /* Loading screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #1a1612;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loading-logo {
            position: relative;
            width: 140px;
            height: 140px;
            margin: 0 auto 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(184, 123, 90, 0.15);
            border-radius: 50%;
            backdrop-filter: blur(5px);
            border: 1px solid var(--primary);
        }

        .logo-symbol {
            font-size: 3.5rem;
            font-weight: 900;
            background: var(--gradient-primary);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 2px;
        }

        .loading-spinner {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 2px solid transparent;
            border-top: 2px solid var(--primary);
            border-right: 2px solid var(--primary-light);
            border-radius: 50%;
            animation: spin 1.5s linear infinite;
        }

        .loading-text h3 {
            font-size: 2rem;
            background: var(--gradient-primary);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .loading-text p {
            color: var(--gris-memoire);
        }

        .loading-progress {
            width: 200px;
            height: 4px;
            background: rgba(255,255,255,0.1);
            border-radius: 2px;
            overflow: hidden;
            margin-top: 1rem;
        }

        .progress-bar {
            height: 100%;
            background: var(--gradient-primary);
            width: 0%;
            transition: width 0.3s ease;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 22, 18, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(184, 123, 90, 0.3);
            z-index: 1000;
            transition: all var(--transition-medium);
        }

        .navbar.scrolled {
            background: rgba(20, 17, 14, 0.98);
            box-shadow: 0 5px 30px rgba(0,0,0,0.3);
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-symbol-nav {
            font-size: 1.8rem;
            font-weight: 900;
            background: var(--gradient-primary);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }

        .logo-text {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--primary-light);
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--beige-ancien);
            font-weight: 500;
            transition: color var(--transition-fast);
            position: relative;
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--primary-light);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width var(--transition-fast);
        }

        .nav-links a:hover::after, .nav-links a.active::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--primary);
            color: var(--blanc-casse) !important;
            padding: 8px 20px !important;
            border-radius: 40px;
        }

        .nav-cta:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .nav-cta::after {
            display: none;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 26px;
            height: 2px;
            background: var(--beige-ancien);
            margin: 4px 0;
            transition: 0.3s;
        }

        /* Hero */
        .hero-products {
            height: 85vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(26,22,18,0.7), rgba(30,27,24,0.85)), url('../Img/DS2.jpg') center/cover;
            background-size: cover;
        }

        .hero-products-content {
            text-align: center;
            max-width: 800px;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            background: var(--gradient-primary);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 2rem;
            color: var(--blanc-casse);
        }

        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
            color: var(--blanc-casse);
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        .title-line.accent {
            background: var(--gradient-primary);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--gris-memoire);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary);
            color: var(--blanc-casse);
            padding: 12px 28px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            transition: all var(--transition-fast);
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }

        .btn-hero-secondary {
            background: transparent;
            border: 2px solid var(--primary);
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Sections */
        .intro-section, .produits-section, .experiences-section, .cta-final {
            padding: 80px 0;
        }

        .intro-section {
            background: var(--ardoise-temps);
        }

        .intro-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .intro-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .accent-text {
            background: var(--gradient-primary);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .intro-stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient-primary);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--gris-memoire);
        }

        /* Category Sections */
        .category-section {
            margin-bottom: 5rem;
        }

        .category-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .category-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.8rem;
            color: var(--noir-velours);
        }

        .category-header h2 {
            color: var(--primary-light);
            font-size: 2.2rem;
        }

        .category-header p {
            color: var(--gris-memoire);
        }

        /* Membres Grid */
        .membres-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .membre-card {
            background: var(--bg-card);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border-gold);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .membre-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--box-shadow);
        }

        .membre-photo {
            height: 280px;
            background: linear-gradient(135deg, #D2691E, #8B4513);
            background-size: cover;
            position: relative;
        }

        .membre-photo-1 { background: linear-gradient(135deg, #b87b5a, #8b5a3c), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%23d9a56c" opacity="0.3"/></svg>'); background-blend-mode: overlay; }
        .membre-photo-2 { background: linear-gradient(135deg, #c2864a, #9e5a3a), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,50 Q50,20 80,50 Q50,80 20,50" fill="%23d9a56c" opacity="0.3"/></svg>'); background-blend-mode: overlay; }
        .membre-photo-3 { background: linear-gradient(135deg, #d9a56c, #b87b5a), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,20 80,80 20,80" fill="%238b5a3c" opacity="0.3"/></svg>'); background-blend-mode: overlay; }

        .membre-info {
            padding: 25px;
        }

        .membre-info h3 {
            color: var(--primary-light);
            font-size: 1.4rem;
        }

        .membre-role {
            display: inline-block;
            background: rgba(184, 123, 90, 0.2);
            color: var(--primary-light);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin: 10px 0;
        }

        .membre-info p {
            color: var(--gris-memoire);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Impact Grid */
        .impact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 40px 0;
            text-align: center;
        }

        .impact-stat {
            background: var(--bg-card);
            padding: 30px 20px;
            border-radius: var(--border-radius);
            border: 1px solid var(--border-gold);
            transition: transform 0.3s ease;
        }

        .impact-stat:hover {
            transform: translateY(-5px);
        }

        .impact-number {
            font-size: 48px;
            font-weight: bold;
            background: var(--gradient-primary);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: 'Playfair Display', serif;
        }

        .impact-label {
            color: var(--gris-memoire);
            margin-top: 10px;
        }

        .impact-text {
            background: rgba(184, 123, 90, 0.15);
            padding: 30px;
            border-radius: 20px;
            font-style: italic;
            text-align: center;
            font-size: 1.1rem;
            color: var(--beige-ancien);
            margin-top: 20px;
            border-left: 4px solid var(--primary);
        }

        .impact-text i {
            color: var(--primary);
            margin: 0 10px;
        }

        /* Témoignages */
        .temoignages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .temoignage-card {
            background: var(--bg-card);
            padding: 25px;
            border-radius: 20px;
            border: 1px solid var(--border-gold);
            transition: transform 0.3s ease;
            position: relative;
        }

        .temoignage-card:hover {
            transform: translateY(-5px);
        }

        .temoignage-card::before {
            content: '"';
            font-size: 4rem;
            position: absolute;
            top: -10px;
            left: 15px;
            color: var(--primary);
            opacity: 0.3;
            font-family: serif;
        }

        .temoignage-card p {
            color: var(--beige-ancien);
            line-height: 1.6;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .temoignage-author {
            margin-top: 15px;
            color: var(--primary-light);
            font-weight: bold;
            border-top: 1px solid var(--border-gold);
            padding-top: 15px;
        }

        /* Video Section */
        .video-section { 
            padding: 60px 0; 
            background: var(--ardoise-temps); 
            text-align: center; 
        }
        
        .video-wrapper { 
            max-width: 1000px; 
            margin: 0 auto; 
            border-radius: 20px; 
            overflow: hidden; 
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
        }
        
        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .video-text { 
            margin-top: 20px; 
        }
        
        .video-text h3 { 
            color: var(--primary-light); 
            font-family: 'Playfair Display', serif; 
        }
        
        .video-text p {
            color: var(--gris-memoire);
        }

        /* CTA final */
        .cta-final {
            background: var(--gradient-primary);
            text-align: center;
            color: var(--noir-velours);
        }

        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-content h2 span {
            display: inline-block;
        }

        .cta-content p {
            margin-bottom: 1.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-cta-primary {
            background: var(--noir-velours);
            color: var(--blanc-casse);
        }

        .btn-cta-secondary {
            background: transparent;
            border: 2px solid var(--noir-velours);
            color: var(--noir-velours);
        }

        .btn-cta-secondary:hover {
            background: var(--noir-velours);
            color: var(--blanc-casse);
        }

        /* Footer */
        .footer {
            background: #171412;
            padding: 60px 0 20px;
            border-top: 1px solid var(--primary);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-brand h3 {
            color: var(--primary-light);
            margin-bottom: 0.5rem;
        }

        .footer-brand p {
            color: var(--gris-memoire);
            font-size: 0.9rem;
        }

        .footer-logo-symbol {
            font-size: 2rem;
            font-weight: 900;
            background: var(--gradient-primary);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .link-group h4 {
            color: var(--primary-light);
            margin-bottom: 1rem;
        }

        .link-group a {
            display: block;
            color: var(--gris-memoire);
            text-decoration: none;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }

        .link-group a:hover {
            color: var(--primary-light);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 1rem;
            flex-wrap: wrap;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(184, 123, 90, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--beige-ancien);
            transition: 0.3s;
            text-decoration: none;
            font-size: 1.2rem;
        }

        .social-link:hover {
            background: var(--primary);
            color: var(--noir-velours);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(184, 123, 90, 0.2);
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.8rem;
            color: var(--gris-memoire);
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @media (max-width: 992px) {
            .intro-content { grid-template-columns: 1fr; text-align: center; }
            .footer-content { grid-template-columns: 1fr; }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .hero-title { font-size: 2.8rem; }
        }

        @media (max-width: 768px) {
            .menu-toggle { display: flex; }
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--noir-velours);
                flex-direction: column;
                padding: 1rem;
                gap: 1rem;
            }
            .nav-links.active { display: flex; }
            .hero-title { font-size: 2rem; }
            .footer-links { grid-template-columns: 1fr; }
            .intro-stats { flex-direction: column; gap: 1rem; align-items: center; }
            .hero-subtitle { font-size: 1rem; }
            .membres-grid { grid-template-columns: 1fr; }
            .impact-grid { grid-template-columns: 1fr; }
            .temoignages-grid { grid-template-columns: 1fr; }
            .cta-content h2 { font-size: 1.8rem; }
        }

        /* Animation au scroll */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }