/* Alma Thai Spa — shared styles
   Palette derived from the logo:
   sage #607848 · forest #3E4F2E · teal #6090A8 · gold #C9A24B · cream #F7F4EC */

:root {
  --sage: #607848;
  --sage-dark: #4c6038;
  --forest: #3E4F2E;
  --teal: #6090A8;
  --gold: #C9A24B;
  --cream: #F7F4EC;
  --sand: #EDE7D8;
  --ink: #2c3324;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .font-display {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* Decorative eyebrow label */
.eyebrow {
  font-family: 'Inter', sans-serif;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 600;
  color: var(--sage);
}

/* Thin ornamental divider with a centre dot */
.ornament {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--gold);
}
.ornament::before,
.ornament::after {
  content: "";
  height: 1px;
  width: 56px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-primary {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(96,120,72,.7);
}
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid var(--sage);
  color: var(--forest);
  background: transparent;
}
.btn-outline:hover { background: var(--sage); color: #fff; transform: translateY(-2px); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,.65);
  color: #fff;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: #fff; color: var(--forest); }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(37,211,102,.6);
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }

/* Cards */
.card {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(96,120,72,.12);
  box-shadow: 0 18px 40px -28px rgba(62,79,46,.45);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -28px rgba(62,79,46,.55); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,244,236,.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(96,120,72,.12);
}
.nav-link {
  position: relative;
  font-weight: 500;
  color: var(--forest);
  padding: .25rem 0;
  transition: color .2s ease;
}
.nav-link:hover { color: var(--sage); }
.nav-link.active { color: var(--sage); }
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  height: 2px; width: 0; background: var(--gold); transition: width .25s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Hero overlay helper */
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(44,51,36,.55) 0%, rgba(44,51,36,.35) 40%, rgba(44,51,36,.75) 100%);
}

/* Section heading underline */
.heading-underline { position: relative; display: inline-block; }
.heading-underline::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  bottom: -.55rem; width: 64px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
}

/* Fade-in on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Legal pages prose */
.prose-legal h2 { font-size: 1.5rem; color: var(--forest); margin: 2rem 0 .6rem; }
.prose-legal h3 { font-size: 1.15rem; color: var(--sage-dark); margin: 1.4rem 0 .4rem; font-family:'Inter',sans-serif; font-weight:700;}
.prose-legal p, .prose-legal li { color: #4a5240; line-height: 1.8; }
.prose-legal ul { list-style: disc; padding-left: 1.4rem; margin: .6rem 0; }
.prose-legal a { color: var(--teal); text-decoration: underline; }

/* Price tag badge */
.price-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--gold);
  color: var(--forest);
  font-weight: 700;
  font-size: .82rem;
  padding: .28rem .9rem;
  border-radius: 999px;
  letter-spacing: .01em;
  margin-bottom: 1rem;
}
.price-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
}
.price-tiers span {
  background: var(--sand);
  color: var(--forest);
  font-weight: 600;
  font-size: .8rem;
  padding: .25rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(96,120,72,.18);
}

/* Gallery */
.gallery-img { border-radius: 1rem; height: 100%; width: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item { overflow: hidden; border-radius: 1rem; }
.gallery-item:hover .gallery-img { transform: scale(1.08); }
