/* Importer une police Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* ----------------- BASE ----------------- */
html, body {
  height: 100%;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #FFF2EE; /* fond clair orangé doux */
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-direction: column; /* pour le footer sticky */
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
  padding-top: 88px; /* à changer si je change la taille du header */
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

main > *:last-child {
  margin-bottom: 0 !important;
}


/* ----------------- HEADER DE BASE ------------------------------------------------------------------------------------ */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #A3453C;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: all 0.4s ease;
}

/* CONTENU INTERNE */
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 5%;
  position: relative;
}

/* LOGO FLOTTANT */
.logo {
  height: 80px;          /* logo grand au départ */
  transform: translateY(15%); /* dépasse du header */
  transition: all 0.4s ease;
  filter: drop-shadow(2px 2px 3px black);
}

/* MENU */
/* Navigation - desktop */
/* menu visible par défaut sur PC */
.main-nav {
  display: block;
}

.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.main-nav a {
  margin-left: 20px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #E07A5F;
}

/* EFFET SCROLL */
.header-scrolled {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.header-scrolled .logo {
  height: 60px;            /* réduit la taille du logo */
  transform: translateY(0); /* logo rentre dans le header */
}

.header-scrolled .header-content {
  padding: 10px 5%;
}

/* Hamburger button - hidden on desktop */
.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* ----------------- MOBILE ----------------- */
@media screen and (max-width: 768px) {

  /* cacher le menu par défaut sur mobile */
  .main-nav {
    display: none;
  }

  /* afficher le menu quand on clique */
  .main-nav.active {
    display: block;
    position: absolute;
    top: 70px; /* ajuste selon la hauteur de ton header */
    left: 0;
    width: 100%;
    background-color: #A3453C; /* arrière-plan */
  }

  /* afficher le hamburger sur mobile */
  .hamburger {
    display: block;
  }

  /* rendre le menu vertical sur mobile */
  .main-nav ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    right: 0;
    text-align: right;
  }

  .main-nav ul li {
    list-style: none;
    border-bottom: 1px solid white;
    padding: 10px;
  }

  .main-nav ul li a {
    text-decoration: none;
    color: white;
  }
}


/* ----------------- HERO ------------------------------------------------------------------------------------ */
.hero {
  position: relative;
  height: 65vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  margin-bottom: 0;
}

.hero-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.85; /* légèrement estompée */
}

.hero::before { 
  content: ""; 
  position: absolute; 
  top: 0; left: 0; 
  width: 100%; 
  height: 100%; 
  background: linear-gradient(to bottom right, rgba(217,79,44,0.4), rgba(224,122,95,0.4)); z-index: 1; 
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
  padding: 20px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.hero h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 3rem;
  color: white;
}

/* 🔧 Corrige la marge sous le hero sur la page d’accueil */
.home main {
  padding-top: 87px !important;
  margin: 0 !important;
  background-color: #B13D20; /* même fond que le footer */
  color: white;
}


/* ----------------- BOUTONS ----------------- */
button, .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #D94F2C;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none !important;
  outline: none !important;
}

button:hover, .btn:hover {
  background: #E07A5F;
}

button:focus, .btn:focus {
  outline: none;
}

/* ----------------- GALERIE ------------------------------------------------------------------------------------ */
.gallery-menu {
  text-align: center;
  margin: 20px 0;
}

