/* ===================================
   SPA FLEURS DE LYS â€” Global Styles
   =================================== */

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

/* â€”â€”â€” CSS Variables â€”â€”â€” */
:root {
  --gold:        #C9A96E;
  --gold-light:  #E8D4A8;
  --gold-dark:   #9A7A4A;
  --cream:       #EFEBE1;
  --cream-dark:  #E3DEC1;
  --rose:        #F2D5D5;
  --rose-dark:   #E0B8B8;
  --green:       #3D5A4C;
  --green-light: #5A7A6A;
  --green-dark:  #2A3D33;
  --white:       #F7F4ED;
  --text-dark:   #2C2A26;
  --text-mid:    #4A4A4A;
  --text-light:  #7A7A7A;
  --danger:      #dc3545;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', sans-serif;

  --shadow-sm:  0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);
  --shadow-gold: 0 4px 20px rgba(201,169,110,0.30);

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* â€”â€”â€” Reset & Base â€”â€”â€” */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* â€”â€”â€” Scrollbar â€”â€”â€” */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* â€”â€”â€” Typography â€”â€”â€” */
/* â€”â€”â€” Typography â€”â€”â€” */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; letter-spacing: 0.5px; }

.section-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: var(--font-elegant);
  font-size: 1.25rem;
  color: var(--text-mid);
  font-style: italic;
  max-width: 600px;
}

/* ——— Animations Utilitaires ——— */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }
  50% { box-shadow: 0 0 35px rgba(212, 175, 55, 0.6); }
  100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }
}

.animate-fade-up {
  animation: fadeUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

.glass-panel {
  background: rgba(20, 20, 20, 0.6) !important;
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* â€”â€”â€” Buttons â€”â€”â€” */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* â€”â€”â€” Navigation â€”â€”â€” */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0.85rem 5%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}

.navbar.scrolled .brand-name { color: var(--green-dark); }

.nav-logo-text .brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: color var(--transition);
}

.navbar.scrolled .brand-sub { color: var(--gold-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  transition: color var(--transition);
}

.navbar.scrolled .nav-links a { color: var(--text-mid); }

.lang-btn {
  color: #ffffff !important;
  transition: color var(--transition);
}
.navbar.scrolled .lang-btn {
  color: var(--text-mid) !important;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--gold-light); }
.navbar.scrolled .nav-links a:hover { color: var(--gold); }


.nav-cta { margin-left: 1rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-hamburger span { background: var(--green-dark); }

/* â€”â€”â€” Hero Section â€”â€”â€” */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.00); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 61, 51, 0.72) 0%,
    rgba(61, 90, 76, 0.45) 50%,
    rgba(42, 61, 51, 0.60) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,169,110,0.20);
  border: 1px solid rgba(201,169,110,0.40);
  border-radius: var(--radius-xl);
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  animation: fadeInDown 0.8s ease both;
}

.hero-badge span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.9s 0.2s ease both;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-desc {
  font-family: var(--font-elegant);
  font-size: 1.25rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.9s 0.35s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.5s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

/* â€”â€”â€” Section Layout â€”â€”â€” */
.section {
  padding: 6rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-centered { text-align: center; }
.section-centered .section-subtitle { margin: 0 auto; }

/* â€”â€”â€” Divider â€”â€”â€” */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
}
.divider-icon { color: var(--gold); font-size: 1rem; }

/* â€”â€”â€” About Section â€”â€”â€” */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 6rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.about-images {
  position: relative;
  height: 520px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 85%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-main:hover img { transform: scale(1.04); }

.about-img-small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-small:hover img { transform: scale(1.04); }

.about-badge {
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  width: 88px;
  height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  box-shadow: var(--shadow-gold);
  z-index: 2;
}

.about-badge .years { font-size: 1.6rem; font-weight: 700; line-height: 1; }
.about-badge .years-text { font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; }

.about-text .section-subtitle { margin-bottom: 1.5rem; }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--cream-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.about-feature-text strong {
  display: block;
  font-size: 0.95rem;
  font-family: var(--font-display);
  color: var(--green-dark);
  margin-bottom: 0.1rem;
}

.about-feature-text span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* â€”â€”â€” Services Section â€”â€”â€” */
.services-section {
  background: var(--green-dark);
  padding: 6rem 5%;
}

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

.services-section .section-title { color: var(--cream); }
.services-section .section-subtitle { color: rgba(250,247,242,0.7); }
.services-section .section-tag { color: var(--gold); }

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

.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,110,0.20);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.service-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(201,169,110,0.50);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.service-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-img img,
.service-card-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.service-card:hover .service-card-img img,
.service-card:hover .service-card-img video { transform: scale(1.08); }

.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,61,51,0.6) 0%, transparent 60%);
}

