




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #050510;
  color: #f5f5f5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* HEADER */
.header {
  width: 100%;
  padding: 10px 20px;
  background: rgba(5, 5, 20, 0.95);
  border-bottom: 1px solid rgba(180, 150, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 1000;
}

/* LOGO */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 45px;
}

.brand-title {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  letter-spacing: 2px;
}

/* MENU DESKTOP */
.header-links ul {
  display: flex;
  list-style: none;
  gap: 20px;
}
.header-links > ul > li {
  position: relative; /* CRUCIAL : Chaque boîte se repère à son propre parent */
  display: block;     /* On évite le flex ici pour ne pas transmettre de mauvaises consignes */
}

.header-links ul > li > a {
  color: #e6d5ff;
  font-size: 14px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Barre de navigation principale */
.header-links ul {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.header-links ul > li > a {
  color: #e6d5ff;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0; /* Zone de survol plus large */
}
/* ==========================================
   1. ÉTAT PAR DÉFAUT (DESKTOP & GLOBAL)
   ========================================== */

/* On cache les éléments mobiles par défaut sur PC */
.burger,
.mobile-menu,
.mobile-submenu {
  display: none;
}

/* Parent du menu déroulant */
.dropdown-parent {
  position: relative;
  display: flex;
  align-items: center;
}

/* Sous-menu (caché par défaut) */
.dropdown {
  display: none;              /* caché par défaut */
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;

  flex-direction: column;
  min-width: 210px;
  width: max-content;

  background: #0b0b1c;
  border: 1px solid rgba(180, 150, 255, 0.3);
  border-radius: 4px;
  padding: 8px 0;
  list-style: none;
  z-index: 10000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
  margin-top: 5px;
}

/* ASTUCE : Le "pont" invisible */
.dropdown::before {
  content: "";
  position: absolute;
  top: -10px;          /* Remplit le vide de 10px au-dessus du menu */
  left: 0;
  width: 100%;
  height: 10px;
  background: transparent; /* Invisible mais capte le survol de la souris */
}
/* Items internes */
.dropdown li {
  width: 100%;
  display: block;
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  color: #e9e4ff;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}

.dropdown li a:hover {
  background: rgba(180, 150, 255, 0.15);
}

/* Affichage au survol du parent */
.dropdown-parent:hover > .dropdown {
  display: flex;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* Animation de la flèche */
.arrow-down {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #c9b3ff;
  transition: transform 0.3s;
}

.dropdown-parent:hover .arrow-down {
  transform: rotate(180deg);
}

/* --- FIX MOBILE --- */




/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 28px;
  height: 3px;
  background: #fff;
}






/* ========================= */
/*        SECTIONS           */
/* ========================= */

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 1.5rem 3rem;
}

section {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(120, 90, 220, 0.25);
}

section:last-of-type {
  border-bottom: none;
  padding-bottom: 5rem;
}

h1, h2 {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #c9b3ff;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  color: #f7f3ff;
}

p {
  line-height: 1.6;
  font-size: 0.95rem;
  color: #d7d3f0;
  max-width: 720px;
}


    /* Responsive simple */
    @media (max-width: 768px) {
      .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }

      nav ul {
        flex-wrap: wrap;
        gap: 0.75rem;
      }
    }



























/*************************************
              Global 
*************************************/

:root {
  --color-dark: #0a0a0a;
  --color-gold: #c5a059; /* Pour le côté précieux/mystérieux */
  --color-text: #e0e0e0;
  --color-accent: #3a3a3a;
  --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
  background-color: var(--color-dark);
  color: var(--color-text);
  font-family: var(--font-main);
  line-height: 1.6;
  margin: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Hero Section --- */
.hero-section {
  padding: 80px 0 40px;
  text-align: center;
  background: linear-gradient(to bottom, #1a1a1a, var(--color-dark));
}

.main-title {
  font-size: 3rem;
  letter-spacing: 8px;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-description {
  max-width: 700px;
  margin: 20px auto;
  font-style: italic;
  opacity: 0.9;
}

.cta-invite {
  margin-top: 30px;
  font-weight: bold;
  color: var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
  display: inline-block;
}

/* --- Section Codex / Grid --- */
.codex-navigation {
  padding: 60px 0;
}

.codex-header {
  text-align: center;
  margin-bottom: 50px;
}

.fragments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* --- Cartes (Cards) --- */
.fragment-card {
  background: #151515;
  border: 1px solid var(--color-accent);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: block;
  height: 100%;
}

.fragment-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-gold);
  box-shadow: 0 10px 30px rgba(197, 160, 89, 0.15);
}

.image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.fragment-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  transition: filter 0.3s ease;
}

.fragment-card:hover .fragment-image {
  filter: grayscale(0%);
}

.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--color-gold);
  color: black;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 4px;
}

