/* ======================================================= */
/* ================== BASE GLOBALE ================== */
/* ======================================================= */
body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  background-color: #f8f8f8;
  background-image: url("photos-divers/deco.jpg");
  background-repeat: repeat;
  background-position: top center;
  background-attachment: fixed;
  color: #333;
}
    header {
      text-align: center;
      padding: 60px 20px 30px;
      background: linear-gradient(to bottom, #2c1a29, #4b3253);
      border-bottom: 1px solid ##2c1a29;
    }
    header h1 {
      font-size: 2.4em;
      margin: 0 0 10px;
      font-family: 'Playfair Display', serif;
      font-weight: bold;
      color: #222;
    }
    header h2 {
      font-size: 1.1em;
      font-weight: normal;
      color: #555;
      margin: 0 0 20px;
    }
    .ornement {
  text-align: center;
  margin-top: -20px;
  margin-bottom: 0px;
}

.ornement img {
  height: 32px;
  opacity: 0.7;
}
    

/* ======================================================= */
/* ================== NAVIGATION ================== */
/* ======================================================= */
    .menu-toggle {
      display: none;
      font-size: 1.5em;
      background: none;
      border: none;
      cursor: pointer;
      margin-bottom: 10px;
    }
    nav {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }
    nav > a,
    nav > .dropdown > .dropbtn {
      display: inline-block;
      padding: 6px 16px;
      border: 1px solid #ccc;
      border-radius: 20px;
      background: transparent;
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: all 0.3s ease;
    }
    nav > a:hover,
    nav > .dropdown > .dropbtn:hover {
      background-color: #333;
      color: white;
      border-color: #333;
    }
    .dropdown {
      position: relative;
    }
    .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      background-color: white;
      border: 1px solid #ccc;
      border-radius: 12px;
      min-width: 220px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
      z-index: 1000;
      flex-direction: column;
      align-items: flex-start;
    }
    .dropdown:hover .dropdown-content {
      display: flex;
    }
    .dropdown-content a {
      width: 100%;
      padding: 8px 20px;
      font-size: 0.95em;
      text-align: left;
      text-decoration: none;
      color: #333;
      font-weight: 500;
      border: 1px solid transparent;
      margin: 2px 0;
      border-radius: 20px;
      transition: all 0.2s ease;
    }
    .dropdown-content a:hover {
      background-color: #333;
      color: white;
      border-color: #333;
    }
    .dropdown-title {
      width: 100%;
      padding: 6px 20px;
      font-weight: bold;
      font-family: 'Playfair Display', serif;
      color: #555;
      margin-top: 5px;
      text-align: left;
    }
    .dropdown-content hr {
      margin: 10px 20px;
      border: none;
      border-top: 1px solid #ccc;
    }

/* ======================================================= */
/* ================== RESPONSIVE ================== */
/* ======================================================= */
    @media (max-width: 768px) {

/* ======================================================= */
/* ================== NAVIGATION ================== */
/* ======================================================= */
      nav {
        display: none;
        flex-direction: column;
        align-items: center;
      }
      nav.active {
        display: flex;
      }
      .menu-toggle {
        display: block;
      }
      .dropdown-content {
        position: static;
        border: none;
        box-shadow: none;
        border-radius: 0;
        width: 100%;
        padding: 0;
      }
      .dropdown-content a {
        padding-left: 40px;
        border-radius: 0;
      }
      .dropdown-title {
        padding-left: 40px;
        margin-top: 10px;
      }
    }

/* ======================================================= */
/* ================== ACCUEIL (index.html) ================== */
/* ======================================================= */
    .hero {
      text-align: center;
      margin-bottom: 40px;
    }
    .hero img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .intro {
      max-width: 800px;
      margin: 0 auto 60px;
      padding: 0 20px;
      text-align: center;
      font-size: 1.1em;
      line-height: 1.6;
    }
    .cards {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      max-width: 1200px;
      margin: 0 auto 60px;
      padding: 0 20px;
    }
    .card {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      width: 260px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    
  transition: 0.2s ease;
  text-decoration: none;
  color: inherit;}

