/* styles.css */
:root{
  /* Astronomical theme palette (dark, spiritual, chakra-friendly) */
  --bg: #0b1020;           /* deep space */
  --bg-2: #0f1530;         /* layered depth */
  --surface: rgba(255,255,255,0.06);
  --surface-2: rgba(255,255,255,0.08);
  --text: #0B1220;         /* near white */
  --muted: #334155;        /* cool muted */
  --primary: #8d7cf7;      /* violet */
  --primary-600:#8d7cf7;
  --primary-700:#6f5be8;
  --accent: #c084fc;       /* cyan (throat chakra vibe) */
  --ring: #d6bcfa;         /* soft blue ring */
  --shadow: 0 12px 28px rgba(2, 6, 23, 0.55);
  --radius: 14px;
  --radius-sm: 10px;
  --container: 1100px;
}
/* theme toggle fully removed; using single light palette in :root */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  color: var(--text);
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, "Apple Color Emoji","Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* single light background handled via overrides.css pattern */

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.section { padding: 3.5rem 0; }
.section-head { margin-bottom: 1.5rem; }
h1,h2,h3 { line-height: 1.2; margin: 0 0 0.75rem; }
h1 { font-size: clamp(2rem, 3vw + 1rem, 3rem); }
h2 { font-size: clamp(1.5rem, 1.5vw + 1rem, 2rem); }
h3 { font-size: 1.125rem; }
.lead { font-size: 1.125rem; color: var(--muted); }
.muted { color: var(--muted); }
.tiny-note { font-size: 0.875rem; color: var(--muted); }

/* Focus states */
:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
  border-radius: 8px;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 1px solid #eef0f4;
}
/* site header stays light */
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.6rem 0; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 600; color: var(--text); }
.brand-text strong { color: var(--primary); }

/* Nav */
.site-nav ul { list-style: none; display: flex; gap: .75rem; padding: 0; margin: 0; }
.site-nav a { padding: .5rem .8rem; border-radius: 999px; display: inline-block; }
.site-nav a:hover { background: var(--surface-2); text-decoration: none; }

.nav-toggle { display: inline-flex; flex-direction: column; gap: 4px; padding: .5rem; border: 1px solid #e5e7eb; background: #fff; border-radius: 10px; cursor: pointer; }
.nav-toggle-bar { width: 22px; height: 2px; background: var(--text); display: block; }

/* Mobile nav behavior */
@media (max-width: 800px) {
  .site-nav { position: absolute; inset: calc(100% + 6px) 1rem auto; background: #fff; border: 1px solid #eef0f4; border-radius: 12px; box-shadow: var(--shadow); padding: .5rem; display: none; }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; }
  .nav-toggle { display: inline-flex; }
}
/* nav stays light */
@media (min-width: 801px) {
  .nav-toggle { display: none; }
}

/* Buttons */
.btn {
  --bg: #f3f4f6;
  --fg: #0b1020;
  --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  padding: .8rem 1rem; border-radius: 12px;
  border: 1px solid var(--bd);
  background: var(--bg); color: var(--fg);
  font-weight: 600; cursor: pointer;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn-primary { --bg: var(--primary); --fg: #fff; }
.btn-primary:hover { background: var(--primary-700); }
.btn-ghost { --bg: transparent; --bd: rgba(255,255,255,0.16); color: var(--text); }
.btn-accent { --bg: var(--accent); --fg: #071018; }

/* Hero */
.hero { padding-top: 4rem; position: relative; }
.hero-grid { display: grid; gap: 2rem; align-items: center; }
.hero-copy .cta-row { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1rem; }
.hero-media {
  display: flex;
  justify-content: center;
}
.hero-media figure {
  margin: 0;
  max-width: 360px;
  width: 100%;
}

.portrait img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  width: 100%;
  display: block;
}
.portrait figcaption {
  font-size: .85rem;
  color: var(--muted);
  margin-top: .5rem;
  text-align: center;
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 3rem; }
}

/* Cards / grids */
.card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(2,6,23,.25);
  transition: transform .1s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.card:hover,
.card:focus-within {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(124,58,237,0.55);
  background: linear-gradient(135deg, rgba(138,92,246,0.22), rgba(124,58,237,0.32));
}

.card-grid { display: grid; gap: 1rem; }
.services-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.service-card h3 { margin-bottom: .25rem; color: #4c1d95; }
.service-card p { color: #111827; }
/* Gallery */
.gallery-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}
.gallery-tile {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 38px rgba(15,23,42,.08);
  padding-bottom: .4rem;
}
.gallery-tile img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.gallery-tile figcaption {
  text-align: center;
  font-weight: 600;
  color: var(--text);
  margin: .65rem 0 0;
}
.gallery-tile .heart {
  right: .75rem;
  bottom: .75rem;
  position: absolute;
}
/* Booking form */
/* (Form styles removed; no form UI in current layout) */

/* Icon button (used in gallery lightbox) */
.icon-btn { border: 1px solid #e5e7eb; background: #fff; border-radius: 10px; padding: .4rem .6rem; cursor: pointer; }

/* Contact */
.contact-grid { display: grid; gap: 1rem; }
.map-placeholder {
  min-height: 260px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(99,102,241,.08), rgba(6,182,212,.06));
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.hours ul { margin: .25rem 0 0; padding-left: 1.2rem; }
.contact-list { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .5rem; }
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: var(--primary);
  border: 1px solid transparent;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(124,58,237,0.22);
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.1fr; align-items: start; }
}

/* Reviews */
.reviews-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.quote p { margin: 0 0 .5rem; }
.quote footer { color: var(--muted); }

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,0.08); padding: 2rem 0; background: rgba(255,255,255,0.04); }
/* footer is light */
.footer-grid { display: grid; gap: 1.25rem; }
.brand-footer { font-weight: 800; color: var(--primary); margin-bottom: .25rem; }
.footer-title { margin: 0 0 .5rem; font-size: 1rem; }
.footer-links, .socials { list-style: none; padding: 0; margin: 0; display: grid; gap: .3rem; }

/* Scroll to top */
.to-top {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 60;
  padding: .7rem .9rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08); color: var(--text); box-shadow: var(--shadow); cursor: pointer; display: none;
}
.to-top.show { display: inline-flex; }

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus { left: 1rem; top: 1rem; width: auto; height: auto; background: #fff; padding: .5rem .75rem; border-radius: 8px; border: 1px solid #e5e7eb; box-shadow: var(--shadow); }

/* Larger desktop refinements */
@media (min-width: 1100px) {
  .section { padding: 4rem 0; }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
}

/* removed legacy sky canvas */

/* Stronger contrast for headings and text */
h1,h2,h3 { color: #0b1220; }
.lead { color: #243042; }
.muted { color: #334155; }

/* Cards and panels: brighter surfaces + stronger borders for readability */
.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(2,6,23,.06);
}
.card:hover { border-color: #dbe2ea; }

/* Hero copy block: give a soft panel for readability on patterned bg */
.hero-copy { background: rgba(255,255,255,0.92); border: 1px solid #e5e7eb; border-radius: 14px; padding: 1rem; }
.section-shell {
  background: rgba(255,255,255,0.95);
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(15,23,42,0.08);
}


/* Heart reactions */
.heart {
  position: absolute;
  top: .85rem;
  right: .85rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .65rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #ef4444;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(15,23,42,.12);
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
}
.heart:hover { transform: translateY(-1px); box-shadow: 0 18px 30px rgba(15,23,42,.12); }
.heart[aria-pressed="true"] { background: #fee2e2; border-color: #fecaca; }
.heart .count { min-width: 1ch; text-align: right; color: #b91c1c; }