.service-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(201,169,110,0.90);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-xl);
  z-index: 1;
}

.service-card-body {
  padding: 1.5rem;
}

.service-card-body h3 {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.service-card-body p {
  font-size: 0.88rem;
  color: rgba(250,247,242,0.65);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
}

.service-duration {
  font-size: 0.78rem;
  color: rgba(250,247,242,0.50);
  letter-spacing: 0.05em;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: gap var(--transition);
}
.service-card:hover .service-btn { gap: 0.7rem; }

/* â€”â€”â€” Stats Bar â€”â€”â€” */
.stats-bar {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 3rem 5%;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item { padding: 0.5rem; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 0.3rem;
  display: block;
}

/* â€”â€”â€” Galerie â€”â€”â€” */
.gallery-section { padding: 6rem 5%; }
.gallery-inner { max-width: 1200px; margin: 0 auto; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 1rem;
  margin-top: 3.5rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42,61,51,0);
  transition: background var(--transition);
}
.gallery-item:hover::after { background: rgba(42,61,51,0.25); }

.gallery-item--1 { grid-column: span 5; grid-row: span 2; }
.gallery-item--2 { grid-column: span 4; }
.gallery-item--3 { grid-column: span 3; }
.gallery-item--4 { grid-column: span 3; }
.gallery-item--5 { grid-column: span 4; }

/* â€”â€”â€” Testimonials â€”â€”â€” */
.testimonials-section {
  background: var(--cream-dark);
  padding: 6rem 5%;
}

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

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--gold-light);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--cream-dark);
  padding-top: 1rem;
}

.testimonial-author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  flex-shrink: 0;
}

.testimonial-author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green-dark);
  display: block;
}

.testimonial-author-title {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* â€”â€”â€” CTA Section â€”â€”â€” */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 7rem 5%;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42,61,51,0.80);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-family: var(--font-elegant);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.80);
  font-style: italic;
  margin-bottom: 2.5rem;
}

.cta-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.cta-divider-line {
  width: 60px;
  height: 1px;
  background: rgba(201,169,110,0.50);
}

.cta-divider-icon { color: var(--gold); font-size: 1.2rem; }

/* â€”â€”â€” Contact & Horaires â€”â€”â€” */
.contact-section {
  padding: 6rem 5%;
}

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

.contact-info h2 { color: var(--green-dark); margin-bottom: 1rem; }

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--cream-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-card-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.25rem;
}

.contact-card-text span, .contact-card-text a {
  font-size: 0.95rem;
  color: var(--text-mid);
  transition: color var(--transition);
}
.contact-card-text a:hover { color: var(--gold); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.hours-table tr {
  border-bottom: 1px solid var(--cream-dark);
}

.hours-table tr:last-child { border-bottom: none; }

.hours-table td {
  padding: 0.6rem 0;
  font-size: 0.9rem;
}

.hours-table td:first-child {
  font-weight: 700;
  color: var(--green-dark);
  width: 45%;
}

.hours-table td:last-child { color: var(--text-mid); }

.hours-closed { color: var(--rose-dark) !important; }

/* â€”â€”â€” Footer â€”â€”â€” */
.footer {
  background: var(--green-dark);
  color: rgba(250,247,242,0.75);
  padding: 4rem 5% 2rem;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,169,110,0.20);
}

.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.2rem;
}