.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

    .card img {
      width: 100%;
      height: auto;
      border-bottom: 1px solid #eee;
    }
    .card h3 {
      margin: 15px 10px 5px;
      font-size: 1.1em;
      color: #222;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .card p {
      font-size: 0.95em;
      color: #555;
      padding: 0 15px 20px;
    }
    .card a {
      margin-bottom: 20px;
      color: #444;
      font-weight: bold;
      text-decoration: none;
    }
    .card a:hover {
      text-decoration: underline;
    }

/* ======================================================= */
/* ================== BASE GLOBALE ================== */
/* ======================================================= */
    footer {
      background-color: #111;
      color: #fff;
      text-align: center;
      padding: 30px 20px;
      font-size: 0.9em;
    }
    .socials a {
      margin: 0 10px;
      color: #fff;
      text-decoration: none;
      font-weight: bold;
    }
  
/* === AJOUTS POUR LOGO ET HEADER INLINE === */

/* ======================================================= */
/* ================== HEADER & LOGO ================== */
/* ======================================================= */
.inline-logo-large {
  height: 180px;
  width: auto;
  vertical-align: middle;
}

.header-flex-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.inline-text h1 {
  font-size: 2.8em;
  margin: 0 0 5px;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  color: #222;
}

.inline-text h2 {
  font-size: 1.3em;
  font-weight: normal;
  color: #555;
  margin: 0;
}


/* ======================================================= */
/* ================== RESPONSIVE ================== */
/* ======================================================= */
@media (max-width: 768px) {

/* ======================================================= */
/* ================== HEADER & LOGO ================== */
/* ======================================================= */
  .header-flex-inline {
    flex-direction: column;
    text-align: center;
  }
  

/* ======================================================= */
/* ================== NAVIGATION ================== */
/* ======================================================= */
  #main-nav.active {
    display: flex !important;
  }
}


/* ======================================================= */
/* ================== RESPONSIVE ================== */
/* ======================================================= */
@media (max-width: 768px) {

/* ======================================================= */
/* ================== HEADER & LOGO ================== */
/* ======================================================= */
  .header-flex-inline {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: left;
    gap: 12px;
    flex-wrap: nowrap;
    padding: 0 10px;
  }

  .inline-logo-large {
    height: 100px;
  }

  .inline-text h1 {
    font-size: 1.6em;
    margin: 0;
  }

  .inline-text h2 {
    font-size: 0.95em;
    margin: 0;
  }
}


/* ======================================================= */
/* ================== RESPONSIVE ================== */
/* ======================================================= */
@media (max-width: 768px) {
  


/* ======================================================= */
/* ================== NAVIGATION ================== */
/* ======================================================= */
  #main-nav a,
  #main-nav .dropbtn {
    min-width: 120px;
    text-align: center;
  }
}


/* ======================================================= */
/* ================== RESPONSIVE ================== */
/* ======================================================= */
@media (max-width: 768px) {
  


/* ======================================================= */
/* ================== NAVIGATION ================== */
/* ======================================================= */
  #main-nav a,
  #main-nav .dropbtn {
    display: inline-block;
    min-width: auto;
    width: auto;
    flex: 1 1 auto;
    text-align: center;
    padding: 8px 12px;
  }

  .dropdown-content {
    position: static;
    display: none;
    width: 100%;
  }

  .dropdown:hover .dropdown-content,
  .dropdown .dropbtn:focus + .dropdown-content,
  .dropdown .dropbtn:active + .dropdown-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}


/* ======================================================= */
/* ================== RESPONSIVE ================== */
/* ======================================================= */
@media (max-width: 768px) {
  


/* ======================================================= */
/* ================== NAVIGATION ================== */
/* ======================================================= */
  #main-nav a,
  #main-nav .dropbtn {
    display: inline-block;
    min-width: 100px;
    width: auto;
    flex: 0 1 auto;
    text-align: center;
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #ccc;
  }

  .dropdown-content {
    display: none !important;
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 0;
  }

  .dropdown.active .dropdown-content {
    display: flex !important;
    flex-direction: column;
    align-items: center;
  }
}