.gallery-menu button {
  background: #D15347;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 0 10px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}
.gallery-menu button:hover { background: #E07A5F; }
.gallery-menu button.active { background: #8C2F23; }

/* Masonry container */
.gallery {
  max-width: 1200px;
  margin: 40px auto; /* espace avant/après la galerie */
  padding-left: 15px;
  padding-right: 15px; 
}

/* Items animés */
.gallery-item {
  width: 30%; /* Masonry gère la largeur en pourcentage */
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(150px);
  transition: opacity 1s ease, transform 1s ease;
}

.gallery-item.show {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item img.loaded {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (min-width: 391px) and (max-width: 590px) {
  .gallery-item {
    width: 30%;
  }
  .gallery { 
    padding-left: 5px;
    padding-right: 5px;
  }
}
  
@media (max-width: 390px) {
   .gallery-item {
    width: 30%;
  }
  .gallery { 
    padding-left: 1px;
    padding-right: 1px;
  }
}

/* Ajoute une règle responsive pour les boutons de la galerie, sinon ils disparaissent */
@media (max-width: 700px) {
.gallery-menu {
  display: block !important;
  position: relative;
  color: white;
  padding: 10px;
}


  .gallery-menu button {
    flex: 1 1 auto;   /* les boutons s’adaptent */
    min-width: 100px; /* largeur minimale pour rester lisibles */
    margin: 5px 0;    /* évite qu’ils se collent verticalement */
  }

.gallery-section nav {
  display: block !important;
}
}




/* ----------------- LIGHTBOX RESPONSIVE ----------------- */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 2000;
  flex-direction: column; /* ✅ image + texte verticalement */
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 1rem; /* ✅ espace au-dessus de la description */
}

#lightbox .close {
  position: fixed; /* par rapport à la fenêtre, pas à .lightbox-content */
  top: 20px;
  right: 20px;
  color: white;
  font-size: 45px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2200;
}

#lightbox-caption {
  color: #fff;
  font-size: 1rem;
  text-align: center;
  max-width: 80%;
  line-height: 1.4;
}

#lightbox-caption a {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 8px 16px;
  border: 1px solid #ff6600;
  border-radius: 6px;
  color: #ff6600;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

#lightbox-caption a:hover {
  background-color: #ff6600;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
}



/* Flèches lightbox */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;          /* taille de la flèche */
  font-weight: bold;
  color: white;
  cursor: pointer;
  user-select: none;
  padding: 20px;
  transition: color 0.3s, transform 0.3s;
  z-index: 2100;
}

.prev:hover, .next:hover {
  color: #ff6600;
  transform: translateY(-50%) scale(1.2);
}

.prev {
  left: -60px;
}

.next {
  right: -60px;
}



/* ----------------- MOBILE ----------------- */
@media (max-width: 768px) {

  #lightbox .prev {
  font-size: 40px;
  position: absolute;
  top: 50%;
  left: 10px;  /* 10px depuis le bord gauche */
  transform: translateY(-50%);
  z-index: 1001; 
  }
  
  #lightbox .next {
  font-size: 40px;
  position: absolute;
  top: 50%;
  right: 10px; /* 10px depuis le bord droit */
  transform: translateY(-50%);
  z-index: 1001; 
  }

  #lightbox-img {
    max-height: 70vh;
  }

  #lightbox .close {
  font-size: 70px;
}
}

@media (max-width: 480px) {
  .prev, .next {
    font-size: 35px;
    padding: 8px;
  }

  #lightbox-img {
    max-height: 60vh;
  }

    #lightbox .close {
  font-size: 70px;
}
}



/* ----------------- BOUTIQUE ------------------------------------------------------------------------------------ */

/* Indispensable pour recentrer les images de la boutique en grille */
.shop-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.shop {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.product {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(217,79,44,0.1);
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}

.product h3 { margin: 10px 0 5px; }
.product .price { font-weight: bold; color: #D94F2C; }

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(217,79,44,0.2);
}

/* Lightbox boutique */
.shop-lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);        /* 💎 flou d’arrière-plan */
  -webkit-backdrop-filter: blur(10px); /* pour Safari */
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

/* ✨ Animations de la lightbox */
@keyframes lightboxFadeZoom {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.shop-lightbox-content {
  display: flex;
  background: white;
  border-radius: 12px;
  max-width: 900px;
  width: 90%;
  padding: 20px;
  gap: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  animation: lightboxFadeZoom 0.35s ease; /* 👈 ajoute l’animation */
  transform-origin: center center;
}


.shop-lightbox-img img {
  max-width: 400px;
  border-radius: 8px;
}

.shop-lightbox-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.shop-lightbox-info h2 { margin-top: 0; }

.share a {
  margin-right: 10px;
  color: #D94F2C;
  text-decoration: none;
}

.share a:hover { text-decoration: underline; }

.shop-lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  font-weight: 700;
  color: #E07A5F;               /* 🧡 couleur accent ForgeFeu */
  cursor: pointer;
  transition: transform 0.2s ease, color 0.3s ease;
  z-index: 2100;
}

.shop-lightbox .close:hover {
  color: #FFB997;               /* plus clair au survol */
  transform: scale(1.15);
}


