/* =========================1. RESET========================= */
:root {
  --space-section: 60px; /* Un peu plus d'air entre les sections */
  --space-section-mobile: 40px;
  --gold: #daa520; /* couleur Or signature pour plus tard */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
body {
  /* Identité visuelle  */
  /*background-color: #1A1A1A; */
  color: #daa520; /* Cet or magnifique que l'on voit sur image_bf3a5a.jpg */
  font-family: "Cinzel", serif;
  line-height: 1.6; /* Structure et Confort (On garde les bonnes idées de l'ancien) */
  overflow-x: hidden; /* Sécurité indispensable pour éviter les glissements horizontaux */
  background-color: #1a1a1a !important; 
  border: 1px solid #A0785A; /* Un doré plus terreux, très artistique */
}

section {
  padding: 40px 0;
}

a {
  text-decoration: none; /* On enlève les traits de soulignement moches */
  color: inherit; /* Le lien prend la couleur de son texte */
  transition: 0.3s; /* Toujours une transition douce */
}

.container {
  max-width: 1100px;
  width: 95vw;
  margin: 0 auto;
  padding: 0 20px;
  /*border: 1px solid #A0785A; *//* Un doré plus terreux, très artistique */
}

/* =====================================================================================
   I GROUPE HERO - L'Accueil du Palais
   ======================================================================================== */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  margin: 0;
  background: url("../images/hai-me-con.jpg") center/cover no-repeat;
  color: white;
}
/* L'overlay sombre pour que vos textes brillent comme des diamants */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2; /* Passe au-dessus de l'overlay */
  max-width: 800px;
}

.hero-title {
  color: #ffffff; /* On passe au blanc pur pour trancher sur le fond sombre */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Une ombre légère pour donner de la profondeur */
  /*font-size: 1.8rem; /* On affirme la puissance du message */
  font-size: 1.4rem;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 30px;
  color: #ffffff;
}

.hero-trust {
  margin-top: 20px;
  font-weight: 500;
  /*color: #ffffff;*/
  letter-spacing: 0.5px;
  font-size: 1.2rem; /* On sort du minuscule pour être lisible */
  color: rgba(255, 255, 255, 0.9); /* Un blanc soyeux, très doux */
  margin-top: 30px;
  letter-spacing: 0.5px;
}
.hero-trust p {
  font-size: 0.9rem;
}
/* ============================================================
   II TYPOGRAPHIE ROYALE - Titres et Paragraphes
   ============================================================ */
/* Règle Générale pour les Titres */
h1,
h2,
h3 {
  font-family: "Cinzel", serif; /* Prestige et Art */
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.3;
  color: #1a1a1a;
}
/* Règle Générale pour les Textes */
p {
  font-family: "Cormorant Garamond", serif; /* Élégance classique */
  font-size: 1.35rem;
  line-height: 1.6;
  color: #222;
}

/* --- Sections Spécifiques --- */
/* Titres de Sections (Intro, Galerie, Catégories, Commande) */
.intro-title,
.gallery-title,
.category-title,
.order-title,
.testimonials-title {
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-align: center;
}

.intro h2 {
  color: white;
}
/* Sous-titres et Textes d'accompagnement */
.intro-text,
.gallery-subtitle,
.category-subtitle,
.order-subtitle {
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
  color: #f9f4f4;
}
.intro-text p {
  color: rgba(245, 245, 245, 0.897);
}

.gallery-subtitle {
  font-weight: 600;
}

/* Blocs de Texte (Processus et Étapes) */
.process-text h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}
.category-card {
  text-decoration: none !important; /* Le "!" est l'ordre suprême qui écrase tout */
}
.step h3,
.category-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  text-align: center;
  text-decoration: none !important;
}

.step p,
.category-card p {
  font-size: 1rem;
  color: #666;
  text-align: center;
  line-height: 1.5;
}

/* Témoignages et Mots-clés */
.testimonial p {
  font-style: italic;
  font-weight: 500;
  margin-bottom: 15px;
}

.mot-cle p {
  font-size: 1.2rem;
  font-weight: bold;
  border: 1px solid #d4af37; /* Or signature */
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  color: #262424;
}

/* Footer */
footer p {
  color: white;
  transition: 0.3s;
}

footer p:hover {
  background:#A0785A;
  color: #2b2b2b;
  padding: 0px;
}
.container-footer {
  /*max-width: 1100px;*/
  padding-top:40px;
  padding-bottom:40px; 
  margin: 0 auto;
  padding-left: -50px;
  border: 1px solid #A0785A; /* Un doré plus terreux, très artistique */
}

/* ============================================================
  III  ÉCRIN DE L'ARTISTE - Grilles et Images
   ============================================================ */
/* --- Conteneurs de Grilles (Desktop) --- */
.gallery-grid,
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 40px auto;
}
.process-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
}
/* --- Style Universel des Images --- */
.gallery-grid img,
.category-card img,
.process-image img,
.animal img {
  width: 100%;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}