/* === MENU HORIZONTAL RESPONSIVE NON-SUPPOSABLE === */
#main-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  overflow-x: auto;
  gap: 12px;
  padding: 10px;
  background-color: #fff;
}

#main-nav a {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 800;
  font-size: 1em;
  color: #f63a7e;
  background-color: transparent;
  border: 2px solid #f63a7e;
  border-radius: 20px;
  padding: 10px 20px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

#main-nav a:hover {
  background-color: #f63a7e;
  color: white;
  border-color: #f63a7e;
}





/* Pour s'assurer qu'aucune règle mobile ne vient casser l'affichage */

/* ======================================================= */
/* ================== RESPONSIVE ================== */
/* ======================================================= */
@media (max-width: 768px) {

/* ======================================================= */
/* ================== NAVIGATION ================== */
/* ======================================================= */
  #main-nav {
    justify-content: flex-start;
  }
}

/* === CORRECTIONS SUPPLÉMENTAIRES === */

/* Empêcher les boutons de s'élargir excessivement */
#main-nav a {
  flex: 0 0 auto;
  min-width: auto;
  max-width: 120px;
  padding: 8px 14px;
  text-align: center;
  white-space: nowrap;
}

/* Supprimer le fond blanc du menu */
#main-nav {
  background-color: transparent;
}

/* Affichage du logo dans un rond */

/* ======================================================= */
/* ================== HEADER & LOGO ================== */
/* ======================================================= */
.inline-logo-large {
  border-radius: 50%;
  overflow: hidden;
}

/* Centrer les boutons même en mobile */

/* ======================================================= */
/* ================== RESPONSIVE ================== */
/* ======================================================= */
@media (max-width: 768px) {

/* ======================================================= */
/* ================== NAVIGATION ================== */
/* ======================================================= */
  #main-nav {
    justify-content: center;
  }

  /* Inverser l’ordre logo/texte en mobile */

/* ======================================================= */
/* ================== HEADER & LOGO ================== */
/* ======================================================= */
  .header-flex-inline {
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
  }

  .inline-logo-large {
    height: 120px;
  }

  .inline-text h1 {
    font-size: 1.8em;
  }

  .inline-text h2 {
    font-size: 1em;
  }
}


/* ======================================================= */
/* ================== RESPONSIVE ================== */
/* ======================================================= */
@media (max-width: 768px) {

/* ======================================================= */
/* ================== NAVIGATION ================== */
/* ======================================================= */
  #main-nav {
    justify-content: center;
  }


/* ======================================================= */
/* ================== HEADER & LOGO ================== */
/* ======================================================= */
  .header-flex-inline {
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
  }

  .inline-logo-large {
    height: 120px;
  }

  /* NE PAS réduire le texte sur mobile */
  .inline-text h1 {
    font-size: 2.8em;
  }

  .inline-text h2 {
    font-size: 1.3em;
  }
}

/* Logo au-dessus du texte sur mobile (renforcement) */

/* ======================================================= */
/* ================== RESPONSIVE ================== */
/* ======================================================= */
@media (max-width: 768px) {

/* ======================================================= */
/* ================== HEADER & LOGO ================== */
/* ======================================================= */
  .header-flex-inline {
    flex-direction: column;
    align-items: center;
  }

  .inline-logo-large {
    height: 120px;
  }
}

/* Forcer les liens du bas à rester blancs */

