/* Reset de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
  background-color: #ffffff;
  color: #1025a1;
}

html {
  scroll-behavior: smooth;
}

.site-header {
  background-color: #ffdd37;
  padding: 1rem 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  height: 60px;
  max-width: 100%;
}

.logo-large {
  height: 180px; /* Essaie 100px, 120px... selon ton besoin */
}

/* Desktop : espacement horizontal */
.main-nav ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  gap: 3rem;
}

/* Mobile : espacement vertical */
@media screen and (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.main-nav a {
  text-decoration: none;
  font-family: 'Gagalin', sans-serif; /* Ajouté */
  font-weight: normal;
  color: #1025a1;
  font-size: 2rem; /* Agrandi depuis 1rem */
  text-transform: uppercase;
}

.main-nav a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }
}

.hero-message {
  background-color: #ffd93d;
  padding: 2rem 1rem;
  text-align: center;
}

.hero-message-inner {
  max-width: 80ch;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Gagalin', sans-serif;
  font-size: 2.2rem; /* à ajuster selon ton besoin */
  color: #1025a1;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 1.6rem;
  color: #f37021;
  margin: 0;
}

.cta-boutons-wrapper {
  background-image: url("interieur-magasin.png");
  background-size: cover;           /* ✅ Pour occuper toute la largeur */
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #ffd93d;        /* Sécurité visuelle */
  padding: 2rem 0 12rem;            /* Ajuste le bas si besoin */
  min-height: 700px;                /* ✅ Ajuste pour éviter que le bas soit coupé */
}

.cta-boutons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 1100px;
}

.cta-bouton {
  width: 250px;          /* 🎯 ← AJUSTE ICI la largeur du bouton sur desktop (ex : 260px, 300px...) */
  height: 100px;         /* ✅ fixe la hauteur pour éviter le CLS */
  background-color: #2d5cff;
  border-radius: 20px;
  color: white;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 0;
}

.cta-bouton:hover {
  transform: translateY(-3px);
}

.cta-visage {
  flex-shrink: 0;
  border-radius: 50%;
  display: block;
}

.cta-texte {
  line-height: 1.2;
  display: inline-block;
  text-align: left;
  max-width: 180px;
}

@media (max-width: 600px) {
  .cta-bouton {
    width: 80%;           /* 🎯 ← AJUSTE ICI la largeur sur mobile (ex : 100%, 320px, etc.) */
    height: auto;         /* on laisse la hauteur s'adapter sur mobile */
    flex-direction: row;
    align-items: flex-start;
    padding: 1rem;
  }

  .cta-texte {
    max-width: 100%;
    font-size: 1rem;
  }
}

.store-interior {
  width: 100%;
  overflow: hidden;
  margin-top: 0; /* 👈 Empêche un saut entre les sections */
}

.store-interior img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.br-desktop {
  display: none;
}

@media screen and (min-width: 768px) {
  .br-desktop {
    display: inline;
  }
}

.section-valeurs {
  background-color: white;
  color: #1025a1;
  font-family: 'Nunito', sans-serif;
  padding: 3rem 1rem;
  text-align: center;
}