.card-content {
  padding: 20px;
}

.fragment-title {
  color: var(--color-gold);
  margin-top: 0;
  font-size: 1.25rem;
}

.fragment-text {
  font-size: 0.95rem;
  color: #bbb;
}

.link-highlight {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: bold;
}

.link-highlight:hover {
  text-decoration: underline;
}
/* Petit tag au-dessus du titre principal de la section */
.association-tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 2px 10px;
  margin-bottom: 15px;
  border-radius: 20px;
  opacity: 0.8;
}

.section-subtitle strong {
  color: var(--color-gold);
  font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .main-title { font-size: 2rem; }
  .fragments-grid { grid-template-columns: 1fr; }
}





/* Style Association */
.assoc-intro {
  padding: 60px 0;
  border-left: 4px solid var(--color-gold);
  padding-left: 30px;
  margin-bottom: 40px;
}

.assoc-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

.badge-assoc {
  color: var(--color-gold);
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 0.8rem;
}

.assoc-values {
  margin-top: 20px;
  color: var(--color-gold);
  font-weight: bold;
  display: flex;
  gap: 15px;
}

.btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--color-gold);
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #fff;
}

/* Style Vidéos */
/* --- Ajustement de la Grille Vidéo --- */
.video-gallery-grid {
  display: grid;
  /* On force 3 colonnes plus petites pour éviter l'effet "énorme" */
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px; /* Espace plus serré */
  margin-top: 30px;
}

.video-card {
  background: rgba(255, 255, 255, 0.03); /* Léger fond pour détacher la carte */
  padding: 10px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: scale(1.02); /* Effet de zoom très léger au survol */
}

/* --- Taille des vidéos --- */
.video-thumb {
  position: relative;
  padding-bottom: 56.25%; /* Garde le ratio 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 6px; /* Arrondi plus doux */
  box-shadow: 0 4px 15px rgba(0,0,0,0.5); /* Ombre pour donner de la profondeur */
}

/* --- Ajustement du texte sous les vidéos --- */
.video-info h3 {
  font-size: 1rem; /* Titre plus petit */
  margin: 12px 0 8px 0;
  color: var(--color-gold);
}

.video-info p {
  font-size: 0.85rem; /* Texte plus discret */
  line-height: 1.4;
  opacity: 0.8;
}

/* --- Responsive (Tablettes et Mobiles) --- */
@media (max-width: 1024px) {
  .video-gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur tablette */
  }
}

@media (max-width: 600px) {
  .video-gallery-grid {
    grid-template-columns: 1fr; /* 1 seule colonne sur petit mobile */
    max-width: 400px; /* On limite la largeur sur mobile pour pas que ça soit géant */
    margin-left: auto;
    margin-right: auto;
  }
  
  .assoc-content-grid {
    grid-template-columns: 1fr;
  }
}

.separator {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-accent), transparent);
  margin: 50px 0;
}

@media (max-width: 768px) {
  .assoc-content-grid { grid-template-columns: 1fr; }
}
/* --- Hero Archive Section --- */
.hero-archive-section {
  padding: 80px 0;
  background: radial-gradient(circle at top right, #1a1a1a, #0a0a0a);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* Texte plus large que l'image */
  gap: 60px;
  align-items: center;
}

.hero-kicker {
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 25px;
}









/* --- Boîte activités (Fusion Projets) --- */
.activities-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-left: 3px solid var(--color-gold);
  margin: 30px 0;
}

.activities-box h3 {
  font-size: 1rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.activities-list {
  list-style: none;
  padding: 0;
  font-size: 0.95rem;
}

.activities-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.activities-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-gold);
}







/* --- Carte Visuelle (Hero Card) --- */
.hero-card {
  background: #151515;
  border: 1px solid #333;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.card-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.hero-card:hover .card-image-wrap img {
  transform: scale(1.05);
}

.card-body {
  padding: 25px;
}

.hero-tag {
  background: var(--color-gold);
  color: #000;
  padding: 2px 8px;
  font-size: 0.7rem;
  font-weight: bold;
  border-radius: 4px;
}