/* ======================================================= */
/* ================== BASE GLOBALE ================== */
/* ======================================================= */
footer a {
  color: white !important;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.icon-social {
  width: 40px;
  height: 40px;
  margin: 0 8px;
  opacity: 0.8;
  transition: opacity 0.2s;
  vertical-align: middle;
}
.icon-social:hover {
  opacity: 1;
}


header h1,
header h2 {
  color: #f63a7e;
}



.separateur-magenta {
  height: 4px;
  width: 100%;
  background: #f63a7e;
  margin: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
@import url('https://fonts.googleapis.com/css2?family=Paytone+One&display=swap');


/* ======================================================= */
/* ================== HEADER & LOGO ================== */
/* ======================================================= */
.inline-text h1.titre-principal {
  font-family: 'Paytone One', sans-serif;
  font-size: 3.6em;
  font-weight: normal;
  color: #f63a7e;
  text-transform: uppercase;
  margin: 0 0 10px;
}
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@600&display=swap');

.soustitre-principal {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.4em;
  font-weight: 700;
  color: #f63a7e;
  margin: 0 0 20px;
  letter-spacing: 0.4px;
}

/* ======================================================= */
/* ================== RESPONSIVE ================== */
/* ======================================================= */
@media (max-width: 768px) {

/* ======================================================= */
/* ================== HEADER & LOGO ================== */
/* ======================================================= */
  .inline-text h1.titre-principal {
    font-size: 2.4em;           /* un peu plus grand */
    text-align: center;
    line-height: 1.15;          /* plus d'air verticalement */
    word-spacing: 0.08em;
    white-space: nowrap;
  }

  .inline-text h2.soustitre-principal {
    font-size: 1.05em;          /* très léger gain en taille */
    text-align: center;
    padding: 0 12px;
    white-space: nowrap;
  }


/* ======================================================= */
/* ================== NAVIGATION ================== */
/* ======================================================= */
  #main-nav {
    justify-content: center;
    flex-wrap: wrap;
    padding: 6px 10px;
    gap: 10px;
  }

  #main-nav a {
    padding: 7px 12px;
    font-size: 0.95em;
    border-radius: 18px;
  }
}

/* ======================================================= */
/* ================== ACCUEIL (index.html) ================== */
/* ======================================================= */
.intro p {
  text-align: justify;
  hyphens: auto;
  text-align-last: left;
}

/* Marion flottante positionnable avec variables CSS */

/* ======================================================= */
/* ================== DIVERS / GLOBALES ================== */
/* ======================================================= */
:root {
  --marion2-x: 380px;
  --marion2-y: 172px;
}


/* ======================================================= */
/* ================== ÉLÉMENTS FLOTTANTS ================== */
/* ======================================================= */
.marion2-floating-container {
  position: absolute;
top: var(--marion2-y);
  left: 50%;
  transform: translate(-50%, -50%) translateX(var(--marion2-x));
  z-index: 1000;
  pointer-events: none;
}

.marion2-floating {
  display: block;
  height: auto;
  width: auto;
  max-width: 100%;
}


/* ======================================================= */
/* ================== RESPONSIVE ================== */
/* ======================================================= */
@media screen and (max-width: 768px) {

/* ======================================================= */
/* ================== ÉLÉMENTS FLOTTANTS ================== */
/* ======================================================= */
  .marion2-floating-container {
    display: none;
  }
}


/* Nounou flottante positionnable avec variables CSS */

/* ======================================================= */
/* ================== DIVERS / GLOBALES ================== */
/* ======================================================= */
:root {
  --nounou-x: -410px;
  --nounou-y: 160px;
}


/* ======================================================= */
/* ================== ÉLÉMENTS FLOTTANTS ================== */
/* ======================================================= */
.nounou-floating-container {
  position: absolute;
  top: var(--nounou-y);
  left: 50%;
  transform: translate(-50%, -50%) translateX(var(--nounou-x));
  z-index: 999;
  pointer-events: none;
}

.nounou-floating {
  display: block;
  height: auto;
  width: auto;
  max-width: 100%;
}

/* Responsive : masquer nounou sur mobile */

/* ======================================================= */
/* ================== RESPONSIVE ================== */
/* ======================================================= */
@media screen and (max-width: 768px) {

/* ======================================================= */
/* ================== ÉLÉMENTS FLOTTANTS ================== */
/* ======================================================= */
  .nounou-floating-container {
    display: none;
  }
}

/* ======================================================= */
/* ================== HEADER & LOGO ================== */
/* ======================================================= */
.soustitre-principal {
  color: #87c5bd !important;
}



/* === Sidebar des actus === */

/* ======================================================= */
/* ================== ACTUALITÉS (actu.html) ================== */
/* ======================================================= */
.sidebar-actus {
  position: absolute;
  top: 0;
  right: -148px; /* ajusté selon ta mise en page */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 10;
  padding: 20px 34px;
   background-color: rgba(75, 50, 100, 0.5); /* violet translucide */
  height: auto;
  min-height: 100%;
}


