/* ── Reset / base ────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Tahoma", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #f0f0f0;            /* light text on dark bg */
  background: #151515;       /* matches mobile Theme.colors.background.primary */
}
img { max-width: 100%; display: block; }
a { color: #4ECDC4; text-decoration: none; }       /* mint accent for links */
a:hover { text-decoration: underline; }
ul { list-style: none; }
strong { color: #fff; }

/* ── Layout container ────────────────────────────────────── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ──────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(21, 21, 21, 0.95);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;             /* enlarged from 64px to fit 80px logo */
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo {
  height: 80px;              /* 2x the original 40px */
  width: auto;
  object-fit: contain;
}
.brand:hover { text-decoration: none; }
.nav { display: flex; gap: 28px; }
.nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
}
.nav a:hover { color: #4ECDC4; text-decoration: none; }

@media (max-width: 640px) {
  .nav { display: none; }
  .header-row { height: 80px; }
  .brand-logo { height: 60px; }   /* downsize on small screens to keep header tidy */
}

/* ── Launching-shortly notice (sits just below header) ──── */
.notice {
  position: sticky;
  top: 100px;                /* matches header height */
  z-index: 99;
  background: transparent;   /* no background per request */
  color: #FFBF00;            /* yellow text */
  font-size: 28px;           /* 2x */
  font-weight: 500;
  text-align: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 191, 0, 0.15);
}
@media (max-width: 640px) {
  .notice {
    top: 80px;                                  /* match smaller header on mobile */
    font-size: 18px;
    padding: 12px 0;
  }
}
/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    url('https://images.unsplash.com/photo-1742281258189-3b933879867a?fm=jpg&q=80&w=2400&auto=format&fit=crop'),
    linear-gradient(135deg, #1a3d3a 0%, #4ECDC4 100%);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.75));
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 80px 24px;
  width: 100%;
}

.hero-sanskrit {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.hero-translit {
  font-size: clamp(14px, 1.5vw, 18px);
  opacity: 0.9;
  font-style: italic;
  margin-bottom: 2px;
}
.hero-meaning {
  font-size: clamp(13px, 1.3vw, 15px);
  opacity: 0.7;
  margin-bottom: 32px;
}

.hero-headline {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 12px;
  max-width: 680px;
}
.hero-subhead {
  font-size: clamp(16px, 2vw, 20px);
  opacity: 0.9;
  margin-bottom: 40px;
}

/* ── App store badges ────────────────────────────────────── */
.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  background: #000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  min-width: 160px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.15s ease;
}
.badge:hover { transform: translateY(-2px); text-decoration: none; }
.badge-sub { font-size: 11px; opacity: 0.85; line-height: 1.2; }
.badge-main { font-size: 18px; font-weight: 500; line-height: 1.2; margin-top: 2px; }
.cta-note {
  margin-top: 16px;
  font-size: 13px;
  opacity: 0.75;
  font-style: italic;
}

/* ── Sections (dark mode) ────────────────────────────────── */
.section {
  padding: 80px 0;
  background: #151515;
}
.section-alt {
  background: #1C1C1E;       /* Theme.colors.background.secondary */
}
.section h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  margin-bottom: 16px;
  color: #fff;
}
.section p {
  font-size: clamp(15px, 1.5vw, 17px);
  color: #cfcfcf;
  max-width: 720px;
}

/* ── Contact list ────────────────────────────────────────── */
.contact-list {
  margin-top: 24px;
}
.contact-list li {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 15px;
  color: #cfcfcf;
}
.contact-list li:last-child { border-bottom: 0; }
.contact-label {
  width: 80px;
  color: #86868B;            /* Theme.colors.text.subtitle */
  font-weight: 500;
}

/* ── FAQ page ────────────────────────────────────────────── */
.nav-active { color: #4ECDC4 !important; }

.faq-main {
  padding: 64px 0 96px;
  min-height: calc(100vh - 100px);
  background: #151515;
}
.faq-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  margin-bottom: 12px;
  color: #fff;
}
.faq-intro {
  font-size: 16px;
  color: #cfcfcf;
  margin-bottom: 40px;
  max-width: 640px;
}
.faq-list {
  max-width: 760px;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}
.faq-item summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  padding: 6px 32px 6px 0;
  position: relative;
  list-style: none;
  outline: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 4px;
  font-size: 22px;
  font-weight: 300;
  color: #4ECDC4;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  content: '−';
  transform: rotate(0);
}
.faq-item p {
  margin-top: 12px;
  padding-right: 32px;
  font-size: 15px;
  line-height: 1.7;
  color: #cfcfcf;
}
.faq-footer-note {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: #86868B;
  max-width: 640px;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: #0d0d0d;       /* slightly darker than page for visual separation */
  color: #86868B;
  padding: 24px 0;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.copyright { color: #666; }
.staff-login {
  color: #4ECDC4;
  font-weight: 500;
}
.staff-login:hover { color: #fff; text-decoration: none; }
