/* ============================================================
   Massage Asiatique Casablanca — Centre de Bien-Être
   Luxury theme: black + bronze + gold (matches official branding card)
   ============================================================ */

:root {
  --black: #1a1108;
  --black-deep: #0f0905;
  --brown-dark: #2b1d14;
  --brown: #3d2818;
  --bronze: #8b5a2b;
  --bronze-light: #b8843d;
  --tan: #a57f5f;
  --gold: #e8d26b;
  --gold-bright: #f0d878;
  --gold-soft: rgba(232, 210, 107, 0.15);
  --cream: #f5efe1;
  --white: #ffffff;
  --muted: rgba(245, 239, 225, 0.7);
  --muted-dim: rgba(245, 239, 225, 0.5);
  --line: rgba(232, 210, 107, 0.25);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 8px 30px rgba(232, 210, 107, 0.25);
}

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

html { scroll-behavior: smooth; background: var(--black-deep); }

body {
  background: var(--black-deep);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  letter-spacing: 0.01em;
  padding-bottom: 110px;
}

/* Last section needs extra bottom space so booking bar never covers it */
#contact { padding-bottom: 50px; }
footer { padding-bottom: 130px; }

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* NAVBAR */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(15, 9, 5, 0.92);
  backdrop-filter: blur(14px);
  z-index: 1000;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  transition: all 0.3s ease;
}

.nav-inner { display: flex; justify-content: space-between; align-items: center; }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1.1;
}
.nav-logo span {
  display: block;
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 14px; }

#lang-toggle {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 7px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  cursor: pointer;
  border-radius: 2px;
}
#lang-toggle:hover { background: var(--gold); color: var(--black-deep); }

.hamburger { display: none; background: transparent; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { width: 26px; height: 1.5px; background: var(--gold); }

.mobile-nav {
  display: none;
  position: fixed; top: 60px; left: 0; right: 0;
  background: var(--black-deep);
  border-bottom: 1px solid var(--line);
  z-index: 999;
}
.mobile-nav ul { list-style: none; padding: 16px 28px; }
.mobile-nav li { padding: 14px 0; border-bottom: 1px solid var(--line); }
.mobile-nav li:last-child { border-bottom: none; }
.mobile-nav.open { display: block; }

/* HERO */
#hero {
  position: relative;
  min-height: 75vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 28px 80px;
  background: radial-gradient(ellipse at center, var(--brown-dark) 0%, var(--black) 60%, var(--black-deep) 100%);
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid var(--line);
  opacity: 0.4;
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  opacity: 0.6;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 880px; }

.lotus-icon { display: inline-block; width: 60px; height: 60px; margin-bottom: 24px; color: var(--gold); opacity: 0.9; }

.hero-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
  padding: 8px 20px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-title em { color: var(--gold); font-style: italic; font-weight: 400; }

.hero-subtitle {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 32px;
}

.hero-slogan { display: flex; justify-content: center; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-slogan span {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 2px;
}
.hero-slogan .sep { color: var(--bronze-light); font-style: normal; }

.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  color: var(--black-deep);
  box-shadow: 0 4px 16px rgba(232, 210, 107, 0.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232, 210, 107, 0.5); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black-deep); }
.btn-wa {
  background: #25D366;
  color: white;
  padding: 18px 36px;
  font-size: 0.95rem;
}
.btn-wa:hover { background: #1da851; transform: translateY(-2px); }

/* SECTIONS */
section { padding: 90px 0; position: relative; }
.section--alt { background: var(--brown-dark); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 16px;
}
.section-title em { color: var(--gold); font-style: italic; }

.divider {
  width: 70px; height: 1px;
  background: var(--gold);
  margin: 20px auto;
  position: relative;
}
.divider::before, .divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}
.divider::before { left: -12px; }
.divider::after { right: -12px; }

/* TARIFS */
.tarifs-intro {
  text-align: center;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.pricing-card {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.pricing-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.pricing-card-header {
  padding: 24px 20px 16px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.pricing-card-header .icon {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.pricing-card-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.pricing-card-body { padding: 16px 24px 24px; flex: 1; }

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dotted rgba(232, 210, 107, 0.15);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row .duration {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.pricing-row .price {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
}

/* Card ribbon (real element, never clipped) */
.card-ribbon {
  display: block;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--black-deep);
  border-radius: 4px 4px 0 0;
  line-height: 1.4;
}
.ribbon-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  box-shadow: inset 0 -2px 8px rgba(0, 0, 0, 0.15);
}
.ribbon-bronze {
  background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-light) 50%, var(--bronze) 100%);
  color: var(--cream);
  box-shadow: inset 0 -2px 8px rgba(0, 0, 0, 0.25);
}

/* Featured — Best Seller, full width */
.pricing-card.featured {
  grid-column: 1 / -1;
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, rgba(232, 210, 107, 0.08) 0%, var(--brown) 50%, rgba(232, 210, 107, 0.05) 100%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), inset 0 0 60px rgba(232, 210, 107, 0.05);
}

