/* ═══════════════════════════════════════════════════════════════
   ARCANA SPIRIT LOUNGE — Satellite Page Styles
   Shared by /menu/, /faq/, /hours/
   These pages share the Arcana aesthetic but are lightweight,
   fast-loading, and optimized for Google indexing.
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --gold: #d4b458;
  --gold-light: #f0dfa0;
  --gold-dark: #9a7d3b;
  --gold-muted: rgba(212, 180, 88, 0.35);
  --ink: #0e0d11;
  --card-bg: #181522;
  --surface: #1a1727;
  --text: #ede7da;
  --text-muted: rgba(237, 231, 218, 0.55);
  --divider: rgba(212, 180, 88, 0.15);
}

html { font-size: 19px; scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: 'Cormorant Garamond', Georgia, serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Subtle grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0; opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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)'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none; z-index: 0;
}

/* ═══ HERO BANNER ═══ */
.sat-hero {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.sat-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.4) saturate(0.7);
}

/* Gradient fade at bottom of hero */
.sat-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80%;
  background: linear-gradient(to top, var(--ink) 0%, rgba(14, 13, 17, 0.6) 40%, transparent 100%);
  pointer-events: none;
}

/* ═══ TOP BAR ═══ */
.sat-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1.5rem;
  background: rgba(14, 13, 17, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider);
}

.sat-logo {
  height: 28px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s;
}
.sat-logo:hover { opacity: 1; }

.sat-nav { display: flex; gap: 1.2rem; align-items: center; }

.sat-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.sat-nav a:hover,
.sat-nav a[aria-current="page"] { color: var(--gold); }

.sat-cta {
  display: inline-block;
  color: var(--gold) !important;
  border: 1px solid var(--gold-muted);
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  font-size: 0.68rem !important;
  letter-spacing: 0.14em;
  transition: background 0.3s, border-color 0.3s;
}
.sat-cta:hover {
  background: rgba(212, 180, 88, 0.08);
  border-color: var(--gold);
}

/* ═══ MAIN CONTENT AREA ═══ */
.sat-main {
  position: relative; z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.sat-main.wide { max-width: 960px; }

/* ═══ PAGE TITLE ═══ */
.sat-page-title {
  font-family: 'Cinzel Decorative', 'Cinzel', Georgia, serif;
  font-weight: 400;
  font-size: 2rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.4rem;
  letter-spacing: 0.06em;
}

.sat-page-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* ═══ ORNAMENTAL DIVIDER ═══ */
.sat-ornament {
  text-align: center;
  color: var(--gold-dark);
  font-size: 0.9rem;
  letter-spacing: 0.5em;
  margin-bottom: 2.5rem;
  opacity: 0.6;
  user-select: none;
}

/* ═══ SECTION HEADERS ═══ */
.sat-section-title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 2.5rem 0 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--divider);
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}

.sat-section-title:first-child { margin-top: 0; }

.sat-badge {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.78rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0;
  text-transform: none;
}

/* ═══ MENU ITEMS ═══ */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(212, 180, 88, 0.06);
}

.menu-item:last-child { border-bottom: none; }

.menu-item-left { flex: 1; min-width: 0; }

.menu-item-name {
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: 0.03em;
}

.menu-item-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: 0.15rem;
}

.menu-item-price {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.9rem;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ═══ MENU TABS ═══ */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 2rem;
}

.menu-tab {
  background: none;
  border: 1px solid var(--divider);
  color: var(--text-muted);
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.3rem;
  cursor: pointer;
  transition: all 0.3s;
}

.menu-tab:hover { border-color: var(--gold-muted); color: var(--text); }

.menu-tab.active {
  background: rgba(212, 180, 88, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

/* ═══ FAQ ITEMS ═══ */
.faq-item {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--divider);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--divider);
  transition: border-color 0.3s;
}
.faq-answer a:hover { border-color: var(--gold); }

/* ═══ HOURS TABLE ═══ */
.hours-table {
  width: 100%;
  max-width: 460px;
  margin: 0 auto 2rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(212, 180, 88, 0.06);
}

.hours-row.today {
  background: rgba(212, 180, 88, 0.06);
  margin: 0 -0.8rem;
  padding: 0.7rem 0.8rem;
  border-radius: 3px;
}

.hours-day {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: 0.03em;
}

.hours-time {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hours-row.today .hours-day { color: var(--gold); }
.hours-row.today .hours-time { color: var(--gold-light); }

.hours-closed {
  font-style: italic;
  opacity: 0.5;
}

.open-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 auto 2rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--divider);
  border-radius: 3px;
  text-align: center;
  justify-content: center;
  width: fit-content;
}

.open-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.open-indicator.is-open { border-color: rgba(80, 200, 100, 0.3); }
.open-indicator.is-open .open-dot { background: #50c864; box-shadow: 0 0 8px rgba(80, 200, 100, 0.5); animation: pulse-dot 2s ease-in-out infinite; }
.open-indicator.is-open .open-text { color: #50c864; }

.open-indicator.is-closed { border-color: rgba(200, 80, 80, 0.2); }
.open-indicator.is-closed .open-dot { background: #c85050; }
.open-indicator.is-closed .open-text { color: var(--text-muted); }

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px rgba(80, 200, 100, 0.5); }
  50% { box-shadow: 0 0 16px rgba(80, 200, 100, 0.8), 0 0 4px rgba(80, 200, 100, 0.9); }
}

/* ═══ INFO BLOCKS ═══ */
.info-block {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 3px;
  padding: 1.3rem 1.5rem;
  margin: 1.5rem 0;
}

.info-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.info-block p + p { margin-top: 0.4rem; }

.info-block a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
.info-block a:hover { color: var(--gold-light); }

/* ═══ SECTION ORNAMENT — inline between sections ═══ */
.sat-section-ornament {
  text-align: center;
  color: var(--gold-dark);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  margin: 2rem 0;
  opacity: 0.45;
  user-select: none;
}

/* ═══ FOOTER ═══ */
.sat-footer {
  position: relative; z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem 2.5rem;
  border-top: 1px solid var(--divider);
}

.sat-footer-enter {
  display: inline-block;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.78rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.6rem;
  border: 1px solid var(--gold-muted);
  border-radius: 2px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  margin-bottom: 1rem;
}
.sat-footer-enter:hover {
  background: rgba(212, 180, 88, 0.08);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 180, 88, 0.1);
}

.sat-footer-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
  line-height: 1.6;
}

.sat-footer-meta a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.sat-footer-meta a:hover { color: var(--gold); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 600px) {
  .sat-header { padding: 0.7rem 1rem; }
  .sat-nav a:not(.sat-cta) { display: none; }
  .sat-main { padding: 2rem 1rem 3rem; }
  .sat-page-title { font-size: 1.6rem; }
  .sat-hero { height: 160px; }
  .menu-tab { padding: 0.45rem 0.9rem; font-size: 0.7rem; }
  .menu-item { flex-direction: column; gap: 0.15rem; }
  .menu-item-price { align-self: flex-start; }
}

/* ═══ PRINT ═══ */
@media print {
  .sat-header, .sat-footer, .sat-hero { display: none; }
  body { background: #fff; color: #000; }
  .sat-main { max-width: none; padding: 0; }
  .menu-tabs { display: none; }
  .menu-panel { display: block !important; }
  .sat-section-title { color: #333; border-color: #ccc; }
  .menu-item-name { color: #000; }
  .menu-item-price { color: #333; }
  .sat-ornament, .sat-section-ornament { display: none; }
}

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  @keyframes pulse-dot { 0%, 100% { box-shadow: 0 0 8px rgba(80, 200, 100, 0.5); } }
}