/* largeur harmonisée des éléments internes */
.sidebar-actus .actu-item,
.sidebar-actus .titre-actu {
  width: 150px;
}

/* bloc d'actualité individuel */
.sidebar-actus .actu-item {
  background: white;
  border: none;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  overflow: hidden;
  text-align: center;
  flex-shrink: 0;
}

/* titre de la colonne */
.sidebar-actus .titre-actu {
  background: transparent; /* suppression du fond */
  color: white;             /* texte en blanc */
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  padding: 10px 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 0;
}


/* image de chaque actu */
.sidebar-actus .actu-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* date de l’actu */
.sidebar-actus .actu-item p {
  margin: 6px 0 10px;
  font-size: 0.9em;
  color: #444;
}

/* désactivation sur petits écrans */

/* ======================================================= */
/* ================== RESPONSIVE ================== */
/* ======================================================= */
@media (max-width: 1199px) {

/* ======================================================= */
/* ================== ACTUALITÉS (actu.html) ================== */
/* ======================================================= */
  .sidebar-actus {
    display: none;
  }
}


/* wrapper général centré */

/* ======================================================= */
/* ================== DIVERS / GLOBALES ================== */
/* ======================================================= */
.main-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
/* === MISE EN PAGE DES PAGES BD === */


/* ======================================================= */
/* ================== BD ================== */
/* ======================================================= */
    .bd-info {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 30px;
    }
    .bd-text {
      flex: 1 1 60%;
      font-size: 1.1em;
      line-height: 1.6;
      text-align: justify;
    }
    .bd-side {
      flex: 1 1 35%;
      text-align: center;
    }
    .bd-side img {
      max-width: 100%;
      border: none;
      margin-bottom: 15px;
    }
    .bd-side a {
      background: #222;
      color: white;
      padding: 10px 20px;
      border-radius: 4px;
      text-decoration: none;
      font-weight: bold;
      display: inline-block;
    }
    /* === Galerie de figurine et infos techniques === */

/* ======================================================= */
/* ================== FIGURINES ================== */
/* ======================================================= */
.gallery-container {
  max-width: 700px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
}
.gallery-wrapper {
  position: relative;
  overflow: hidden;
}
.gallery-main {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.gallery-main.fade-out {
  opacity: 0;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  font-size: 1.8em;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  padding: 6px 12px;
  border-radius: 50%;
  color: #333;
}
.gallery-prev { left: 20px; }
.gallery-next { right: 20px; }
.gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  justify-content: center;
  padding: 2px;
}
.gallery-thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.gallery-thumbs img:hover {
  transform: scale(1.05);
}

.collapsible-section {
  margin: 40px auto;
  max-width: 800px;
  padding: 0 20px;
}
.collapsible-section h2 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #222;
}
.collapsible-section .preview,
.collapsible-content {
  text-align: justify;
  font-size: 1.05em;
  line-height: 1.7;
  font-family: 'Raleway', sans-serif;
  color: #000000;
}


ul.infos-tech {
  list-style: none;
  padding: 0;
  font-size: 1.05em;
}

/* ======================================================= */
/* ================== DIVERS / GLOBALES ================== */
/* ======================================================= */
:root {
  --doudou-x: 520px;     /* tu pourras ajuster ensuite */
  --doudou-y: 275px;
}


/* ======================================================= */
/* ================== ÉLÉMENTS FLOTTANTS ================== */
/* ======================================================= */
.doudou-floating-container {
  position: absolute;
  top: var(--doudou-y);
  left: 50%;
  transform: translate(-50%, -50%) translateX(var(--doudou-x));
  z-index: 998;
  pointer-events: none;
}

.doudou-floating {
  display: block;
  height: auto;
  width: auto;
  max-width: 100%;
}


/* ======================================================= */
/* ================== RESPONSIVE ================== */
/* ======================================================= */
@media screen and (max-width: 768px) {

/* ======================================================= */
/* ================== ÉLÉMENTS FLOTTANTS ================== */
/* ======================================================= */
  .doudou-floating-container {
    display: none;
  }
}
/* === Spécifiques à la page actu.html === */