.card-status {
  margin-top: 15px;
  font-size: 0.8rem;
  font-style: italic;
  opacity: 0.6;
  border-top: 1px solid #333;
  padding-top: 10px;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .activities-box {
    text-align: left;
  }
  
  .hero-visual {
    max-width: 450px;
    margin: 0 auto;
  }

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







/* --- Style de l'en-tête Archive --- */
.archive-header {
  margin-bottom: 60px;
  text-align: center;
}

.archive-intro {
  max-width: 800px;
  margin: 0 auto;
}

.archive-main-title {
  font-size: 3rem;
  letter-spacing: 5px;
  margin: 10px 0;
  text-transform: uppercase;
}

.archive-description p {
  color: #bbb;
  font-size: 1.1rem;
  line-height: 1.6;
}

.archive-highlight {
  margin-top: 20px;
  color: var(--color-gold) !important;
  font-style: italic;
}

/* --- Grille des Portails --- */
.portal-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.portal-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #333;
  padding: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.portal-card:hover {
  background: rgba(197, 160, 89, 0.05); /* Teinte or légère */
  border-color: var(--color-gold);
  transform: translateY(-5px);
}

.portal-label {
  font-family: monospace;
  color: var(--color-gold);
  font-size: 0.8rem;
  margin-bottom: 15px;
}

.portal-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}

.portal-text {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1; /* Aligne les cartes */
  margin-bottom: 20px;
}

.portal-meta {
  font-size: 0.8rem;
  color: #666;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-style: italic;
}




/***********************************
<!-- SECTION UNIVERS & FRAGMENTS -->
***********************************/

/* --- En-tête Univers --- */
.univers-header {
  padding: 60px 0;
  text-align: center;
}

.univers-intro {
  max-width: 750px;
  margin: 0 auto;
}

.badge-gold {
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 4px 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.univers-main-title {
  font-size: 2.5rem;
  margin: 20px 0;
}

.univers-description p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.7;
}

.univers-highlight {
  margin-top: 15px;
  font-style: italic;
  color: var(--color-gold) !important;
}

/* --- Grille des Fragments --- */
.sub-section-title {
  text-align: center;
  font-size: 1.8rem;
  margin: 40px 0 30px;
  opacity: 0.8;
}

.fragment-card {
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.fragment-card:hover {
  transform: translateY(-8px);
}

.fragment-image-wrap {
  position: relative;
  height: 220px;
}

.fragment-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fragment-type {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--color-gold);
  padding: 3px 10px;
  font-size: 0.75rem;
  border-radius: 4px;
}

.fragment-content {
  padding: 20px;
  flex-grow: 1;
}

.fragment-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--color-gold);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
}

.fragment-link:hover {
  text-decoration: underline;
}




/* --- En-tête Univers --- */
.univers-header {
  padding: 60px 0;
  text-align: center;
}

.univers-intro {
  max-width: 750px;
  margin: 0 auto;
}

.badge-gold {
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 4px 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.univers-main-title {
  font-size: 2.5rem;
  margin: 20px 0;
}

.univers-description p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.7;
}

.univers-highlight {
  margin-top: 15px;
  font-style: italic;
  color: var(--color-gold) !important;
}

/* --- Grille des Fragments --- */
.sub-section-title {
  text-align: center;
  font-size: 1.8rem;
  margin: 40px 0 30px;
  opacity: 0.8;
}

.fragment-card {
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.fragment-card:hover {
  transform: translateY(-8px);
}

.fragment-image-wrap {
  position: relative;
  height: 220px;
}

.fragment-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fragment-type {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--color-gold);
  padding: 3px 10px;
  font-size: 0.75rem;
  border-radius: 4px;
}

.fragment-content {
  padding: 20px;
  flex-grow: 1;
}

.fragment-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--color-gold);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
}

.fragment-link:hover {
  text-decoration: underline;
}