.valeurs-intro {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.valeurs-listes {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.valeurs-colonne {
  list-style: none;
  padding: 0;
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.6;
}

.valeurs-colonne li {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}

.check-icon {
  width: 20px;
  height: 20px;
  margin-right: 0.6rem;
  flex-shrink: 0;
}

.valeurs-blocs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.valeur-bloc {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
}

.valeur-bloc img {
  width: 60px;
  height: auto;
  margin-bottom: 0.5rem;
}

.valeur-bloc p {
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
  color: #1025a1;
}

@media (max-width: 768px) {
  .valeurs-listes {
    flex-direction: column;
    align-items: center;
  }

  .valeurs-blocs {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .valeur-bloc {
    width: 45%;
  }

  .valeur-bloc img {
    width: 50px;
  }

  .valeur-bloc p {
    font-size: 0.95rem;
    text-align: center;
  }
}

.section-magasin {
  background-color: #1025a1; /* Bleu intense de La Récré */
  padding: 3rem 1rem;
  text-align: center;
}

.photos-magasin {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.photos-magasin img {
  width: 300px;         /* Ajustable selon rendu souhaité */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.plan-magasin img {
  max-width: 800px;
  width: 65%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@media screen and (max-width: 768px) {
  .plan-magasin img {
    width: 100%;     /* ✅ occupe toute la largeur disponible */
    max-width: 100%; /* ✅ évite de dépasser l’écran */
    height: auto;    /* ✅ conserve le ratio de l’image */
  }
}

.section-quotidien {
  background-color: #ffd93d; /* Jaune La Récré */
  padding: 3rem 1rem;
  text-align: center;
}

.quotidien-titre {
  font-family: 'Gagalin', sans-serif;
  font-size: 2rem;
  color: #1025a1;
  margin-bottom: 2rem;
}

.quotidien-contenu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.quotidien-photo img {
  max-width: 340px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.quotidien-liste {
  color: #02C341;
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5; /* ↑ augmente l'interligne entre chaque ligne */
  max-width: 400px;
}

.quotidien-liste p {
  margin-bottom: 1.2rem;
}

.quotidien-liste .indent {
  display: inline-block;
  padding-left: 0.9rem; /* décale la ligne suivante pour éviter l’alignement sous la puce */
}

@media (max-width: 768px) {
  .quotidien-contenu {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .quotidien-liste {
    text-align: left;
    padding-left: 1.5rem;
  }
}
.section-evenements {
  background-color: #ffffff;
  padding: 4rem 1rem;
  text-align: center;
}

.titre-evenements {
  font-family: 'Gagalin', cursive;
  font-size: 2.2rem;
  color: #1025a1;
  margin-bottom: 0.5rem;
}

.sous-titre-evenements {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  color: #1025a1;
  margin-bottom: 3rem;
}

.evenements-blocs {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.evenement-colonne {
  width: 280px;
}

.evenement-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  margin-bottom: 1rem;
}

.texte-vert {
  color: #02C341;
  font-weight: bold;
  font-size: 1.1rem;
}

.texte-rouge {
  color: #D93D3D;
  font-weight: bold;
  font-size: 1.1rem;
}

.texte-noir {
  color: #333;
  font-size: 0.95rem;
  margin-top: 0.3rem;
}

.texte-bleu {
  color: #2d5cff;
  font-weight: bold;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .evenement-colonne {
    width: 90%;
  }

  .evenements-blocs {
    flex-direction: column;
    align-items: center;
  }
}

.section-evenement-prive {
  background-color: #1025a1;
  color: white;
  padding: 3rem 2rem;
  font-family: 'Nunito', sans-serif;
  text-align: center; /* ✅ Centre tout le texte */
}

.contenu-evenement {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.texte-evenement {
  flex: 0 0 70%;       /* -5% pour agrandir la marge visuelle à gauche */
  padding: 0 6rem;     /* ✅ augmente les marges gauche/droite du texte */
}

.image-evenement {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.visuel-evenement {
  flex: 0 0 25%;
  display: flex;
  justify-content: center;
  padding-left: 4rem; /* ✅ Décalage visuel vers la droite */
}

.image-placeholder {
  width: 100%;
  max-width: 220px;
  height: 320px;
  background-color: #fff;
  border-radius: 12px;
  color: #1025a1;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-align: center;
}

.titre-gagalin {
  font-family: 'Gagalin', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.texte-infos {
  font-size: 1.2rem;
  margin: 1rem 0;
}

.lien-souligne {
  text-decoration: underline !important;
}

.telephone {
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 1rem;
}

.telephone a {
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .contenu-evenement {
    flex-direction: column;
  }

  .texte-evenement, .visuel-evenement {
    flex: 0 0 100%;
    padding: 0;
  }

  .image-placeholder {
    margin-top: 2rem;
    height: 260px;
  }
}
.br-desktop {
  display: none;
}

@media screen and (min-width: 1024px) {
  .texte-evenement {
    margin-right: -3rem; /* 🔵 Rapproche le texte de l'image */
  }

  .visuel-evenement {
    margin-left: -7rem;   /* 🔵 Réduit l’espace entre image et texte */
    max-width: 280px;    /* 🔵 S’assure que l’image ne déborde pas */
  }
}

.section-facebook {
  background-color: white;
  text-align: center;
  padding: 3rem 1rem;
}

.cta-facebook {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 2rem;
  border: 2px dashed #1025a1;
  border-radius: 12px;
  background-color: #f9f9f9;
  transition: transform 0.2s ease;
}

.cta-facebook:hover {
  transform: scale(1.03);
}

.cta-facebook img.facebook-icon {
  width: 72px;
  height: auto;
  flex-shrink: 0;
}

.cta-facebook span {
  font-family: 'Nunito', sans-serif;
  color: #1025a1;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-facebook {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .cta-facebook span {
    text-align: center;
    font-size: 1.1rem;
  }
}

/* === SECTION ENTREPRISES & CO === */
.section-entreprises {
  background-color: #f3e8fc; /* 💡 Nouveau fond lavande clair */
  padding: 4rem 1rem;
  text-align: center;
}

.titre-gagalin {
  font-family: 'Gagalin', sans-serif;
  font-size: 2.5rem;
  color: #1025a1;
  margin-bottom: 1rem;
}

.sous-titre-entreprises {
  font-family: 'Nunito', sans-serif;
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  color: #1025a1;
}

.bloc-prestation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.bloc-prestation.inverser {
  flex-direction: row-reverse; !important;
}

.texte-prestation {
  max-width: 500px;
  text-align: left;
}

.encadre-blanc {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.texte-prestation h3 {
  font-family: 'Gagalin', sans-serif;
  font-size: 1.8rem;
  color: #1025a1;
  margin-bottom: 0.5rem;
}

.texte-prestation h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  color: #f37021;
  margin-bottom: 1rem;
}

.texte-prestation ul {
  list-style: disc;
  padding-left: 1.5rem;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: #1025a1;
  line-height: 1.6;
}

.visuel-prestation img {
  width: 160px;
  height: auto;
}

.cta-contact-pro {
  margin-top: 4rem;
}

.cta-jaune {
  background-color: #ffd93d;
  color: #1025a1;
  font-weight: bold;
  font-family: 'Quicksand', sans-serif;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 1.2rem;
  display: inline-block;
  transition: background-color 0.3s;
}

.cta-jaune:hover {
  background-color: #f2c500;
}

/* Responsive */
@media (max-width: 768px) {
  .bloc-prestation {
    flex-direction: column;
    text-align: center;
  }

  .bloc-prestation.inverser {
    flex-direction: column;
  }

  .texte-prestation {
    text-align: center;
  }

  .texte-prestation ul {
    padding-left: 1rem;
    text-align: left;
  }

  .visuel-prestation img {
    margin-top: 1rem;
  }
}

/* === FOOTER PRINCIPAL === */
.footer {
  background-color: #1025a1;
  color: white;
  padding: 4rem 1rem 2rem;
  font-family: 'Nunito', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* === COLONNES === */
.footer-col {
  flex: 1 1 250px;
}

.footer-logo {
  max-width: 100px;
  margin-bottom: 0.5rem;
}

.footer-nom {
  font-family: 'Gagalin', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
}

.footer-catch {
  font-size: 1rem;
  color: #ffd93d;
  margin-top: 0.3rem;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffd93d;
}

.footer-col p,
.footer-col a {
  color: white;
  font-size: 1rem;
  line-height: 1.6;
  text-decoration: none;
}

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

.footer-liens ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-liens li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 1rem;
  font-size: 0.9rem;
}

/* === RESPONSIVE === */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    flex: 1 1 100%;
  }
}

.footer-lien {
  color: #ffffff;
  text-decoration: underline;
}

/* ===== MODALE MENTIONS LÉGALES ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  color: #1025a1;
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  position: relative;
}

.modal-content h2 {
  font-family: 'Gagalin', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #1025a1;
}

.modal-content p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.close {
  color: #aaa;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #f37021;
}

/* Lien dans le footer */
.mentions-legales-lien {
  margin-top: 1rem;
}

.mentions-legales-lien a {
  font-size: 0.9rem;
  text-decoration: underline;
  color: white;
}