/* ======================================================= */
/* ================== ACTUALITÉS (actu.html) ================== */
/* ======================================================= */
a.card {
  display: block;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  text-align: center;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: 0.2s ease;
}

a.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

a.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
}


/* ======================================================= */
/* ================== ACCUEIL (index.html) ================== */
/* ======================================================= */
.intro-actu {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.intro-texte {
  flex: 1;
  font-family: Raleway, sans-serif;
  font-size: 1em;
  line-height: 1.6;
}

.intro-visuel {
  width: 250px;
  flex-shrink: 0;
}


/* ======================================================= */
/* ================== RESPONSIVE ================== */
/* ======================================================= */
@media (max-width: 700px) {

/* ======================================================= */
/* ================== ACCUEIL (index.html) ================== */
/* ======================================================= */
  .intro-actu {
    flex-direction: column;
    align-items: center;
  }

  .intro-visuel {
    width: 100%;
  }
}

.cards .card {
  width: calc(33.333% - 20px);
  box-sizing: border-box;
}


/* ======================================================= */
/* ================== RESPONSIVE ================== */
/* ======================================================= */
@media (max-width: 800px) {

/* ======================================================= */
/* ================== ACCUEIL (index.html) ================== */
/* ======================================================= */
  .cards .card {
    width: calc(50% - 20px);
  }
}


/* ======================================================= */
/* ================== RESPONSIVE ================== */
/* ======================================================= */
@media (max-width: 500px) {

/* ======================================================= */
/* ================== ACCUEIL (index.html) ================== */
/* ======================================================= */
  .cards .card {
    width: 100%;
  }
}
.figurine-special .collapsible-section,
.figurine-special .intro {
  color: #69a6a5; /* ton rose fuchsia */
}
.figurine-special {
  background-color: #f6f6f6;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
}

.figurine-special .intro,
.figurine-special .collapsible-section {
  color: #3f5e5c; /* fuchsia / magenta */
}

.marion2-floating,
.nounou-floating,
.doudou-floating {
  opacity: 0.6;
}
.figurine-special .collapsible-section h2 {
  color: #f63a7e;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase; /* optionnel : donne un effet "titre de bloc" */
  letter-spacing: 0.5px;     /* optionnel : aère un peu le tout */
}
.photo-num {
  position: relative;
  display: inline-block;
}

.photo-num img {
  display: block;
  width: 100%;
  border-radius: 6px;
}

.num-label {
  position: absolute;
  top: 6px;
  left: 6px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 0.9em;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'Barlow Semi Condensed', sans-serif;
}
.vitry-photo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 40px auto;
  max-width: 860px;
}

.vitry-photo-grid .photo-num {
  width: 314px;
  max-width: 90%;
  position: relative;
}

.vitry-photo-grid .photo-num img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.vitry-photo-grid .num-label {
  position: absolute;
  top: 6px;
  left: 6px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.9em;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'Barlow Semi Condensed', sans-serif;
}
.bd-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1000px;
  margin: 40px auto;
}

.bd-card {
  position: relative;
  width: 210px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s;
}

.bd-card:hover {
  transform: translateY(-4px);
}

.bd-card img {
  width: 100%;
  display: block;
}

.bd-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1em;
  margin: 10px;
  color: #f63a7e;
}

.bd-card p {
  font-size: 0.9em;
  margin: 0 10px 15px;
  color: #333;
}

.bd-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #f63a7e;
  color: white;
  font-size: 0.75em;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: bold;
}