/* Best Value (Relaxant) — full width */
.pricing-card.best-value {
  grid-column: 1 / -1;
  border: 2px solid var(--bronze-light);
  background: linear-gradient(135deg, rgba(184, 132, 61, 0.08) 0%, var(--brown) 50%, rgba(184, 132, 61, 0.03) 100%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.pricing-card.best-value:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(232, 210, 107, 0.25);
}

.pricing-card.featured .pricing-card-header,
.pricing-card.best-value .pricing-card-header {
  padding-top: 22px;
}
.pricing-card.best-value .pricing-card-header { border-bottom: 1px solid var(--bronze-light); }
.pricing-card.featured .pricing-card-header { border-bottom: 1px solid var(--gold); }

.pricing-card.featured .pricing-card-header h3,
.pricing-card.best-value .pricing-card-header h3 {
  font-size: 1.7rem;
}

.pricing-card-subtitle {
  text-align: center;
  color: var(--muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  margin-top: 8px;
}

.pricing-card.featured .pricing-card-body,
.pricing-card.best-value .pricing-card-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 28px;
}

.pricing-card.featured .price-block,
.pricing-card.best-value .price-block {
  text-align: center;
  padding: 22px 18px;
  background: var(--black-deep);
  border-radius: 4px;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}
.pricing-card.featured .price-block:hover,
.pricing-card.best-value .price-block:hover {
  border-color: var(--gold);
  background: var(--black);
}
.pricing-card.featured .price-block .duration,
.pricing-card.best-value .price-block .duration {
  display: block;
  color: var(--cream);
  font-size: 0.8rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.pricing-card.featured .price-block .price,
.pricing-card.best-value .price-block .price {
  display: block;
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.about-feature {
  text-align: center;
  padding: 36px 28px;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: all 0.4s ease;
  position: relative;
}
.about-feature::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 1px;
  background: var(--gold);
}
.about-feature:hover { border-color: var(--gold); transform: translateY(-4px); background: var(--brown-dark); }
.about-feature-icon { font-size: 2.4rem; margin-bottom: 18px; color: var(--gold); }
.about-feature h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}
.about-feature p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }

/* CONTACT */
.contact-card {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 48px 36px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 3px;
  background: var(--gold);
}

.contact-info { display: flex; flex-direction: column; gap: 18px; margin: 28px 0 32px; }
.contact-info-item {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: var(--cream); font-size: 1rem;
}
.contact-info-item .icon-circle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bronze);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-item strong { color: var(--gold); font-weight: 600; }
.contact-info-item a:hover { color: var(--gold); }

.hours-bar {
  background: var(--black-deep);
  border: 1px solid var(--gold);
  padding: 18px 28px;
  border-radius: 2px;
  margin: 0 auto 28px;
  display: inline-flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.hours-bar span { color: var(--cream); font-size: 0.95rem; }
.hours-bar strong { color: var(--gold); font-weight: 600; margin-right: 4px; }

/* FOOTER */
footer {
  background: var(--black-deep);
  border-top: 1px solid var(--gold);
  padding: 48px 0 28px;
  text-align: center;
  color: var(--muted-dim);
  font-size: 0.85rem;
}
footer .nav-logo { margin-bottom: 18px; display: inline-block; }
footer p { margin-bottom: 8px; letter-spacing: 0.5px; }
footer .gold { color: var(--gold); }
footer .footer-divider { width: 60px; height: 1px; background: var(--line); margin: 24px auto; }

/* STICKY BOOKING BAR */
.booking-bar {
  position: fixed;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 999;
  display: flex;
  gap: 10px;
  background: rgba(15, 9, 5, 0.85);
  backdrop-filter: blur(12px);
  padding: 8px;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  max-width: 540px;
  margin: 0 auto;
}

.book-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 56px;
  position: relative;
  overflow: hidden;
}
.book-btn:hover { filter: brightness(1.05); }
.book-btn:active { transform: scale(0.97); }

.book-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.book-btn-text strong {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.book-btn-text small {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 2px;
  white-space: nowrap;
}

.book-btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  color: var(--black-deep);
  box-shadow: 0 4px 14px rgba(232, 210, 107, 0.35);
  animation: bar-pulse-gold 2.8s infinite;
}
.book-btn-gold .book-btn-text small { color: var(--brown-dark); }

.book-btn-wa {
  background: linear-gradient(135deg, #25D366 0%, #1ebc5a 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  animation: bar-pulse-wa 2.5s infinite 1.2s;
}
.book-btn-wa .book-btn-text small { color: rgba(255, 255, 255, 0.85); }

@keyframes bar-pulse-gold {
  0%, 100% { box-shadow: 0 4px 14px rgba(232, 210, 107, 0.35); }
  50% { box-shadow: 0 4px 14px rgba(232, 210, 107, 0.35), 0 0 0 8px rgba(232, 210, 107, 0); }
}
@keyframes bar-pulse-wa {
  0%, 100% { box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35), 0 0 0 8px rgba(37, 211, 102, 0); }
}

/* RESPONSIVE */
@media (max-width: 968px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured .pricing-card-body,
  .pricing-card.best-value .pricing-card-body { grid-template-columns: 1fr; }
  .card-ribbon { font-size: 0.65rem; letter-spacing: 2px; padding: 7px 12px; }
  section { padding: 60px 0; }
  #hero { padding: 120px 24px 60px; min-height: auto; }
  .hero-title { font-size: 2.6rem; }
  .hero-slogan { gap: 12px; }
  .hero-slogan span { font-size: 1.05rem; }
  .contact-card { padding: 36px 24px; }
  .hours-bar { gap: 16px; padding: 14px 20px; }

  .booking-bar { bottom: 10px; left: 10px; right: 10px; padding: 6px; gap: 8px; }
  .book-btn { padding: 10px 8px; gap: 7px; min-height: 52px; }
  .book-btn-text strong { font-size: 0.78rem; }
  .book-btn-text small { font-size: 0.55rem; letter-spacing: 0.6px; }

  /* Extra clearance for the booking bar on mobile */
  body { padding-bottom: 100px; }
  footer { padding-bottom: 120px; }
}

/* FADE-IN */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
