:root {
  --bg: #fff7f9;
  --bg-light: #fdf3f6;
  --text: #2b2325;
  --accent: #d9a5b3;     /* rose poudré */
  --accent-soft: #f0c7d3;
  --gold: #e6c58f;
  --white: #ffffff;
}

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

html,
body {
  height: 100%;
}

/* LAYOUT GLOBAL : footer collé en bas */
body {
  display: flex;
  flex-direction: column;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

main {
  flex: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.section.light {
  background: var(--bg-light);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.75rem;
  color: #38272b;
}

.section-intro {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-inline: auto;
  color: #5b464b;
}

.script-title {
  font-family: "Great Vibes", cursive;
  font-size: 2.6rem;
  font-weight: 400;
}

/* UTILITAIRES */

.center {
  text-align: center;
}

.narrow {
  max-width: 650px;
  margin-inline: auto;
}

.soft-shadow {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-radius: 1.6rem;
}

/* ANIMATIONS FADE-IN */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* LOGO DU SITE */

.logo-img {
  height: 110px;           /* ✅ un peu plus grand */
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo:hover .logo-img {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* ===========================
   HEADER (glass)
=========================== */

.site-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  gap: 1.5rem;
}

.logo {
  display: flex;
  flex-direction: column;
  font-family: "Playfair Display", serif;
}

.logo-main {
  font-weight: 700;
  letter-spacing: 0.06em;
}

.logo-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a17a84;
}

.main-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.main-nav a {
  font-size: 0.95rem;
  position: relative;
}

/* Soulignement des liens du menu */
.main-nav a:not(.btn-primary)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active:not(.btn-primary)::after {
  width: 100%;
}

/* Lien actif (mais PAS le gros bouton) */
.main-nav a.active:not(.btn-primary) {
  color: var(--accent);
  font-weight: 600;
}

/* Le gros bouton dans le header garde son texte blanc */
.main-nav a.btn-primary {
  color: var(--white);
}

/* BOUTONS */

.btn-primary {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.btn-ghost {
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.btn-ghost:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.4rem;
}

/* HERO PLEIN ÉCRAN — LCP OPTIMISÉ */
.hero {
  position: relative;
  height: 80vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: var(--bg); /* fallback */
}

/* Image réelle en fond */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Overlay rose comme avant */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(217,165,179,0.75),
    rgba(217,165,179,0.55)
  );
  z-index: 1;
}

/* Courbe blanche en bas */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  height: 80px;
  background: var(--bg);
  border-top-left-radius: 50% 80px;
  border-top-right-radius: 50% 80px;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 750px;
}

