/* =====================================================
   RESET & BASE
   ===================================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  color: #241F37;
  background-color: #F2F0EA;
  background-image: radial-gradient(
    rgba(36,31,55,0.035) 1px,
    transparent 1px
  );
  background-size: 26px 26px;
}

/* =====================================================
   HEADER / HERO
   ===================================================== */
header {
  text-align: center;
  padding: 80px 20px 90px;
  background: linear-gradient(
    180deg,
    #D6CEE8 0%,
    #F2F0EA 100%
  );
}

header h1 {
  margin: 10px 0 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

header p {
  margin: 14px auto 0;
  font-size: 1.1em;
  opacity: 0.9;
  max-width: 760px;
}

/* =====================================================
   LOGO
   ===================================================== */
.logo {
  max-width: 300px;
  width: 100%;
  margin-bottom: 22px;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.18));
}

@media (max-width: 600px) {
  .logo {
    max-width: 180px;
  }
}

/* =====================================================
   SECTIONS (CARTES)
   ===================================================== */
section {
  max-width: 950px;
  margin: 60px auto;
  padding: 45px 35px;
  background-color: #FFFFFF;
  border-radius: 22px;
  box-shadow:
    0 20px 50px rgba(36,31,55,0.10),
    0 2px 0 rgba(255,255,255,0.8) inset;
}

/* =====================================================
   ANIMATION AU SCROLL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   TYPOGRAPHIE
   ===================================================== */
h2 {
  margin-top: 0;
  font-weight: 500;
  letter-spacing: 0.4px;
}

h3 {
  margin-top: 30px;
  font-weight: 500;
}

p {
  max-width: 720px;
  line-height: 1.75;
  color: #3F3A55;
}

strong {
  font-weight: 600;
  color: #241F37;
}

em {
  font-style: normal;
  color: #6F6A86;
}

ul {
  padding-left: 22px;
}

ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* =====================================================
   IMAGE PRINCIPALE
   ===================================================== */
.photo {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(36,31,55,0.18);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.photo:hover {
  transform: scale(1.03);
  box-shadow: 0 28px 60px rgba(36,31,55,0.28);
}

/* =====================================================
   SERVICES – VERSION ÉPURÉE & LISIBLE
   ===================================================== */
.services-clean .lead {
  font-size: 1.05em;
  font-weight: 500;
  color: #4F4A66;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px 56px;
}

.service-item {
  padding-top: 6px;
}


.service-item h3 {
  margin: 0 0 6px;
  letter-spacing: 0.3px;
}

.service-item p {
  margin: 0;
  font-size: 0.95em;
  line-height: 1.65;
  color: #4F4A66;
}

@media (max-width: 600px) {
  .services-list {
    gap: 24px;
  }
}

/* =====================================================
   LAVERIE – PHOTOS
   ===================================================== */
.laverie-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 25px;
}

.laverie-photos img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.laverie-photos img:hover {
  transform: scale(1.04);
}

@media (max-width: 700px) {
  .laverie-photos {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   ÉQUIPEMENTS LAVERIE
   ===================================================== */
.equipements li {
  margin-bottom: 8px;
  font-weight: 500;
}

/* =====================================================
   ÉTAT DES MACHINES – WI-LINE
   ===================================================== */
.machine-status {
  margin-top: 30px;
  background-color: #FFFFFF;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(36,31,55,0.15);
}

.machine-status iframe {
  width: 100%;
  height: 800px;
  border: none;
}

@media (max-width: 600px) {
  .machine-status iframe {
    height: 880px;
  }
}

/* =====================================================
   AVIS CLIENTS
   ===================================================== */
.avis-list {
  display: grid;
  gap: 26px;
  margin-top: 30px;
}

.avis blockquote {
  margin: 0;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, #FFFFFF, #F7F5FB);
  box-shadow: 0 16px 40px rgba(36,31,55,0.12);
}

.avis blockquote::before {
  content: "“";
  font-size: 3rem;
  line-height: 1;
  color: #A186BD;
  display: block;
}

.avis cite {
  display: block;
  margin-top: 10px;
  font-weight: 500;
  opacity: 0.7;
}
.avis blockquote {
  position: relative;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background-color 0.35s ease;
}

/* Effet au survol */
.avis blockquote:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 50px rgba(36,31,55,0.18);
  background-color: #FFFFFF;
}

/* Accent lavande discret à gauche */
.avis blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  width: 4px;
  height: 76%;
  background-color: #A186BD;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.avis blockquote:hover::after {
  opacity: 1;
}


/* =====================================================
   INFOS & PRO
   ===================================================== */
.infos {
  background: linear-gradient(180deg, #ECE7F5 0%, #F2F0EA 100%);
  text-align: center;
}

.infos p,
.infos h3 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pro {
  background: linear-gradient(135deg, #FFFFFF, #F2F0EA);
}

/* =====================================================
   BOUTONS
   ===================================================== */
.buttons {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.btn {
  padding: 16px 22px;
  width: 100%;
  max-width: 420px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

.btn.call {
  background-color: #B6BF89;
  color: #241F37;
}

.btn.directions {
  background-color: #D6CEE8;
  color: #241F37;
}

.btn.review {
  background-color: #241F37;
  color: #F2F0EA;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background-color: #241F37;
  color: #F2F0EA;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9em;
  margin-top: 80px;
}

/* =====================================================
   RESPONSIVE GLOBAL
   ===================================================== */
@media (max-width: 600px) {
  section {
    margin: 35px 16px;
    padding: 35px 22px;
  }
}
/* =========================
   SECTION VITRINE – SANS CADRE
   ========================= */
section.vitrine {
  background: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}
/* =========================
   AVIS – LISTE AVEC FONDU
   ========================= */
.avis-fade {
  max-height: 620px;   /* ⬅️ permet d’afficher ~3 avis */
  overflow-y: auto;
  padding-right: 10px;
  position: relative;
}


/* Fondu haut et bas */
.avis-fade::before,
.avis-fade::after {
  content: "";
  position: sticky;
  left: 0;
  width: 100%;
  height: 40px;
  pointer-events: none;
  z-index: 2;
}

.avis-fade::before {
  top: 0;
  background: linear-gradient(
    to bottom,
    #FFFFFF 0%,
    rgba(255,255,255,0) 100%
  );
}

.avis-fade::after {
  bottom: 0;
  background: linear-gradient(
    to top,
    #FFFFFF 0%,
    rgba(255,255,255,0) 100%
  );
}
@media (max-width: 600px) {
  .avis-fade {
    max-height: 520px;
  }
}
/* =========================
   LIEN DIRECT – ÉTAT DES MACHINES
   ========================= */
.machine-link {
  margin-top: 14px;
  text-align: center; /* centre le bloc */
}

.machine-link a {
  display: inline-block;              /* ⬅️ clé du centrage propre */
  font-size: 0.95em;
  color: #6F6A86;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}

.machine-link a:hover {
  color: #241F37;
}