.footer-brand .brand-tagline {
  font-family: var(--font-elegant);
  font-size: 0.95rem;
  color: var(--gold-light);
  font-style: italic;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.87rem;
  color: rgba(250,247,242,0.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-bottom-right a {
  color: rgba(250,247,242,0.50);
  transition: color var(--transition);
}
.footer-bottom-right a:hover { color: var(--gold); }

/* â€”â€”â€” Animations â€”â€”â€” */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* â€”â€”â€” Responsive â€”â€”â€” */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-wrapper { gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-right-actions .nav-cta { display: none; } /* Cacher "Réserver" sur mobile pour gagner de la place */
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-wrapper { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--1 { grid-column: span 2; height: 240px; }
  .gallery-item--2,
  .gallery-item--3,
  .gallery-item--4,
  .gallery-item--5 { grid-column: span 1; height: 180px; }
  .hero h1 { font-size: 2.6rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

/* â€”â€”â€” Mobile Nav Overlay â€”â€”â€” */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(42,61,51,0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition);
}
.mobile-nav-close:hover { color: var(--gold); }

/* ——— Dark Mode Variables ——— */
[data-theme="dark"] {
  --cream:       #121212;
  --cream-dark:  #1E1E1E;
  --text-dark:   #F0F0F0;
  --text-mid:    #CCCCCC;
  --text-light:  #A0A0A0;
  --green:       #5A7A6A;
  --green-dark:  #E8D4A8;
  --white:       #1E1E1E;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.4);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.6);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.8);
}
[data-theme="dark"] .navbar.scrolled {
  background: rgba(30, 30, 30, 0.96);
}
[data-theme="dark"] .service-card {
  background: rgba(255,255,255,0.03);
}
[data-theme="dark"] .testimonial-card {
  background: #1E1E1E;
  border-color: #333;
}
[data-theme="dark"] .hours-table td {
  border-bottom-color: #333;
}

/* ——— Custom Cursor Disabled ——— */
@media (pointer: fine) {
  /* Native cursor restored */
}

.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 169, 110, 0.5);
}
/* ==========================================================================
   SUPPLEMENT VISUAL CARDS
   ========================================================================== */
.supplement-card input[type="checkbox"]:checked + .supplement-card-content {
  border-color: var(--gold) !important;
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.2) !important;
  transform: translateY(-3px);
}
.supplement-card input[type="checkbox"]:checked + .supplement-card-content .supp-check-icon {
  opacity: 1 !important;
  transform: scale(1) !important;
}
.supplement-card:hover .supplement-card-content {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* ==========================================================================
   MOBILE STICKY SUMMARY BUTTON
   ========================================================================== */
.mobile-sticky-summary {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  padding: 1rem;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  z-index: 9999;
  border-top: 1px solid var(--cream-dark);
  align-items: center;
  justify-content: space-between;
}
.mobile-sticky-summary .total-price-mobile {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
}
.mobile-sticky-summary .btn {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .mobile-sticky-summary {
    display: flex;
  }
  body {
    padding-bottom: 80px;
  }
}
/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  color: #FFF;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }
}

/* ==========================================================================
   GIFT CARDS SECTION
   ========================================================================== */
.gift-section {
  padding: 6rem 5%;
  background: linear-gradient(rgba(30, 30, 30, 0.8), rgba(30, 30, 30, 0.9)), url('../images/ambiance.png') center/cover fixed;
  text-align: center;
  color: var(--white);
  position: relative;
}

.gift-card-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.gift-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* ==========================================================================
   DYNAMIC IMAGE GALLERY
   ========================================================================== */
.gallery-section {
  padding: 5rem 5%;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 6rem 5%;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--cream-dark);
}

.faq-summary {
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--green-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

details[open] .faq-summary::after {
  transform: rotate(45deg);
}

.faq-content {
  padding-bottom: 1.5rem;
  color: var(--text-mid);
  line-height: 1.6;
}
/* ==========================================================================
   PRELOADER (SPLASH SCREEN)
   ========================================================================== */
#preloader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--cream);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 150px;
  animation: pulse-logo 2s infinite ease-in-out;
}

@keyframes pulse-logo {
  0% { transform: scale(1); opacity: 0.8; filter: drop-shadow(0 0 10px var(--gold)); }
  50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 25px var(--gold)); }
  100% { transform: scale(1); opacity: 0.8; filter: drop-shadow(0 0 10px var(--gold)); }
}

/* ==========================================================================
   TESTIMONIALS CAROUSEL
   ========================================================================== */
.testimonials-section {
  padding: 6rem 5%;
  background: var(--cream-dark);
}

.testimonials-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 2rem 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.testimonials-carousel::-webkit-scrollbar {
  height: 6px;
}

.testimonials-carousel::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
}

.testimonials-carousel::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

.testimonial-card {
  min-width: 350px;
  background: var(--cream);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,169,110,0.2);
  scroll-snap-align: center;
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-family: var(--font-display);
  color: var(--green-dark);
  font-weight: 600;
}

@media (max-width: 768px) {
  .testimonial-card { min-width: 280px; padding: 1.5rem; }
}

/* ==========================================================================
   CONTACT & MAP SECTION
   ========================================================================== */
.contact-section {
  padding: 6rem 5%;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: rgba(201,169,110,0.1);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-item-content h3 {
  color: var(--green-dark);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

.contact-item-content p {
  color: var(--text-mid);
  line-height: 1.6;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-map { height: 300px; }
}
/* ==========================================================================
   COMING SOON SECTION
   ========================================================================== */
.coming-soon-section {
  padding: 6rem 5%;
  background: var(--cream-dark);
}

.coming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.coming-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.coming-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.04);
}

.coming-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.coming-icon {
  font-size: 2.5rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.coming-card h3 {
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.coming-card p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.badge-bientot {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(201, 169, 110, 0.1);
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
