/* =========================
   BASE
========================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #2F3E3D;
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   CONTENEUR SPÉCIFIQUE À LE12
========================= */

.le12-container {
  max-width: 1100px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

/* =========================
   BLOCS
========================= */

.bloc {
  padding: 70px 0;
}

.bloc-a,
.bloc-c,
.bloc-e {
  background-color: #F6F1EA;
}

.bloc-b,
.bloc-d {
  background-color: #f3eadf;
}

.bloc-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 40px;
  align-items: center;
}

.bloc-grid.inverse {
  grid-template-columns: 40% 60%;
}

.bloc-col {
  padding: 20px;
}

.bloc-col h2 {
  margin-top: 0;
  margin-bottom: 15px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #2F3E3D;
}

.bloc-col p {
  margin: 0 0 1rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #2F3E3D;
}

.bloc-e .bloc-grid {
  grid-template-columns: 1fr;
}

.bloc-e .bloc-col {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
/* ===== Bloc offre (Partie E) ===== */

.bloc-e .offre {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* Titre */

.bloc-e h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

/* Liste */

.offre-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offre-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  font-size: 1.05rem;
  line-height: 1.8;

  margin-bottom: 14px;
}

/* Icônes */

.offre-list .icon {
  font-size: 1.2rem;
  opacity: 0.85;
}

/* Option : léger effet au survol */

.offre-list li:hover {
  transform: translateY(-1px);
  transition: 0.2s ease;
}

/* Mobile */

@media (max-width: 768px) {
  .bloc-e h2 {
    font-size: 2rem;
  }

  .offre-list li {
    flex-direction: column;
    gap: 6px;
  }
}

/* =========================
   IMAGES HORS CARROUSEL
========================= */

.bloc-col > p > img,
.bloc-col img.scalable,
.bloc-col img.rounded {
  width: 100%;
  height: auto;
}

.bloc-col img.rounded {
  border-radius: 12px;
}

/* =========================
   CARROUSELS BOOTSTRAP
========================= */

.carousel {
  width: 100%;
}

.carousel-inner {
  border-radius: 12px;
  overflow: hidden;
}

.carousel-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Flèches plus visibles */
.carousel-control-prev,
.carousel-control-next {
  width: 12%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) grayscale(100%);
}

/* =========================
   PETITS AJUSTEMENTS TYPO
========================= */

.x1 {
  font-size: 1rem;
  line-height: 1.8;
}

.tagline {
  margin-bottom: 20px;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }

  .socials {
    justify-content: center;
  }
}

/* ===== Menu : suppression des soulignements ===== */
.site-header .main-nav a,
.site-header .logo {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.site-header .main-nav a:hover,
.site-header .main-nav a:focus,
.site-header .main-nav a:active,
.site-header .logo:hover,
.site-header .logo:focus,
.site-header .logo:active {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .le12-container {
    width: calc(100% - 24px);
  }

  .bloc {
    padding: 45px 0;
  }

  .bloc-grid,
  .bloc-grid.inverse {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .bloc-col {
    padding: 10px 0;
  }
}