.creator-btn {
  background: #D15347;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 0 10px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
  text-decoration: none;
}
.creator-btn:hover { background: #E07A5F; }
.creator-btn.active { background: #8C2F23; }


/* 🌙 Responsive : Lightbox sur mobile */
@media (max-width: 768px) {

  .shop-lightbox-content {
    flex-direction: column;     /* empile image et texte */
    align-items: center;
    padding: 15px;
    width: 95%;
    max-height: 90vh;           /* garde un peu d’espace */
    overflow-y: auto;           /* scroll si texte long */
  }

  .shop-lightbox-img img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .shop-lightbox-info {
    width: 100%;
    margin-top: 15px;
    text-align: center;
    justify-content: flex-start;
  }

  .shop-lightbox-info h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .shop-lightbox-info p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .share {
    margin-top: 15px;
  }

  .share a {
    display: inline-block;
    margin: 5px;
    font-size: 0.95rem;
  }

.shop-lightbox .close {
  top: 10px;
  right: 15px;
  font-size: 64px;
  color: #E07A5F;
}

  .creator-btn {
    margin: 15px auto 0;
    display: inline-block;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .shop-lightbox-info h2 {
    font-size: 1.2rem;
  }
  .shop-lightbox-info p {
    font-size: 0.95rem;
  }
}


/* ----------------- A PROPOS ------------------------------------------------------------------------------------ */

.about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.about-block {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-block.reverse {
  flex-direction: row-reverse;
}

.about-image {
  position: relative;
  flex: 1 1 45%;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.about-block:nth-child(1) .about-image {
  border-radius: 100px 200px 100px 200px;
  transform: rotate(-5deg);
}

.about-block:nth-child(2) .about-image {
  border-radius: 200px 100px 200px 100px;
  transform: rotate(5deg);
}

.about-block:nth-child(3) .about-image {
  border-radius: 100px 200px 100px 200px;
  transform: rotate(-5deg);
}

.about-block:nth-child(1) .about-image:hover,
.about-block:nth-child(2) .about-image:hover,
.about-block:nth-child(3) .about-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.about-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.about-text {
  flex: 1 1 45%;
}

.about-text h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #222;
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .about-block,
  .about-block.reverse {
    flex-direction: column;
  }
  .about-image, .about-text {
    flex: 1 1 100%;
  }
}



/* ----------------- FORMULAIRE MODERNE ------------------------------------------------------------------------------------ */
.contact-section {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
}

.contact-section h1 {
  text-align: center;
  margin-bottom: 15px;
  color: #D94F2C;
}

.contact-section p {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #fff2ee;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(217,79,44,0.2);
}

form input, form textarea {
  padding: 12px 15px;
  border: 1px solid #D94F2C;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.3s, box-shadow 0.3s;
}

form input:focus, form textarea:focus {
  outline: none;
  border-color: #E07A5F;
  box-shadow: 0 0 8px rgba(224,122,95,0.3);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

form button {
  padding: 12px;
  background: #D94F2C;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

form button:hover {
  background: #E07A5F;
  transform: translateY(-2px);
}

/* Case à cocher stylisée (RGPD) */
.checkbox-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 30px;
  margin-top: 15px;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
  cursor: pointer;
  user-select: none;

  /* Permet au texte long de revenir à la ligne */
  flex-wrap: wrap;
  white-space: normal;
}

/* Le texte lui-même */
.checkbox-container span {
  flex: 1; /* occupe tout l’espace restant */
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

.checkbox-container .checkmark {
  position: absolute;
  left: 0;
  top: 0;
  height: 20px;
  width: 20px;
  background-color: #fff2ee;
  border: 2px solid #D94F2C;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.checkbox-container:hover .checkmark {
  background-color: #fbe6e1;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #D94F2C;
  border-color: #D94F2C;
}

.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
  left: 5px;
  top: 0px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container a {
  color: #D94F2C;
  text-decoration: none;
  font-weight: 600;
}

.checkbox-container a:hover {
  color: #E07A5F;
  text-decoration: underline;
}



/* ----------------- FOOTER ------------------------------------------------------------------------------------ */
/* Footer général */
footer {
  background-color: #B13D20;        /* Couleur de fond */
  color: #f5f5f5;                /* Texte clair */
  padding: 1px 20px 20px;       /* Espacement */
  margin-top: 0;
  padding-top: 0;
}

.footer-container {
  display: flex;
  justify-content: center;
  gap: 60px;                /* espace fixe entre les colonnes */
  padding: 20px;
  background: #B13D20;
  color: white;
  flex-wrap: wrap;
  margin: 0 auto;
}

/* Colonnes */
.footer-column {
  flex: 0 0 auto;    /* largeur auto, ne s’étire pas */
  padding: 0 10px;
  margin: 10px;
}

/* Nettoyage des marges par défaut */
.footer-column h4 {
  margin: 0 0 8px 0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin: 4px 0;
}

.footer-column p {
  margin: 4px 0;
}

.footer-column a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #E07A5F;
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 10px; /* au lieu de margin sur chaque icône */
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  margin-right: 15px;
  transition: color 0.3s;
}
.social-icons a:hover { color: #E07A5F; }

 /*Ligne du bas */
.footer-bottom {
  text-align: center;
  font-size: 14px;
  width: 100%;
}

/* FOOTER - version mobile */
@media (max-width: 700px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px; /* contrôle de l’espacement */
  }

  .footer-column {
    padding: 0;
  }
}


/* ----------------- CGV ------------------------------------------------------------------------------------ */

.cgv {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  line-height: 1.7;
  color: #222;
}

.cgv h1 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #111;
}

.cgv-article {
  margin-bottom: 3rem;
}

.cgv-article h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}

.cgv-article h2 span {
  color: #F8845A; /* orange doux titre */
}

.cgv-article h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.cgv-article p {
  margin-bottom: 1rem;
  text-align: justify;
}

.cgv-article ul {
  list-style: none;              /* Supprime les puces par défaut */
  padding-left: 0;
  margin: 1rem 0;
}

.cgv-article ul li {
  position: relative;
  padding-left: 1.8rem;          /* Espace pour l’icône */
  margin-bottom: 0.6rem;
}

.cgv-article ul li::before {
  content: "✔";                  /* Encoche */
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: #F8845A;                /* Couleur principale (orange) */
  font-weight: bold;
  font-size: 1rem;
}

.cgv-article strong {
  color: #000;
}

.cgv-article:not(:last-child) {
  border-bottom: 1px solid #eee;
  padding-bottom: 2rem;
}

@media (max-width: 600px) {
  .cgv {
    padding: 0 1rem;
  }

  .cgv h1 {
    font-size: 1.6rem;
  }

  .cgv-article h2 {
    font-size: 1.15rem;
  }
}

/* ----------------- Mentions légales & Politique de confidentialité ------------------------------------------------------------------------------------ */

.legal {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  line-height: 1.7;
  color: #222;
}

.legal h1 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 4rem 0 3rem;
  color: #111;
}

.legal-article {
  margin-bottom: 3rem;
}

.legal-article h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}

.legal-article h2 span {
  color: #F8845A; /* orange doux */
}

.legal-article p {
  margin-bottom: 1rem;
  text-align: justify;
}

.legal-article ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.legal-article ul li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.6rem;
}