.dual-section {
  padding: 80px 0;
  background: linear-gradient(to right, #0a0a0a 50%, #111 50%); /* Coupe visuelle propre */
}

.dual-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* Style Lore (Gauche) */
.univers-info .section-title {
  margin: 15px 0;
  text-align: left;
}

.archive-text p {
  color: #cdd6e0;
  line-height: 1.6;
  font-size: 0.98rem;
  margin-bottom: 15px;
}

/* Style Carte Boutique (Droite) */
.support-card {
  background: #1a1a1a;
  border: 1px solid var(--color-gold);
  padding: 40px;
  border-radius: 4px; /* Plus carré pour le côté "Archive" */
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.support-card::before {
  content: "REF: SUPPORT-09";
  position: absolute;
  top: 10px;
  right: 15px;
  font-family: monospace;
  font-size: 0.7rem;
  color: var(--color-gold);
  opacity: 0.5;
}

.card-header h3 {
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.support-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.support-list li {
  margin-bottom: 15px;
  font-size: 0.9rem;
  padding-left: 20px;
  position: relative;
}

.support-list li::before {
  content: "•";
  color: var(--color-gold);
  position: absolute;
  left: 0;
}

.btn-gold-outline {
  display: block;
  text-align: center;
  padding: 12px;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  margin-top: 20px;
}

.btn-gold-outline:hover {
  background: var(--color-gold);
  color: #000;
}

/* Responsive */
@media (max-width: 992px) {
  .dual-section {
    background: #0a0a0a;
  }
  .dual-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .support-card {
    padding: 30px;
  }
}




/* --- Carrousel Amélioré --- */
/* --- Conteneur Global --- */
.carrousel-section {
  padding: 60px 0;
  overflow: hidden;
}

.carrousel-container {
  position: relative; /* Indispensable pour placer les flèches */
  max-width: 900px;   /* On réduit la largeur globale */
  margin: 0 auto;
  padding: 0 60px;    /* Espace pour laisser les flèches à l'extérieur */
}

/* --- Rail et Masquage --- */
.carrousel-track-container {
  overflow: hidden;
  border-radius: 15px;
}

.carrousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
}

/* --- Taille des Images (Réduction) --- */
.carrousel-item {
  flex: 0 0 calc(33.33% - 20px); /* 3 images par vue sur PC */
  position: relative;
  height: 350px; /* On fixe une hauteur max raisonnable */
  border-radius: 10px;
  overflow: hidden;
  background: #151515;
}

.carrousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* L'image remplit le cadre sans se déformer */
}

/* --- Flèches Améliorées --- */
.carrousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-gold);
  color: #000;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.carrousel-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}

.carrousel-btn.prev { left: 0; }
.carrousel-btn.next { right: 0; }

/* --- Responsive --- */
@media (max-width: 850px) {
  .carrousel-item {
    flex: 0 0 calc(50% - 20px); /* 2 images sur tablette */
    height: 300px;
  }
}

@media (max-width: 500px) {
  .carrousel-item {
    flex: 0 0 100%; /* 1 seule image sur mobile */
    height: 400px;
  }
  .carrousel-container { padding: 0 40px; }
}

/* --- Interaction Section (Grid) --- */
.interaction-section {
  padding: 80px 0;
  background: #0f0f11;
  border-top: 1px solid #1f1f22;
}

.interaction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.newsletter-box, .contact-info-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #222;
}

.newsletter-box h3, .contact-info-box h3 {
  color: var(--color-gold);
  margin-bottom: 15px;
}

/* --- Formulaire Compact --- */
.newsletter-form {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.newsletter-form input {
  flex: 1;
  background: #000;
  border: 1px solid #333;
  padding: 12px;
  color: #fff;
  border-radius: 4px;
}

.legal-links { font-size: 0.8rem; opacity: 0.5; }
.legal-links a { color: #fff; text-decoration: none; }

/* --- Responsive --- */
@media (max-width: 850px) {
  .interaction-grid { grid-template-columns: 1fr; }
}






   





















/****************************************************
                  Media Query
****************************************************/




/* ==========================================
   2. RESPONSIVE (MOBILE & TABLETTE)
   ========================================== */
@media (max-width: 900px) {
    
    /* On cache le menu desktop */
    .header-links {
        display: none !important;
    }

    /* On affiche le bouton burger */
    .burger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }
    .burger ul li{
      list-style-type: none;    }

    .burger span {
        width: 28px;
        height: 3px;
        background: #fff;
    }

    /* Le menu mobile principal */
    .mobile-menu {
        display: none; /* Reste caché tant qu'on n'a pas la classe .active */
        flex-direction: column;
        position: fixed;
        top: 70px; /* À ajuster selon la hauteur de ton header */
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: #0b0b1c;
        padding: 20px;
        overflow-y: auto;
        z-index: 999;
    }

    /* Activation du menu mobile par JS */
    .mobile-menu.active {
        display: flex !important;
    }

    /* Style des liens mobiles */
    .mobile-menu a, .mobile-dropdown button {
        display: block;
        width: 100%;
        padding: 15px 0;
        color: #e6d5ff;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        background: none;
        border-top: none;
        border-left: none;
        border-right: none;
        text-align: left;
        font-size: 16px;
        cursor: pointer;
    }

    /* Le sous-menu mobile */
    .mobile-submenu {
        display: none; /* Caché par défaut */
        padding-left: 20px;
        background: rgba(255, 255, 255, 0.03);
    }

    /* Activation du sous-menu mobile par JS */
    .mobile-submenu.active {
        display: block !important;
    }

    /* Flèche visuelle pour les boutons */
    .mobile-dropdown button::after {
        content: ' ▼';
        font-size: 10px;
        float: right;
    }
}