/* ============================
   FONTS & RESET
   ============================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose-clair:    #edcee2;
  --rose-moyen:    #e7a4c8;
  --fuchsia-vif:   #e61f93;
  --fuchsia-moyen: #d4438c;
  --rose-profond:  #b26089;
  --blanc:         #ffffff;
  --texte:         #3a2030;
  --gradient:      linear-gradient(135deg, #e61f93, #d4438c);
  --shadow:        0 4px 24px rgba(182,96,137,0.18);
  --shadow-card:   0 2px 12px rgba(58,32,48,0.07);
  --radius:        16px;
  --radius-pill:   50px;
  --ease:          0.3s ease;
  --header-h:      130px;
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--texte);
  background: #f8eff6;
  line-height: 1.75;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-style: italic;
  color: var(--texte);
  margin-bottom: 0.4rem;
}

.section-lead {
  font-size: 0.95rem;
  color: var(--rose-profond);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 3rem;
}

.section-header { text-align: center; }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--ease);
}

.btn-primary {
  background: var(--gradient);
  color: var(--blanc);
  box-shadow: 0 4px 18px rgba(230,31,147,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230,31,147,0.42);
}

.btn-outline {
  background: transparent;
  color: var(--fuchsia-vif);
  border: 2px solid var(--fuchsia-vif);
}
.btn-outline:hover {
  background: var(--gradient);
  color: var(--blanc);
  border-color: transparent;
  transform: translateY(-2px);
}

/* ============================
   HEADER
   ============================ */
header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 18px rgba(58,32,48,0.07);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--texte);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  transition: var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: var(--ease);
}

.nav-link:hover,
.nav-link.active { color: var(--fuchsia-vif); }
.nav-link:hover::after,
.nav-link.active::after { width: calc(100% - 2rem); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--texte);
  border-radius: 2px;
  transition: var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================
   LAYOUT BASE
   ============================ */
main { padding-top: var(--header-h); }

section { padding: 5rem 2rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}


/* Page hero banner */
.page-hero {
  padding: 4rem 2rem 3.5rem;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-style: italic;
  color: var(--texte);
}
.page-hero p {
  color: var(--rose-profond);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

/* ============================
   HERO (ACCUEIL)
   ============================ */
.hero {
  padding: 6rem 2rem 5rem;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fuchsia-vif);
  background: rgba(230,31,147,0.08);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-style: italic;
  color: var(--fuchsia-vif);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hero-subtitle {
  font-size: 0.97rem;
  color: #5a4050;
  margin-bottom: 2.2rem;
  max-width: 440px;
  line-height: 1.85;
}

/* Business card */
.biz-card {
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 2.4rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(231,164,200,0.35);
  text-align: center;
}

.biz-card-logo {
  height: 72px;
  margin: 0 auto 1.4rem;
  object-fit: contain;
}

.biz-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--fuchsia-vif);
  margin-bottom: 1.4rem;
  letter-spacing: 0.04em;
}

.biz-card-rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.biz-row {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 1.05rem;
  color: var(--texte);
  line-height: 1.65;
  text-align: left;
}

.biz-row .ico { flex-shrink: 0; font-size: 1rem; margin-top: 0.1rem; }
.biz-row a { color: var(--fuchsia-vif); transition: var(--ease); }
.biz-row a:hover { color: var(--fuchsia-moyen); }

.biz-card-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(231,164,200,0.4);
}
.biz-card-social a { display: flex; color: var(--fuchsia-vif); transition: var(--ease); }
.biz-card-social a:hover { color: var(--fuchsia-moyen); transform: scale(1.12); }
.biz-card-social svg { width: 26px; height: 26px; fill: currentColor; }

/* ============================
   SERVICES OVERVIEW (ACCUEIL)
   ============================ */
.services-overview { background: var(--blanc); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.svc-card {
  background: linear-gradient(145deg, #fff 0%, #fdf4fb 100%);
  border: 1px solid rgba(231,164,200,0.3);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--ease);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--rose-moyen);
}