/* Spécificités des Carrés (Galerie et Catégories) */
.gallery-grid img,
.category-card img {
  aspect-ratio: 1/1;
}
/* --- Effets de Prestige (Hover) --- */
.gallery-grid img:hover,
.category-card:hover,
.animal img:hover {
  transform: translateY(-8px) scale(1.02);
  cursor: pointer;
  filter: brightness(1.1);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3); /* Ombre Or délicate */
}
/* --- Le Sanctuaire Lightbox (Agrandissement) --- */
#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border: 8px solid white;
  border-radius: 8px;
  animation: zoomIn 0.3s ease;
  box-shadow:
    0 0 25px rgba(0, 0, 0, 0.5),
    0 4px 15px #d4af37;
}
@media (max-width: 768px) {
  .gallery-grid,
  .category-grid,
  .process-container,
  .testimonials-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 25px !important;
    padding: 0 20px !important;
  }

  .gallery-grid img,
  .category-card img {
    max-width: 320px !important;
    height: auto !important;
  }

  .process,
  .gallery,
  .category,
  .order {
    padding: 40px 15px;
  }
}
/* ============================================================
   RECADRAGE DES TÉMOIGNAGES (Le Correctif Royal)
   ============================================================ */
.testimonials-grid {
  display: flex !important;
  flex-direction: row !important; /* Force l'alignement côte à côte */
  justify-content: center !important;
  align-items: stretch !important; /* Pour qu'ils aient tous la même hauteur */
  gap: 30px !important;
  max-width: 1100px;
  margin: 40px auto !important;
  text-align: center !important; /* Centre les textes à l'intérieur */
}

.testimonial {
  flex: 1 !important; /* Chaque témoignage prend 1/3 de la largeur */
  background: rgba(255, 255, 255, 0.5); /* Un léger fond pour les distinguer */
  padding: 20px;
  border-radius: 10px;
}

.testimonials-title {
  text-align: center !important; /* On recentre le titre au-dessus de la grille */
  width: 100%;
  display: block;
  margin-bottom: 40px;
}
/* Et pour l'iPhone (On les rempile proprement) */
@media (max-width: 768px) {
  .testimonials-grid {
    flex-direction: column !important;
  }
}
/* ============================================================
   NAVIGATION & BOUTONS - La Voix du Royaume
   ============================================================ */
/* --- Barre de Navigation (PC) --- */

/* Conteneur pour le menu et la langue à droite */

.header-top {
    display: flex;
    justify-content: space-between; /* Pousse le logo à gauche et le menu à droite */
    align-items: center;
    width: 100%;
}




/* Le Bazooka CSS : Priorité absolue */
.header-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    width: auto !important;
    margin-left: auto !important; /* Force le bloc vers la droite */
}

.language-switcher {
    display: block !important;
    text-align: right !important;
    width: 100% !important;
    margin-bottom: 5px !important;
    padding-right: 0 !important;
}

/* On cible le conteneur pour forcer l'étalement */
.header-top .header-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    width: 100% !important; /* Force l'occupation de l'espace */
    min-width: 200px !important; /* Donne un espace minimal pour respirer */
    margin-left: auto !important;
    flex: 1 !important; /* Force l'expansion */
}


/* Le conteneur principal */
.header-right {
    display: flex !important;
    flex-direction: column !important; /* Empile le switcher au-dessus du menu */
    align-items: flex-end !important;   /* Aligne tout à droite */
}

/* La maison du switcher */


/* La maison de la nav */
.nav-wrapper {
    display: flex;
}

/* 1. On s'assure que le conteneur parent ne bloque pas */
.header-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important; /* Force tout le contenu à droite */
    width: 100% !important;
}


.header-right {
    display: flex !important;
    flex-direction: row !important; /* On met tout sur la même ligne */
    align-items: center !important; /* Tout le monde au même niveau vertical */
    justify-content: flex-end !important; /* Tout à droite */
    gap: 10px !important; /* Un espace élégant entre le menu et le FR | EN */
}




/* 2. On cible précisément votre switcher */
.language-switcher{
    text-align: right !important;
    margin-left: auto !important; /* Pousse le bloc vers la droite */
    display: flex !important;
    width: auto !important;
}

.language-switcher a {
    padding: 0 10px !important; /* 0 en haut/bas, 10px à gauche/droite */
    display: inline-block;      /* Pour que le padding soit bien pris en compte */
}

.switcher-wrapper {
    margin-top: 0px; /* Espace entre FR/EN et le menu */
    padding-right: 20px;
    
}

.switcher-wrapper a{
   color: white;
   text-decoration: none;
   font-size: 18px;
  letter-spacing: 1px;
  opacity: 0.85;
  transition: 0.3s;
  
    
}

.switcher-wrapper a:hover {
  color: #c9a24a;
  opacity: 1;
}



/* Ajustement du menu */
.nav a {
    margin-left: 10px;      /* Espacement entre vos liens */
}

nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  padding-right: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 0.6px;
  opacity: 0.85;
  transition: 0.3s;
}

nav a:hover {
  color: #c9a24a;
  opacity: 1;
}
/* --- Le Bouton Prestige (CTA Navigation) --- */
.nav .cta {
  color: #ffffff;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px; /* Arrondi élégant */
  padding: 8px 22px;
  font-family: "Tenor Sans", sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  display: inline-block;
}

.nav .cta:hover {
  background-color: #d4af37; /* Se remplit d'Or */
  color: #1a1a1a;
  border-color: #d4af37;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.menu-toggle {
  order: 2; /* Se place après le logo */
  margin-left: auto; /* Se pousse tout à droite */
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 1001;
  display: none; /* PAR DÉFAUT : On le cache (PC) */
}
/* --- BOUCLIER MOBILE (Menu Burger & iPhone) --- */

/* 1. RÈGLE MOBILE (jusqu'à 768px) */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; 
    }

    .nav {
        display: none; 
        flex-direction: column;
        width: 100%;
        background-color: #1a1a1a;
        position: absolute;
        top: 70px;
        left: 0;
        z-index: 1000;
        padding: 30px 10px;
        gap: 20px;
    }

    .nav.active {
        display: flex !important;
        text-align: center;
    }

    .nav.active a {
        font-size: 18px;
        width: 100%;
    }

    .nav.active .cta {
        width: 80%;
        margin: 10px auto;
        font-size: 16px;
    }
} /* <--- On ferme proprement la règle mobile ici */



/* 2. RÈGLE GRAND ÉCRAN (à partir de 992px) */
@media (min-width: 992px) {
    .menu-toggle { 
        display: none !important; 
    }
}

/* 3. STYLES GÉNÉRAUX (pour tout le monde, en dehors des @media) */
.hero-btn, .order-btn, .gallery-btn {
    width: 100%;
    max-width: 300px;
}
.gallery-btn,
.order-btn,
.intro-btn,
.hero-btn,
.commander-btn,
.category-btn,
.hero-btn,
.process-btn {
  /*display: inline-flex; /*tous les boutons sauf le hero-btn ajustés avec le texte et alignés à gauche  */
  /*display:flex;/* ca affiche largeur de la page*/
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /*display: inline-block; /* tous les boutons ajustés aec le texte et aligne à gauche */
  background: #f5f5f5;
  color: #000;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  border: 2px solid #daa520;
  letter-spacing: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 1.2rem;
  /*padding: 18px 40px; 03-05-26*/
  margin-top: 30px;
  gap: 12px;
  /*padding: 14px 32px;
  /*text-transform: uppercase;  /* Un ton plus impérial */
  /*border: 1px solid transparent;*/
}
/* version 1*/
.command-btn {
  font-size: 1.1rem;
  letter-spacing: 1.6px;
}
/* version 2*/
.commander-btn {
  background: transparent;
  border: 1px solid #d4af37; /* Une fine ligne d'or */
  color: #d4af37; /* Texte doré */
  padding: 8px 18px;
  transition: all 0.3s ease; /* Pour un effet de survol doux */
  margin-top: 40px;
}

.commander-btn {
  padding: 10px 20px; /* Plus petit */
  font-size: 0.9rem; /* Plus fin */
  letter-spacing: 1px; /* Un peu d'air entre les lettres */
  margin-top: 25px; /* On laisse respirer le texte au-dessus */
}

.commander-btn {
  display: inline-block;
  margin-top: 60px; /* On double l'espace pour supprimer la confusion */
  padding: 12px 25px; /* On affine un peu la taille pour plus de grâce */
  border: 1px solid #d4af37; /* Votre élégante bordure dorée */
  background: transparent;
  color: #d4af37;
  text-decoration: none;
  transition: 0.3s;
}

/* 03-05-2026 */

.button-area {
  margin-top: 80px; /* L'espace de sécurité pour éviter le "rối mắt" */
  width: 100%; /* Prend toute la largeur pour faciliter le centrage */
  display: flex; /* Utilise la puissance du Flexbox */
  justify-content: center; /* Centre le bouton horizontalement */
}

.commander-btn {
  /* Vos styles dorés et élégants restent ici */
  display: inline-block;
  padding: 12px 25px;
  border: 1px solid #d4af37;
  background: transparent;
  color: #d4af37;
  text-decoration: none;
}
.commander-btn:hover {
  background: #d4af37; /* Effet de lumière au survol */
  color: #000;
}
/* --- L'Effet de Lumière au Survol --- */
.gallery-btn:hover,
.order-btn:hover,
.intro-btn:hover,
.hero-btn:hover,
.commander-btn:hover,
.category-btn:hover,
.hero-btn:hover,
.process-btn:hover {
  background-color: #daa520; /* Le bouton s'illumine d'or au survol */
  color: #1a1a1a; /* Le texte passe en noir pour rester lisible */
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4); /* Un halo doré très subtil */
  transform: scale(1.02); /* Il grandit très légèrement, comme un soupir */
}
/* ============================================================
   STRUCTURE ROYALE - Header, Footer & Commande
   ============================================================ */