.hero-tagline {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.hero-script {
  font-family: "Great Vibes", cursive;
  font-size: 3.1rem;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.02rem;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}



/* BLOCS PROMO (MARIAGES / ÉVÉNEMENTS) */

.promo {
  margin-top: 1.5rem;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.promo-card {
  position: relative;
  border-radius: 1.8rem;
  overflow: hidden;
  min-height: 260px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 1.6rem;
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 35px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,18,21,0.85), rgba(27,18,21,0.25));
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

.promo-content {
  position: relative;
  z-index: 1;
}

.promo-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.promo-content p {
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.promo-link {
  font-size: 0.9rem;
  text-decoration: underline;
}

/* CARDS PRESTATIONS */

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

.card {
  background: var(--white);
  padding: 1.4rem 1.3rem;
  border-radius: 1.4rem;
  box-shadow: 0 12px 30px rgba(215, 164, 179, 0.18);
  border: 1px solid #f4d7e1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.card p{
  font-size: 1rem;
  line-height: 1.55;
  color:#4b353b;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(215, 164, 179, 0.26);
  border-color: var(--accent-soft);
}

/* CARROUSEL "PREMIUM" (même HTML, style amélioré) */

.carousel {
  position: relative;
  margin-top: 1.5rem;
}

.carousel-window {
  overflow: hidden;
  border-radius: 1.8rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  background: #000;
}

.carousel-track {
  display: flex;
  transition: transform 0.55s ease-in-out;
}

.carousel-track img {
  min-width: 100%;
  object-fit: cover;
  height: 420px;
  object-position: center;
  transition: transform 0.6s ease-out;
}

.carousel:hover .carousel-track img {
  transform: scale(1.02);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(255, 255, 255, 0.95);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn.prev { left: 14px; }
.carousel-btn.next { right: 14px; }

.carousel-btn:hover {
  background: var(--accent);
  color: var(--white);
}

/* TESTIMONIALS */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial,
.testimonials-list .testimonial {
  background: var(--white);
  padding: 1.4rem 1.3rem;
  border-radius: 1.4rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
  border: 1px solid #f2dde4;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 0.75rem;
  color: #4b353b;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.95rem;
}

/* PAGE HERO (autres pages) */

.page-hero {
  background: linear-gradient(to bottom, #eac1ce, #fff7f9);
  padding: 2.6rem 0 2.2rem;
  text-align: center;
}

.page-hero h1 {
  font-family: "Great Vibes", cursive;
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
  color: #3b262b;
}

.page-hero p {
  color: #5d4349;
}

/* CONTACT */

.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.checklist {
  list-style: none;
  margin: 1rem 0;
}

.checklist li::before {
  content: "✔ ";
  color: var(--accent);
}

/* CTA */

.cta {
  background: #2a2325;
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-title {
  font-size: 2.2rem;
}

/* ===========================
   FOOTER PREMIUM
=========================== */

.site-footer {
  position: relative;
  background: #1f171b;
  color: #fbeff4;
  margin-top: 3rem;
  padding-top: 2.5rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--gold));
  opacity: 0.8;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 280px;
}

.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}

.footer-location {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-col {
  min-width: 160px;
}

.footer-title {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.footer-col p,
.footer-col a {
  font-size: 0.9rem;
  color: #fbeff4;
  opacity: 0.85;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--accent-soft);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid #3a2c33;
  margin-top: 2rem;
  padding: 1rem 0 1.2rem;
  font-size: 0.82rem;
  text-align: center;
  color: #caaec0;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .promo-grid {
    grid-template-columns: 1fr;
  }
  .grid-3,
  .testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .cta-inner,
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
  }
  .carousel-track img {
    height: 340px;
  }
}

@media (max-width: 700px) {
  .grid-3,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .header-inner {
    align-items: center;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 1rem;
    gap: 0.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero {
    height: 70vh;
  }

  .hero-script {
    font-size: 2.4rem;
  }

  .carousel-track img {
    height: 260px;
  }

  .logo-img {
    height: 72px; /* ✅ logo reste joli en mobile */
  }
}
/* ======== MENUS PAGE – DESIGN PRO (à coller tout en bas) ======== */

.menu-page {
  padding-top: 3rem;
}

.menu-page-intro {
  max-width: 700px;
  margin: 0 auto 3rem auto;
  text-align: center;
  color: #5b464b;
}

.menu-page-intro p {
  margin-top: 1rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

.menu-badge {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: var(--bg-light);
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
}

/* Layout */
.menu-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: flex-start;
}

.menu-column {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.menu-column-title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #38272b;
}

.menu-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: #fff;
}

.menu-tag-soft {
  border-color: var(--gold);
  color: var(--gold);
}

/* Cartes */
.menu-section {
  background: var(--white);
  border-radius: 1.4rem;
  padding: 1.1rem 1.1rem 1.1rem 1.2rem;
  box-shadow: 0 8px 22px rgba(0,0,0,0.04);
  border: 1px solid #f4dde4;
  position: relative;
}

.menu-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  border-radius: 20px;
  background: linear-gradient(to bottom, var(--accent), var(--gold));
  opacity: 0.85;
}

.menu-section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: #3c262c;
}

.menu-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0.3rem;
}

.menu-list li {
  font-size: 0.95rem;
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.25rem;
  color: #50373c;
}

.menu-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.menu-note {
  font-size: 0.95rem;
  color: #5d4349;
  margin-top: 0.2rem;
}

/* Responsive */
@media (max-width: 900px) {
  .menu-layout {
    grid-template-columns: 1fr;
  }
}