.svc-icon { font-size: 2.4rem; margin-bottom: 0.9rem; }

.svc-card h3 {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--texte);
  margin-bottom: 0.3rem;
}

.svc-card p { font-size: 0.82rem; color: var(--rose-profond); }

/* ============================
   ABOUT (ACCUEIL)
   ============================ */
.about {}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-style: italic;
  margin-bottom: 1.2rem;
  color: var(--fuchsia-vif);
}

.about-text p { color: #5a4050; margin-bottom: 2rem; font-size: 0.95rem; }

.brand-logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: grayscale(15%) opacity(0.8);
  transition: var(--ease);
}
.brand-logo:hover { filter: grayscale(0%) opacity(1); }

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-photo:hover img { transform: scale(1.04); }

/* ============================
   DIAPORAMA (ACCUEIL)
   ============================ */
.slideshow-section {
  background: #f8eff6;
  padding: 3rem 2rem;
}

.slideshow {
  position: relative;
  overflow: hidden;
  height: 520px;
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.slide.active { opacity: 1; }

.slide img { width: 100%; height: 100%; object-fit: cover; }

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(58,32,48,0.35);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(58,32,48,0.2);
  color: #fff;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
}
.slide-btn:hover { background: var(--fuchsia-vif); border-color: transparent; }
.slide-btn.prev { left: 1.5rem; }
.slide-btn.next { right: 1.5rem; }

.slideshow-dots {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
  z-index: 5;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(58,32,48,0.25);
  border: none;
  cursor: pointer;
  transition: var(--ease);
}
.dot.active {
  background: var(--fuchsia-vif);
  transform: scale(1.25);
}

/* ============================
   GOOGLE MAPS
   ============================ */
.maps-section { padding: 0; line-height: 0; }
.maps-section iframe { width: 100%; height: 400px; border: none; display: block; }

/* ============================
   AVIS CLIENTS
   ============================ */
.reviews {
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.review-card {
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(231,164,200,0.25);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--ease);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.review-stars { font-size: 0.95rem; letter-spacing: 0.1rem; }

.review-text {
  font-size: 0.9rem;
  color: #5a4050;
  line-height: 1.85;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--texte);
  border-top: 1px solid rgba(231,164,200,0.35);
  padding-top: 0.9rem;
  margin-top: auto;
}

.review-source {
  font-size: 0.75rem;
  color: var(--rose-profond);
  font-weight: 400;
}

/* ============================
   FOOTER
   ============================ */
footer {
  background: #edcee2;
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 2rem 1.8rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--fuchsia-vif);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col p,
.footer-col address {
  font-size: 0.88rem;
  line-height: 1.85;
  font-style: normal;
  color: #000;
}

.footer-col a { color: #000; transition: var(--ease); }
.footer-col a:hover { color: var(--fuchsia-vif); }

.social-links { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 0.5rem; }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: var(--ease);
  width: fit-content;
}
.social-link:hover {
  background: var(--fuchsia-vif);
  border-color: var(--fuchsia-vif);
  color: #fff;
}
.social-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.4rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ============================
   PAGE PRESTATIONS
   ============================ */
.prestations-section { padding: 4rem 2rem 5rem; background: transparent; }

.prestations-grid {
  max-width: 1100px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.prest-card {
  background: #fff;
  border: 1px solid rgba(231,164,200,0.3);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
  transition: var(--ease);
}
.prest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--rose-moyen);
}

.prest-img {
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
}
.prest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.prest-card:hover .prest-img img { transform: scale(1.05); }

.prest-body { padding: 1.8rem 2rem; }

.prest-card h2 {
  font-size: 1.35rem;
  font-style: italic;
  color: var(--fuchsia-moyen);
  margin-bottom: 0.7rem;
}