header {
  /* padding: 20px;*/
  background-color: #2b2b2b;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 20px 0; /* On libère les côtés du header lui-même */
}
header {
  /* padding: 20px 40px 30px; effet flottant* */
  padding: 20px;
  background-color: #2b2b2b;
  color: white;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


header .container {
  max-width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.tagline {
  margin-top: 5px; /* Crée l'espace avec le haut */
  font-size: 20px;
  /*opacity: 0.8;*/
  /*max-width: 600px;*/
  max-width: 600px;
  color: white;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 1s ease forwards;
  font-style: italic;
  margin-left: 20px;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 0.8;
    transform: translateY(0);
  }
}

.logo {
  font-family: "Cinzel", serif;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex: 1; /* Le logo prend l'espace à gauche */
  text-align: left;
  color: white;
  padding-left: 20px;
}
.logo a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: baseline;
}
.logo-art {
  font-size: 0.7em;
  margin-left: 15px;
  font-weight: 300;
  letter-spacing: 4px;
}
.order-steps {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1100px;
  margin: 40px auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.step-number {
  font-size: 1.6rem;
  font-weight: bold;
  color: #d4af37; /* Touche d'Or */
  margin-bottom: 10px;
}
.order-page {
  /* -- Le Formulaire de Commande --- */
  max-width: 800px;
  margin: 60px auto;
  padding: 40px 25px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.order-form input,
.order-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}
.order-form textarea {
  height: 150px;
}
.order-form input:focus,
.order-form textarea:focus {
  border-color: #d4af37;
  outline: none;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}
.order-form button {
  background: #111;
  color: #fff;
  padding: 16px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
#lightbox {
  /* --- 4. Lightbox & Finitions --- */
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #d4af37;
  font-size: 50px;
  cursor: pointer;
}
footer {
  text-align: center;

  background-color: #2b2b2b;
  color: white;
  margin-top: 20px;
  Margin-bottom:20px;
  border: 1px solid #A0785A; /* Un doré plus terreux, très artistique */
}








/* --- 📱 ADAPTATION IPHONE FINALE --- */
@media (max-width: 768px) {
  .order-steps {
    flex-direction: column;
  }
  .tagline {
    font-size: 20px;
  }
  .header-top {
    justify-content: center;
    gap: 15px;
  }
}
/* ============================================================
   IV PAGE MEMORY - Le Sanctuaire
   ============================================================ */
.memory-sanctuary {
  background-color: #f4f7ff; /* On garde la cohérence  */
  /*padding-bottom: 60px;*/
  padding-bottom: 10px;
}
/* --- LE SANCTUAIRE MEMORY --- */
.memory-sanctuary {
  background-color: #f4f7ff; /* Votre bleu-gris très léger et chic[cite: 2] */
}
.memory-info {
  padding: 15px;
  background: white;
  border-radius: 0 0 12px 12px;
  margin-top: -12px; /* Pour fusionner proprement avec l'image arrondie */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.memory-info h3 {
  font-size: 1.1rem;
  color: var(--gold); /* On utilise le variable Or Antique ![cite: 2] */
  margin-bottom: 5px;
}
/* La Bande Horizontale Sombre */
.memory-strip {
  background-color: #2b2b2b; /* Même ton que votre header[cite: 2] */
  padding: 15px 0;
  border-bottom: 2px solid #daa520; /* Votre Or Antique[cite: 2] */
  margin-bottom: 0px;
}

.strip-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
}

.memory-thumb {
  width: 240px;
  height: 160px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s ease;
}

.memory-thumb:hover,
.memory-thumb.active {
  border-color: #daa520; /* Éclat d'or au survol[cite: 2] */
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}
/*
.focus-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); /* Ombre douce pour l'effet "flottant" 
}*/
.focus-image img {
  max-height: 65vh; /* vh = hauteur de l'écran. 65% de l'écran maximum ! */
  width: auto; /* Elle garde ses proportions, elle ne s'écrase pas */
  object-fit: contain; /* Elle reste entière dans son cadre */
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); /* Ombre douce pour l'effet "flottant" */
}
/*  03-05-26 */
/* Le conteneur de texte pour tout centrer */
.focus-content {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centre verticalement dans le bloc */
  align-items: center; /* Centre horizontalement */
  text-align: center;
}
.focus-content h2 {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.focus-content p {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 15px;
  font-style: italic;
}
.container-relative {
  position: relative; /* Pour positionner les flèches par rapport à la bande */
  display: flex;
  align-items: center;
  padding: 0 40px; /* Espace pour les flèches */
}

.strip-nav {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.strip-nav:hover {
  color: #daa520; /* Votre Or Antique */
  background: rgba(0, 0, 0, 0.8);
}

.strip-nav.prev {
  left: 10px;
}
.strip-nav.next {
  right: 10px;
}

/* On cache la barre de défilement moche pour un look plus pro */
.strip-wrapper {
  scrollbar-width: none; /* Firefox */
}
.strip-wrapper::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
/*===== ajout pour regler le pb d'affichage ====================*/
/* On s'assure que le conteneur ne cache pas la première image */
.strip-wrapper {
  display: flex !important;
  justify-content: flex-start !important; /* On aligne à gauche */
  padding-left: 50px; /* On laisse de la place pour la flèche de gauche ! */
  padding-right: 50px;
  gap: 15px;
  overflow-x: auto;
  width: 100%;
}
.artist-commitment {
  padding: 60px 0; /* On crée de l'espace pour combler le vide */
  text-align: center;
  background-color: #f9f9f9; /* Un gris très léger pour séparer du blanc */
  border-top: 1px solid #eee;
}

.commitment-content .poetry-line {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-style: italic;
  color: #333;
  margin-bottom: 15px;
}

.commitment-content .shipping-line {
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #daa520; /* Votre Or Antique pour la rassurance */
  text-transform: uppercase;
}

/* Petit effet au survol */
.artist-commitment:hover .poetry-line {
  color: #000;
  transition: 0.5s;
}

#portrait-title {
  font-family: "Cinzel", serif;
  letter-spacing: 4px;
  color: #1a1a1a;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Effet de profondeur de gravure */
  text-transform: uppercase;
}

/*marbre noir*/
.artist-commitment {
  background: #1a1a1a; /* Marbre Noir comme le socle d'une statue */
  color: #daa520;
  padding: 30px;
  /*border-top: px solid #daa520;*/
}

.commitment-content .poetry-line {
  color: #ffffff; /* Le blanc ressort sur le marbre noir */
  font-size: 1.2rem;
}

/* Remplacez votre section .memory-focus par ceci pour le test Noir */
.memory-focus {
  background-color: #1a1a1a; /* Noir profond */
  background-image: linear-gradient(
    135deg,
    #1a1a1a 25%,
    #222 25%,
    #222 50%,
    #1a1a1a 50%,
    #1a1a1a 75%,
    #222 75%,
    #222 100%
  );
  background-size: 400px 400px; /* Veinage géant */
  padding: 60px 0;
  color: white; /* Le texte de droite devient blanc */
}

#portrait-desc {
  color: #ffffff; /* Gris clair pour la lecture sur fond noir */
}