.legal-article ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: #F8845A;
  font-weight: bold;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .legal {
    padding: 0 1rem;
  }

  .legal h1 {
    font-size: 1.6rem;
  }

  .legal-article h2 {
    font-size: 1.15rem;
  }
}

/* ----------------- F.A.Q. --------------------------------------------------------- */

.faq-container {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  line-height: 1.7;
  color: #222;
}

.faq-container h1 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #111;
}

.faq-item {
  margin-bottom: 3rem;
}

.faq-item h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}

.faq-item h2 span {
  color: #F8845A; /* orange doux */
}

.faq-item p {
  margin-bottom: 1rem;
  text-align: justify;
}

.faq-item ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.faq-item ul li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.6rem;
}

.faq-item ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: #F8845A;
  font-weight: bold;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .faq-container {
    padding: 0 1rem;
  }

  .faq-container h1 {
    font-size: 1.6rem;
  }

  .faq-item h2 {
    font-size: 1.15rem;
  }
}


/* ----------------- PAGE EN CONSTRUCTION ------------------------------------------------------------------------------------ */
.construction img {
  width: 100%;      /* occupe toute la largeur disponible */
  height: auto;     /* conserve les proportions */
  display: block;   /* évite l'espace blanc sous l'image */
  max-width: 100%;  /* empêche de dépasser */
}