.badge-wip {
  background-color: #999; /* ou prune sombre si tu préfères */
}
main {
  min-height: 100vh; /* au moins la hauteur de l'écran */
}
footer a.link-livreor {
  color: #f63a7e !important;
  font-weight: bold;
  font-family: Arial, sans-serif;
}
.double-photo {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.double-photo img {
  width: 50%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
  .double-photo {
    flex-direction: column;
    gap: 10px;
  }

  .double-photo img {
    width: 100%;
  }
}
.side-by-side {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.side-image {
  flex: 1 1 300px;
}

.side-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.side-text {
  flex: 2 1 400px;
  font-size: 1.05em;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .side-by-side {
    flex-direction: column;
  }
}
.figurine-special .side-by-side {
  max-width: 100%;
  width: 100%;
}
.figurine-special .side-by-side {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 20px;
}

.figurine-special .side-image {
  flex: 0 0 250px; /* largeur fixe adaptée à la photo */
}

.figurine-special .side-image img {
  width: 100%;
  height: auto;
  display: block;
}

.figurine-special .side-text {
  flex: 1;
  min-width: 0;
}
@media (max-width: 700px) {
  .figurine-special .side-by-side {
    flex-direction: column;
  }

  .figurine-special .side-image,
  .figurine-special .side-text {
    flex: 1 1 100%;
  }

  .figurine-special .side-image img {
    width: 100%;
    height: auto;
  }
}
#back-to-top {
  position: fixed;
  bottom: 40px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #f63a7e;
  color: white;
  font-size: 2em;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: none;
  z-index: 999;
  transition: opacity 0.3s ease;
}

#back-to-top:hover {
  opacity: 0.8;
}

.editorial,
.collapsible-section .preview,
.collapsible-content {
  font-family: 'Raleway', sans-serif;
  font-size: 1.05em;
  line-height: 1.7;
  color: #000000;
}
.intro h1,
.intro-titre {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.1;
    color: #f63a7e;
}
.nav-figurines-modern {
  display: flex;
  justify-content: space-between;
  margin: 60px auto 20px;
  max-width: 700px;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  font-family: 'Barlow Semi Condensed', sans-serif;
}
.nav-boutons-simples {
  display: flex;
  justify-content: space-between;
  max-width: 700px;
  margin: 80px auto 40px;
  padding: 0 20px;
}

.btn-nav-simple {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: bold;
  font-size: 1.1em;
  color: #f63a7e;
  text-decoration: none;
  border: 2px solid #f63a7e;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-nav-simple:hover {
  background-color: #f63a7e;
  color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .nav-boutons-simples {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.nav-horizontal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 700px;
  margin: 80px auto 60px;
  padding: 0 20px;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #f63a7e;
  color: white;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: bold;
  font-size: 0.95em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 40px;
  border: 2px solid white;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.nav-btn:hover {
  background-color: #e0296c;
  transform: translateY(-1px);
}

.nav-btn .arrow.white {
  font-size: 1.2em;
  line-height: 1;
}

@media (max-width: 600px) {
  .nav-horizontal {
    flex-direction: column;
    align-items: center;
  }
}
.nav-horizontal.align-right {
  justify-content: flex-end;
}
.separateur-commentaire {
  border: none;
  height: 1px;
  width: 100%;
  background-color: rgba(100, 100, 100, 0.7); /* gris 70% */
  margin: 60px auto 40px;
}
.bloc-note {
  border-left: 4px solid #f63a7e;
  padding: 12px 20px;
  margin: 40px auto;
  background-color: rgba(0, 0, 0, 0.02);
  font-family: 'Raleway', sans-serif;
  font-size: 1.02em;
  line-height: 1.6;
  color: #444;
  max-width: 680px;
  font-style: italic;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

#commentaire-zone {
  all: revert;
  font-family: 'Raleway', sans-serif;
  font-size: 1.05em;
  line-height: 1.7;
  color: #333;
}
.avis-auteur {
  margin: 24px 0;
  padding: 20px;
  background-color: #ffe3ef;
  color: #d12b79;
  font-style: italic;
  font-size: 1.1em;
  line-height: 1.6;
  text-align: justify;
  border-radius: 8px;
  border-left: 4px solid #d12b79; /* ✅ petite barre verticale magenta */
}

/* ✅ Titre surligné rose/magenta + texte blanc */
.avis-auteur .titre-avis {
  display: inline-block;
  font-weight: bold;
  font-style: normal;
  font-size: 1.05em;
  color: white;
  background-color: rgba(209, 43, 121, 0.9);
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 12px;
}

/* ✅ Signature manuscrite */
.avis-auteur .signature {
  display: block;
  margin-top: 12px;
  text-align: right;
  font-size: 1.2em;
  font-family: 'Dancing Script', cursive;
  font-style: normal;
  color: #b32663;
}