.focus-image img {
  max-height: 65vh; /* vh = hauteur de l'écran. 65% de l'écran maximum ! */
  width: auto; /* Elle garde ses proportions, elle ne s'écrase pas */
  object-fit: contain; /* Elle reste entière dans son cadre */
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); /* Ombre douce pour l'effet "flottant" */
}

.focus-grid {
  background: #1a1a1a;
  border: 2px solid #daa520;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center; /* Aligne le texte verticalement avec le milieu de l'image */
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
/*08-05-2026*/
/* ============================================================
   TYPOGRAPHIE ROYALE - Mise à jour de Luminosité
   ============================================================ */

/* 1. Les titres doivent rayonner */
h1,
h2,
h3 {
  color: #daa520 !important; /* Votre Or signature pour tous les titres */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* 2. Les paragraphes (le fameux blablabla) */
p {
  color: #f5f5f5 !important; /* Un blanc cassé très doux, lisible sans éblouir */
  font-size: 1.35rem; /* On garde votre taille généreuse */
}

/* 3. Les textes secondaires dans les grilles et étapes */
.step p,
.category-card p,
.intro-text,
.gallery-subtitle {
  color: #e0e0e0 !important; /* Gris très clair pour les descriptions */
}

/* 4. Le Correctif spécifique pour la section "ILS MONT FAIT CONFIANCE" */
.testimonial p {
  color: #1a1a1a !important; /* Comme le fond des témoignages est gris clair, 
                                  le texte ici doit rester sombre pour trancher ! */
  font-style: italic;
}

/* ============================================================
   HARMONISATION DES BLOCS (Processus & Témoignages)
   ============================================================ */

/* 1. On unifie les blocs du processus (les rendre moins "électriques") */
.step {
  background: rgba(
    255,
    255,
    255,
    0.05
  ) !important; /* Un voile blanc très léger */
  border: 1px solid rgba(218, 165, 32, 0.3); /* Une fine bordure Or discrète */
  backdrop-filter: blur(5px); /* Effet verre dépoli chic */
  color: #f5f5f5 !important;
}

.step h3 {
  color: #daa520 !important; /* L'Or pour les titres d'étapes */
}

/* 2. On fait briller les témoignages (le gris doit disparaître) */
.testimonial {
  background: rgba(218, 165, 32, 0.1) !important; /* Un fond "poussière d'Or" */
  border: 1px solid #daa520; /* Bordure Or affirmée */
  padding: 30px;
}

.testimonial p {
  color: #ffffff !important; /* Texte blanc pur pour une lecture parfaite */
  font-size: 1.2rem;
  line-height: 1.6;
}

/* 3. Les noms des clients en Or éclatant */
.testimonial span,
.testimonial strong,
.testimonial em {
  color: #daa520 !important;
  font-family: "Cinzel", serif;
  font-style: normal;
  letter-spacing: 1px;
}

/* --- LE BOUTON PRESTIGE RÉINVENTÉ --- */
.commander-btn,
.gallery-btn,
.order-btn,
.hero-btn,
.intro-btn,
.process-btn {
  background: rgba(
    26,
    26,
    26,
    0.8
  ) !important; /* Fond noir profond semi-transparent */
  color: #daa520 !important; /* Texte Or signature */
  border: 1px solid #daa520 !important; /* Fine bordure d'or */
  padding: 12px 30px !important;
  font-family: "Cinzel", serif !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 5px !important; /* Angles plus droits, plus sérieux */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Ombre portée pour le relief */
  transition: all 0.4s ease;
  cursor: pointer;
}

/* --- L'EFFET DE LUMIÈRE ROYALE AU SURVOL --- */
.commander-btn:hover {
  background: #daa520 !important; /* Le bouton se remplit d'Or */
  color: #1a1a1a !important; /* Le texte devient noir pour le contraste */
  box-shadow: 0 0 20px rgba(218, 165, 32, 0.6); /* Halo doré mystérieux */
  transform: translateY(-3px); /* Légère ascension impériale */
}

/* ============================================================
   NETTOYAGE DU SANCTUAIRE (Ligne blanche indésirable)
   ============================================================ */

.memory-sanctuary,
.memory-focus,
.artist-commitment {
  border: none !important; /* On supprime toutes les bordures parasites */
  outline: none !important; /* On enlève les contours */
  margin-top: -1px !important; /* On fait chevaucher légèrement pour souder les blocs */
  background-color: #1a1a1a !important; /* On force le noir partout */
}

/* Si la ligne vient de la séparation du Header ou du Footer */
header,
footer {
  border: none !important;
  box-shadow: none !important; /* On enlève l'ombre qui peut créer un reflet blanc */
}
/* no Or 09-05-2026 */

.step p,
.testimonial p {
  color: #fdfdfd !important; /* Un blanc cassé pur, très lisible */
}

h1,
h2,
h3 {
  color: #fdfdfd !important; /* Même les titres redeviennent blancs pour plus de classe */
  letter-spacing: 2px;
}

/* --- LE BOUTON PREMIUM-CHIC --- */
.commander-btn,
.gallery-btn,
.order-btn,
.hero-btn,
.intro-btn,
.process-btn {
  background: rgba(
    255,
    255,
    255,
    0.03
  ) !important; /* Presque invisible, effet verre */
  color: #fdfdfd !important; /* Texte blanc soie, très pur */
  border: 1px solid rgba(218, 165, 32, 0.4) !important; /* Contour Or très fin */
  padding: 14px 35px !important;
  font-family: "Cinzel", serif !important;
  text-transform: uppercase;
  letter-spacing: 3px; /* Plus d'espace pour plus de luxe */
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Animation fluide et noble */
  position: relative;
  overflow: hidden;
  cursor: pointer;
  font-size: 1.2;
}

/* --- L'EFFET AU SURVOL (Le moment "Wow" pour les amies) --- */
.commander-btn:hover {
  color: #daa520 !important; /* Le texte devient Or */
  border: 1px solid #daa520 !important; /* La bordure s'illumine */
  background: rgba(
    218,
    165,
    32,
    0.08
  ) !important; /* Une légère lueur dorée interne */
  box-shadow: 0 0 20px rgba(218, 165, 32, 0.2); /* Un halo de lumière très discret */
  transform: translateY(-2px); /* Le bouton semble s'élever */
}

/* --- HARMONISATION DES TÉMOIGNAGES --- */
.testimonial p {
  color: #fdfdfd !important; /* Le texte passe en blanc soie pur */
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic; /* Gardons l'italique pour le côté "confidence" */
}

.testimonial span,
.testimonial strong {
  color: #daa520 !important; /* L'Or ne reste que pour les noms */
  display: block;
  margin-top: 15px;
  font-family: "Cinzel", serif;
  font-weight: bold;
  letter-spacing: 1px;
}

/* La bordure du pavé : discrète pour ne pas alourdir */
.testimonial {
  border: 1px solid rgba(218, 165, 32, 0.2) !important;
  background: rgba(255, 255, 255, 0.02) !important;
  padding: 25px;
}

/* --- PURIFICATION ROYALE : TOUT EN BLANC SOIE --- */

/* 1. Tous les titres et textes (y compris Yann, Mila, etc.) */
h1,
h2,
h3,
p,
span,
strong,
em {
  color: #fdfdfd !important; /* Le blanc soie pour tout le monde */
  background-image: none !important; /* On enlève d'éventuels dégradés or */
}

/* 2. Les contours des pavés (Témoignages et Étapes) */
.step,
.testimonial,
.category-card {
  border: 1px solid rgba(255, 255, 255, 0.15) !important; /* Liseré blanc très discret */
  background: rgba(255, 255, 255, 0.02) !important;
}

/* 3. Les boutons "Édition Limitée" */
.hero-btn,
.intro-btn,
.order-btn,
.commander-btn {
  border: 1px solid #fdfdfd !important;
  color: #fdfdfd !important;
  background: transparent !important;
  letter-spacing: 3px;
  font-size: 1rem;
}

/* 4. L'effet au survol (Sobre et élégant) */
.hero-btn:hover,
.commander-btn:hover {
  background: #fdfdfd !important;
  color: #1a1a1a !important;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* --- PURIFICATION DU TITRE DES ÉTAPES --- */
.step h3 {
  color: #fdfdfd !important; /* On force le blanc soie sur le titre doré */
  font-family: "Cinzel", serif !important;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* --- DOMPTAGE FINAL POUR LE TEST "SANS OR" --- */

/* On cible spécifiquement les titres d'étapes vus dans l'inspecteur */
.step h3,
.order-steps h3 {
  color: #fdfdfd !important;
}

/* On cible les signatures des témoignages (Yann, Mila, Mamy Yessica) */
.testimonial span,
.testimonial strong {
  color: #fdfdfd !important;
}

/* On s'assure que le bouton de commande est aussi pur que la neige */
.order-btn,
.commander-btn {
  border-color: #fdfdfd !important;
  color: #fdfdfd !important;
}
.hero-btn {
  font-size: 1rem;
}
/* 10-05-2026
/* On cible le conteneur principal */
.order-page {
  background-color: white; /* On s'assure que le fond est blanc */
  color: #000000; /* On force la couleur du texte en noir pour toute la zone */
}
/* On s'assure que les titres (qui ont parfois des couleurs par défaut) suivent aussi */
.order-page h1,
.order-page p {
  color: #000000;
}

/* ==========================================================================
   ROYAUME DU RESPONSIVE - PROTECTION IPHONE & ÉCRANS MOBILES
   ========================================================================== */
@media (max-width: 768px) {
    
    /* 1. On adapte le Sanctuaire global */
    .memory-sanctuary {
        padding: 15px 0 !important;
    }

    /* 2. Domptage de la bande horizontale de miniatures */
    .memory-strip {
        padding: 10px 5px !important;
        margin-bottom: 20px !important;
    }
    
    .strip-wrapper {
        gap: 10px !important; /* On resserre un peu les miniatures */
        padding: 5px 0 !important;
    }
    
    .memory-thumb {
        width: 70px !important;  /* Légèrement plus petites pour tenir sur un écran de téléphone */
        height: 70px !important;
    }
    
    /* On ajuste les flèches de navigation pour qu'elles ne mangent pas l'espace */
    .strip-nav {
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
    }

    /* 3. S'empiler avec grâce : Le Grand Portrait et son texte */
    .memory-showcase {
        flex-direction: column !important; /* Magie FLEX ! On empile le texte SOUS le portrait */
        align-items: center !important;
        gap: 25px !important;
        padding: 0 15px !important;
    }

    /* Le cadre du grand portrait prend toute la largeur disponible */
    .portrait-frame {
        width: 100% !important;
        max-width: 340px !important; /* Taille idéale pour l'écran de l'iPhone 15 */
        margin: 0 auto !important;
    }
    
    #main-portrait {
        max-height: 400px !important; /* On évite qu'il soit géant sur mobile */
        object-fit: contain !important;
    }

    /* 4. Alignement impérial du texte descriptif */
    .portrait-details {
        width: 100% !important;
        text-align: center !important; /* Tout le texte est centré proprement sur mobile */
        padding: 0 10px !important;
    }
    
    .portrait-details h2 {
        font-size: 1.8rem !important; /* Titre un peu plus compact pour ne pas déborder */
        margin-bottom: 15px !important;
        letter-spacing: 2px !important;
    }
    
    .portrait-details p {
        font-size: 1rem !important; /* Lecture confortable sur smartphone */
        line-height: 1.6 !important;
    }
}

/* ==========================================================================
   ROYAUME DU RESPONSIVE - TRANSFORMATION CARROUSEL & PORTRAIT IPHONE
   ========================================================================== */
@media (max-width: 768px) {
    
    /* 1. On donne de l'air au sanctuaire */
    .memory-sanctuary {
        padding: 10px 0 !important;
    }

    /* 2. Métamorphose du Carrousel (La bande de miniatures) */
    .memory-strip {
        padding: 5px 40px !important; /* On laisse de la place sur les côtés pour les flèches ! */
        margin-bottom: 25px !important;
        width: 100% !important;
    }
    
    .strip-wrapper {
        gap: 8px !important; /* On resserre les petites vignettes */
        padding: 5px 0 !important;
        overflow-x: auto !important; /* Permet aussi de glisser avec le doigt ! */
    }
    
    /* On rétrécit les ronds pour qu'ils tiennent sur l'écran du téléphone */
    .memory-thumb {
        width: 55px !important;  
        height: 55px !important;
        border-width: 1px !important;
    }
    
    /* Repositionnement des flèches pour ne pas qu'elles écrasent les vignettes */
    .strip-nav {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.9rem !important;
        background: rgba(0, 0, 0, 0.6) !important; /* Un fond sombre pour bien les détacher */
        border: 1px solid #daa520 !important;
    }
    
    .strip-nav.prev { left: 5px !important; }
    .strip-nav.next { right: 5px !important; }

    /* 3. Alignement du Grand Portrait et du Texte */
    .memory-showcase {
        flex-direction: column !important; /* On empile : le portrait en haut, le texte en bas */
        align-items: center !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }

    /* Le cadre du portrait s'adapte à la largeur de l'iPhone */
    .portrait-frame {
        width: 100% !important;
        max-width: 320px !important; 
        margin: 0 auto !important;
        padding: 10px !important;
    }
    
    #main-portrait {
        max-height: 350px !important; /* On évite qu'il prenne tout l'écran en hauteur */
        object-fit: contain !important;
    }

    /* 4. Sublimation du texte descriptif doré */
    .portrait-details {
        width: 100% !important;
        text-align: center !important; /* On centre tout le texte pour le mobile */
        padding: 0 10px !important;
    }
    
    .portrait-details h2 {
        font-size: 1.6rem !important; /* Titre plus compact */
        margin-bottom: 10px !important;
        letter-spacing: 2px !important;
    }
    
    .portrait-details p {
        font-size: 0.95rem !important; /* Lecture confortable sur smartphone */
        line-height: 1.5 !important;
    }
}



/* ==========================================================================
   ROYAUME DU RESPONSIVE - TRANSFORMATION FINALE PAGE MEMORY (PROPRE & CIBLÉE)
   ========================================================================== */
@media (max-width: 768px) {
    
    /* 1. On donne de l'air au sanctuaire global */
    .memory-sanctuary {
        padding: 10px 0 !important;
    }

    /* 2. Adaptation du Carrousel (Déjà obéissant, on le sécurise) */
    .memory-strip {
        padding: 5px 40px !important; 
        margin-bottom: 25px !important;
        width: 100% !important;
    }
    
    .strip-wrapper {
        gap: 8px !important; 
        padding: 5px 0 !important;
        overflow-x: auto !important; 
    }
    
    .memory-thumb {
        width: 55px !important;  
        height: 55px !important;
        border-width: 1px !important;
    }
    
    .strip-nav {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.9rem !important;
        background: rgba(0, 0, 0, 0.6) !important; 
        border: 1px solid #daa520 !important;
    }
    
    .strip-nav.prev { left: 5px !important; }
    .strip-nav.next { right: 5px !important; }

    /* 3. CAPITULATION DES REBELLES : Domptage de la grille de focus */
    .focus-grid {
        display: flex !important;
        flex-direction: column !important; /* On force l'empilement : Image en haut, texte en bas */
        align-items: center !important;
        gap: 25px !important;
        padding: 0 15px !important;
        width: 100% !important;
    }

    /* Redimensionnement chirurgical du grand portrait pour iPhone 15 */
    .focus-image {
        width: 100% !important;
        max-width: 290px !important; /* Ne dépasse jamais la largeur de l'écran */
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
    }

    #main-portrait {
        width: 100% !important;
        max-height: 340px !important; /* Évite que le dessin ne prenne tout l'écran en hauteur */
        object-fit: contain !important;
        border: 1px solid rgba(218, 165, 32, 0.3) !important; /* Petit liseré doré subtil autour de l'œuvre */
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
    }

    /* 4. Centrage absolu du texte descriptif et du bouton */
    .focus-content {
        width: 100% !important;
        text-align: center !important; /* Aligne tout le bloc au milieu */
        padding: 0 10px !important;
    }

    #portrait-title {
        font-size: 1.6rem !important; /* Titre plus élégant sur mobile */
        margin-top: 10px !important;
        margin-bottom: 12px !important;
        text-align: center !important;
        display: block !important;
    }

    #portrait-desc {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        text-align: center !important;
        display: block !important;
        margin: 0 auto 20px auto !important;
        max-width: 100% !important;
    }

    /* Ajustement du bouton "Commander" pour le pouce sur mobile */
    .button-area {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .commander-btn {
        width: 100% !important;
        max-width: 280px !important; /* Joli bouton compact et centré */
        padding: 12px 15px !important;
        font-size: 0.9rem !important;
        text-align: center !important;
    }
}


.language-switcher a {
    text-decoration: none;
    color: #ccc; /* Couleur par défaut */
}

.language-switcher a.active {
    color: #fff; /* Couleur quand c'est actif */
    font-weight: bold;
    text-decoration: underline; /* Ou tout autre style de votre choix */
}