/* ==========================================================================
   MASAMÉ – CSS GLOBAL OPTIMISÉ
   Design responsive – CMS / Boutique / Espace Pro
   Dernière version : 28/11/2025
========================================================================== */

/* ===============================
   TYPOGRAPHIE PRINCIPALE
================================ */
.display-1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1 !important;   /* Fix global du bug Prestashop (875 → 1.1) */
  font-weight: 300;
  margin: 0.5em 0;
  text-align: center;
}

/* Sous-titres */
h2.h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Souligné Masamé */
.masame-underline,
.masame-underline-center {
  position: relative;
  display: inline-block;
}

.masame-underline::after,
.masame-underline-center::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background-color: #6c6052;
  margin: 10px auto 0;
}

/* ===============================
   HERO SECTIONS (CMS / Boutique / Pro)
================================ */
.hero {
  position: relative;
  text-align: center;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* CTA Boutons Hero */
.hero-cta {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.hero-cta .btn {
  padding: 12px 26px;
  border-radius: 45px;
  font-size: 1rem;
}

/* ===============================
   BENEFITS GRID – Espace Pro
================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.benefit-card {
  background: #f7f3ee;
  padding: 1.6rem;
  border-radius: 18px;
  height: 100%;
}

/* ===============================
   CONTACT SECTION
================================ */
.trust-contact {
  text-align: center;
  padding: 60px 20px;
}

.contact-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* ===============================
   RESPONSIVE MOBILE
================================ */
@media (max-width: 768px) {

  .hero-cta {
    position: static;
    transform: none;
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
    padding: 0 20px;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    margin-bottom: 16px;
  }

  .contact-buttons {
    flex-direction: column;
  }
}
.hero-image-wrapper {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .hero-image-wrapper {
    margin-top: 20px;
  }
}


