/* ============================================================
   THE BASEMENT ROOM — styles.css
   Aesthetic: Warm luxury · candlelit · intimate · refined
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --cream:       #f5f0e8;
  --warm-white:  #faf7f2;
  --stone:       #c9b99a;
  --stone-light: #e2d5c3;
  --stone-dark:  #a0896c;
  --deep:        #1e1a15;
  --bark:        #2e2519;
  --moss:        #4a5240;
  --moss-light:  #6b7561;
  --text-main:   #2e2519;
  --text-muted:  #7a6f61;
  --text-light:  #c9b99a;
  --gold:        #c5a55a;
  --gold-light:  #dfc48a;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --section-pad: 100px 5%;
  --radius:      4px;
  --transition:  0.35s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  background-color: var(--warm-white);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 5%;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(30, 26, 21, 0.96);
  backdrop-filter: blur(10px);
  padding: 14px 5%;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.25em;
  color: var(--cream);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-light);
  position: relative;
  transition: color var(--transition);
}

.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 { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--stone-light);
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: 75%; max-width: 320px;
  height: 100vh;
  background: var(--bark);
  z-index: 200;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.4s ease;
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 30px; text-align: center; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.05em;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Background: rich dark gradient evoking a candlelit basement */
  background:
    radial-gradient(ellipse at 60% 40%, rgba(197,165,90,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 70%, rgba(74,82,64,0.18) 0%, transparent 50%),
    linear-gradient(160deg, #1a1510 0%, #0f0d0a 50%, #1c1a14 100%);
  overflow: hidden;
}

/* Subtle noise texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

/* Decorative arc */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  transform: translateX(-50%);
  width: 160%;
  height: 80px;
  background: var(--warm-white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 120px 5% 80px;
  max-width: 780px;
  animation: heroFadeUp 1.2s ease both;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.hero-divider {
  width: 60px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--stone-light);
  line-height: 1.9;
  letter-spacing: 0.02em;
}

/* ── Scroll indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  animation: fadeIn 2s 1.5s both;
}
.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section {
  padding: var(--section-pad);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 16px;
}

.section-header.light h2 { color: var(--cream); }
.section-header.light .section-eyebrow { color: var(--gold-light); }

.section-subtext {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto;
  letter-spacing: 0.03em;
}

.header-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 18px auto 0;
}
.header-rule.dark { background: var(--stone-dark); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  padding: 13px 36px;
  background: var(--gold);
  color: var(--deep);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197,165,90,0.25);
}
.btn-primary.full-width { width: 100%; text-align: center; }

.btn-outline {
  display: inline-block;
  padding: 12px 34px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--deep);
  transform: translateY(-2px);
}

/* ============================================================
   SPA MENU
   ============================================================ */
.menu-section {
  background: var(--warm-white);
}

.menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-card {
  background: #fff;
  border: 1px solid var(--stone-light);
  border-radius: 6px;
  padding: 32px 28px;
  flex: 1 1 280px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(160,137,108,0.15);
  border-color: var(--stone);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.card-tag {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss);
  background: rgba(74,82,64,0.08);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.card-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}

.duration {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-main);
}

.card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex-grow: 1;
}

.card-cta {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-dark);
  border-bottom: 1px solid var(--stone-light);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
  align-self: flex-start;
}
.card-cta:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ============================================================
   HOMEOPATHY
   ============================================================ */
.homeopathy-section {
  background: linear-gradient(135deg, var(--bark) 0%, #1c1a14 60%, var(--moss) 100%);
  position: relative;
  overflow: hidden;
}

.homeopathy-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,165,90,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.homeopathy-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.homeopathy-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.homeopathy-text {
  font-size: 1rem;
  color: var(--stone-light);
  line-height: 1.85;
  max-width: 620px;
}

/* ============================================================
   MEET ME
   ============================================================ */
.meet-section {
  background: var(--cream);
}

.meet-inner {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.meet-photo-wrap {
  flex-shrink: 0;
}

.meet-photo-placeholder {
  width: 300px;
  height: 380px;
  background: linear-gradient(145deg, var(--stone-light), var(--stone));
  border-radius: 4px 60px 4px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--deep);
  opacity: 0.7;
  line-height: 1.5;
}

/* To use a real photo: replace the placeholder div with:
   <img src="your-photo.jpg" alt="Your name" class="meet-photo" />
   And add .meet-photo { width:300px; height:380px; object-fit:cover; border-radius: 4px 60px 4px 60px; }
*/

.meet-bio {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bio-name {
  font-size: 2.4rem;
  font-style: italic;
  color: var(--text-main);
}

.bio-title {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.bio-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: linear-gradient(160deg, #1a1510 0%, #0f0d0a 100%);
}

.contact-inner {
  display: flex;
  gap: 70px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: flex-start;
}

.contact-info {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-value {
  font-size: 0.95rem;
  color: var(--stone-light);
}

.contact-value a { color: var(--stone-light); transition: color var(--transition); }
.contact-value a:hover { color: var(--gold); }

/* ── Form ── */
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.form-group label {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,185,154,0.2);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(201,185,154,0.35); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.form-group select { cursor: pointer; }
.form-group select option { background: var(--deep); color: var(--cream); }

.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gold-light);
  font-style: italic;
  padding: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--deep);
  text-align: center;
  padding: 36px 5%;
  border-top: 1px solid rgba(201,185,154,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--stone);
  letter-spacing: 0.1em;
}

.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .meet-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .meet-photo-placeholder { width: 240px; height: 300px; }
  .contact-inner { flex-direction: column; gap: 48px; }
  .contact-info { flex: unset; width: 100%; }
}

@media (max-width: 700px) {
  :root { --section-pad: 70px 6%; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .form-row { flex-direction: column; }
  .menu-card { flex: 1 1 100%; max-width: 100%; }

  .hero::after { height: 40px; }
}