.prest-card p { font-size: 0.9rem; color: #5a4050; line-height: 1.8; }

.prest-note {
  max-width: 600px;
  margin: 0 auto;
  background: var(--rose-clair);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.97rem;
  color: var(--texte);
}

/* ============================
   PAGE TARIFS
   ============================ */
.tarifs-section { padding: 4rem 2rem 5rem; background: transparent; }

.tarifs-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.tarifs-note {
  grid-column: 1 / -1;
}

.tarif-bloc {
  background: linear-gradient(145deg, #fff 0%, #fdf4fb 100%);
  border: 1px solid rgba(231,164,200,0.3);
  border-radius: var(--radius);
  overflow: hidden;
}

.tarif-head {
  background: var(--gradient);
  color: #fff;
  padding: 1.1rem 2rem;
}
.tarif-head h2 {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tarif-table { width: 100%; border-collapse: collapse; }
.tarif-table tr { border-bottom: 1px solid rgba(237,206,226,0.5); transition: var(--ease); }
.tarif-table tr:last-child { border-bottom: none; }
.tarif-table tr:hover { background: rgba(237,206,226,0.2); }
.tarif-table td { padding: 0.95rem 2rem; font-size: 0.93rem; color: var(--texte); }
.tarif-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--fuchsia-moyen);
  font-size: 1.05rem;
  white-space: nowrap;
}

.tarifs-note {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 1.4rem 2rem;
  background: var(--rose-clair);
  border-radius: var(--radius);
  font-size: 0.93rem;
  color: var(--texte);
}

/* ============================
   PAGE GALERIE
   ============================ */
.galerie-section { padding: 3.5rem 2rem 5rem; background: transparent; }

.galerie-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-pill);
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid rgba(231,164,200,0.55);
  background: transparent;
  color: var(--rose-profond);
  transition: var(--ease);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
}

.gallery-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.9rem;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-grid.active { display: grid; }

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(58,32,48,0.38);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.gallery-item::after {
  content: '⊕';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.4rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::before,
.gallery-item:hover::after { opacity: 1; }

.gallery-empty {
  text-align: center;
  padding: 3.5rem;
  color: var(--rose-profond);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  grid-column: 1 / -1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(18,0,12,0.93);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.lb-btn {
  position: fixed;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
  z-index: 10;
}
.lb-btn:hover { background: var(--fuchsia-vif); border-color: transparent; }

#lb-close { top: 1.2rem; right: 1.2rem; font-size: 1.2rem; }
#lb-prev   { top: 50%; transform: translateY(-50%); left: 1.2rem; }
#lb-next   { top: 50%; transform: translateY(-50%); right: 1.2rem; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 968px) {
  .hero-grid,
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .prestations-grid { grid-template-columns: repeat(2, 1fr); }
  .tarifs-wrap { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }

  .about-photo { aspect-ratio: 16/9; max-height: 340px; }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }
  section { padding: 3.5rem 1.5rem; }

  /* Header sans backdrop-filter sur mobile (sinon bug iOS Safari position:fixed) */
  header {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Logo réduit */
  .nav-logo img { height: 52px; }

  /* Hamburger visible et en fuchsia */
  .hamburger { display: flex; }
  .hamburger span { background: var(--fuchsia-vif); width: 26px; height: 2.5px; }

  /* Menu caché par défaut, affiché quand .open */
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    background: #fff;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.3rem;
    box-shadow: 0 8px 24px rgba(58,32,48,0.13);
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-link { width: 100%; text-align: center; padding: 0.75rem; }
  .footer-grid { grid-template-columns: 1fr; }

  .hero { padding: 3.5rem 1.5rem 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .prestations-grid { grid-template-columns: 1fr; }
  .tarifs-wrap { grid-template-columns: 1fr; }
  .slideshow { height: 280px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }

  #lb-prev { left: 0.5rem; }
  #lb-next { right: 0.5rem; }
}

@media (max-width: 480px) {
  .gallery-grid { gap: 0.5rem; }
  .tarif-table td { padding: 0.8rem 1rem; font-size: 0.85rem; }
  .brand-logos { gap: 1.2rem; }
  .brand-logo { height: 34px; }
}
