/* ═══════════════════════════════════════════════════════════════ */
/* BACKSTAGE BAR - MAIN STYLESHEET                               */
/* ═══════════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0b0906;
  --bg2:       #111009;
  --bg3:       #18140e;
  --bg4:       #1f1a12;
  --gold:      #c8841a;
  --gold-lt:   #e0a84a;
  --gold-dk:   #8a5a0e;
  --copper:    #b87333;
  --wood:      #3d2010;
  --wood-lt:   #5c3415;
  --green:     #3d5438;
  --cream:     #f0ddb0;
  --cream-lt:  #faf0d8;
  --muted:     #8a7a60;
  --border:    rgba(200,132,26,.18);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', sans-serif;
  --font-title: 'Josefin Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 3px; }
@media (max-width: 768px) {
  ::-webkit-scrollbar { width: 0; display: none; }
}

/* ─── UTILITY ────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-label {
  font-family: var(--font-title);
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cream-lt);
  margin-bottom: 1.25rem;
}
.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0 2.5rem;
}
.divider.center { margin-left: auto; margin-right: auto; }
.btn {
  display: inline-block;
  padding: .85rem 2.4rem;
  border: 1px solid var(--gold);
  font-family: var(--font-title);
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: background .3s, color .3s;
  cursor: pointer;
  background: transparent;
}
.btn:hover { background: var(--gold); color: var(--bg); }
.btn-solid {
  background: var(--gold);
  color: var(--bg);
}
.btn-solid:hover { background: var(--gold-lt); }

/* ─── NAV ────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 1.4rem 0;
  transition: background .4s, padding .4s, box-shadow .4s;
}
#nav.scrolled {
  background: rgba(11,9,6,.96);
  padding: .9rem 0;
  box-shadow: 0 2px 40px rgba(0,0,0,.6);
  backdrop-filter: blur(8px);
}
#nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: .04em;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-title);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #faf0d8;
  opacity: .9;
  transition: opacity .2s, color .2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold-lt); }
.nav-reserve {
  font-family: var(--font-title);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #c8841a;
  border: 1px solid rgba(200,132,26,.7);
  padding: .55rem 1.4rem;
  transition: background .2s, color .2s;
}
.nav-reserve:hover { background: #c8841a; color: #0b0906; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #faf0d8;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,9,6,.97);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--cream-lt);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ─── HERO ───────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/main-hall-stage-wide.jpeg') center / cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(180,100,20,.2) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 40%, rgba(120,60,10,.15) 0%, transparent 50%),
    linear-gradient(160deg, rgba(26,16,8,.62) 0%, rgba(11,9,6,.55) 50%, rgba(13,11,8,.62) 100%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-up linear infinite;
}
@keyframes float-up {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  10%  { opacity: .6; }
  90%  { opacity: .2; }
  100% { opacity: 0; transform: translateY(-80vh) scale(.3); }
}
.hero-arch {
  position: absolute;
  top: 8%; left: 50%;
  transform: translateX(-50%);
  width: min(500px, 80vw);
  height: min(500px, 80vw);
  border: 1px solid rgba(200,132,26,.12);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  pointer-events: none;
}
.hero-arch::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(200,132,26,.07);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-family: var(--font-title);
  font-size: .7rem;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}
.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 700;
  line-height: .9;
  color: var(--cream-lt);
  letter-spacing: -.01em;
}
.hero-name span {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 5vw, 3.5rem);
  color: var(--gold);
  letter-spacing: .06em;
  margin-top: .5rem;
}
.hero-tagline {
  margin: 2rem auto 2.5rem;
  font-size: .95rem;
  letter-spacing: .12em;
  color: var(--muted);
  font-family: var(--font-title);
  text-transform: uppercase;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-title);
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(1.15); }
}

/* ─── ABOUT ──────────────────────────────────────────────── */
#about {
  padding: 8rem 0;
  background: var(--bg3);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: 'BACKSTAGE';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 700;
  color: rgba(200,132,26,.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: .1em;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-frame {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--bg3);
  border: 1px solid var(--border);
  overflow: hidden;
}
.about-frame-inner {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 40% 70%, rgba(180,115,51,.18) 0%, transparent 60%),
    linear-gradient(135deg, #1f1a12 0%, #0d0a06 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-arch-deco {
  width: 60%;
  height: 75%;
  border: 1px solid rgba(200,132,26,.2);
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-arch-deco::before {
  content: '♪';
  font-size: 4rem;
  color: rgba(200,132,26,.25);
}
.about-frame-accent {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 60%;
  height: 60%;
  border: 1px solid rgba(200,132,26,.1);
  z-index: -1;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.stat {
  border-left: 2px solid var(--gold-dk);
  padding-left: 1rem;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .3rem;
}
.about-text p {
  color: rgba(240,221,176,.7);
  margin-bottom: 1.2rem;
  font-size: .95rem;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-top: 2rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .88rem;
  color: var(--muted);
}
.feature-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--gold);
}

/* ─── LIVE MUSIC ─────────────────────────────────────────── */
#music {
  padding: 8rem 0;
  background: var(--bg);
  position: relative;
}
.music-header { text-align: center; margin-bottom: 4rem; }
.neon-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--cream-lt);
  text-shadow:
    0 0 20px rgba(200,132,26,.35),
    0 0 60px rgba(200,132,26,.15);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-bottom: 4rem;
}
.event-card {
  background: var(--bg3);
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background .3s, transform .3s;
  cursor: default;
}
.event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.event-card:hover { background: var(--bg4); transform: translateY(-3px); }
.event-card:hover::before { opacity: 1; }

/* Event card with image (Instagram-style) */
.event-card.has-image { padding: 0; }
.event-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}
.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.92) saturate(1.15);
  transition: transform .5s ease, filter .5s ease;
}
.event-card:hover .event-card-img img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.3);
}
.event-card-body { padding: 1.5rem 1.8rem; }
.event-date {
  font-family: var(--font-title);
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.event-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--cream-lt);
  margin-bottom: .4rem;
}
.event-genre {
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.event-time {
  font-size: .82rem;
  color: var(--cream);
  opacity: .6;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.event-badge {
  display: inline-block;
  padding: .2rem .8rem;
  font-family: var(--font-title);
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: 1px solid var(--gold-dk);
  color: var(--gold);
  margin-top: 1rem;
}
.event-badge.sold { border-color: #c0392b; color: #e74c3c; }

.schedule-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--cream-lt);
  margin-bottom: 1.5rem;
  text-align: center;
}
.schedule-table { width: 100%; border-collapse: collapse; }
.schedule-table tr {
  border-bottom: 1px solid rgba(200,132,26,.08);
  transition: background .2s;
}
.schedule-table tr:hover { background: rgba(200,132,26,.04); }
.schedule-table td {
  padding: 1.1rem 1.5rem;
  font-size: .88rem;
}
.schedule-table .day {
  font-family: var(--font-title);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  width: 140px;
}
.schedule-table .act { color: var(--cream-lt); font-family: var(--font-serif); }
.schedule-table .genre { color: var(--muted); font-size: .82rem; }
.schedule-table .time { color: var(--muted); font-size: .82rem; text-align: right; }

/* ─── MENU ───────────────────────────────────────────────── */
#menu {
  padding: 8rem 0;
  background: var(--bg4);
}
.menu-header { text-align: center; margin-bottom: 3rem; }
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.menu-tab {
  font-family: var(--font-title);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .8rem 1.8rem;
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  background: transparent;
  transition: all .2s;
  border-right: none;
}
.menu-tab:last-child { border-right: 1px solid var(--border); }
.menu-tab.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.menu-tab:hover:not(.active) { color: var(--gold); border-color: var(--gold); }

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(200,132,26,.06);
}
.menu-item-info { flex: 1; }
.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--cream-lt);
  margin-bottom: .2rem;
}
.menu-item-desc {
  font-size: .8rem;
  color: var(--muted);
  font-style: italic;
}
.menu-item-price {
  font-family: var(--font-title);
  font-size: .85rem;
  color: var(--gold);
  letter-spacing: .05em;
  margin-left: 1.5rem;
  white-space: nowrap;
}
.menu-section-title {
  font-family: var(--font-title);
  font-size: .65rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: .5rem;
  margin-top: 2.5rem;
  grid-column: 1 / -1;
}
.menu-section-title:first-child { margin-top: 0; }

/* ─── GALLERY / ATMOSPHERE ────────────────────────────────── */
#gallery {
  padding: 8rem 0;
  background: var(--bg3);
}
.gallery-header { text-align: center; margin-bottom: 4rem; }

.venue-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 6px;
  margin-bottom: 4rem;
}
.vg-item {
  overflow: hidden;
  border-radius: 2px;
}
.vg-item.vg-wide {
  grid-column: span 2;
}
.vg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform .6s ease, filter .6s ease;
  filter: brightness(.88) saturate(1.1);
}
.vg-item:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.3);
}

/* ─── LIGHTBOX ───────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,4,3,.96);
  cursor: zoom-out;
}
.lightbox-img-wrap {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,.9);
  animation: lb-in .25s ease;
}
@keyframes lb-in {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 2;
  background: rgba(200,132,26,.15);
  border: 1px solid rgba(200,132,26,.4);
  color: #faf0d8;
  cursor: pointer;
  transition: background .2s, color .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: #c8841a;
  color: #0b0906;
}
.lightbox-close {
  top: 1.2rem;
  right: 1.2rem;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  border-radius: 50%;
}
.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 2rem;
  border-radius: 50%;
}
.lightbox-prev { left: 1.2rem; }
.lightbox-next { right: 1.2rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 4px;
}
.gallery-placeholder {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  background: var(--bg3);
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: var(--font-title);
  border: 1px solid var(--border);
}
.gallery-placeholder span { font-size: 2rem; opacity: .3; }

/* ─── CONTACT ────────────────────────────────────────────── */
#contact {
  padding: 8rem 0 0;
  background: var(--bg3);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding-bottom: 5rem;
}
.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--cream-lt);
  margin-bottom: .5rem;
}
.info-block {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}
.info-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .1rem;
}
.info-label {
  font-family: var(--font-title);
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}
.info-value {
  font-size: .9rem;
  color: rgba(240,221,176,.75);
  line-height: 1.5;
}
.hours-table { width: 100%; }
.hours-table tr td {
  font-size: .85rem;
  padding: .35rem 0;
}
.hours-table .day-name { color: var(--muted); width: 130px; }
.hours-table .hours { color: var(--cream); }

/* Reservation form */
.form-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--cream-lt);
  margin-bottom: 2rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--font-title);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--cream);
  padding: .85rem 1rem;
  font-family: var(--font-sans);
  font-size: .88rem;
  outline: none;
  transition: border-color .2s;
  /* -webkit-appearance: none; */
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8841a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group select option { background: var(--bg3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: .6; }
.form-group input[type="date"] { cursor: pointer; }
.form-submit { margin-top: 1.5rem; }

.phone-input-container {
  display: flex;
  gap: 0;
}
.country-code-select {
  width: 140px;
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--cream);
  padding: .85rem 1rem;
  font-family: var(--font-sans);
  font-size: .88rem;
  outline: none;
  cursor: pointer;
}
.country-code-select:focus { border-color: var(--gold); }
.phone-number-input {
  flex: 1;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 1px solid var(--border);
}
.phone-number-input:focus { border-left-color: var(--gold); }

/* Instagram feed */
#instagram {
  padding: 8rem 0;
  background: var(--bg2);
}
.instagram-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.instagram-intro {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(240,221,176,.75);
  font-size: .95rem;
  line-height: 1.7;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.insta-post {
  background: var(--bg3);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s, border-color .3s;
}
.insta-post:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.insta-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  filter: saturate(1.2) brightness(.95);
}
.insta-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.insta-meta {
  font-family: var(--font-title);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}
.insta-content p {
  color: rgba(240,221,176,.8);
  font-size: .9rem;
  line-height: 1.7;
}
.insta-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(200,132,26,.1);
  font-size: .85rem;
}
.insta-like-btn {
  background: none;
  border: none;
  color: rgba(240,221,176,.6);
  cursor: pointer;
  font-size: 1rem;
  transition: color .3s;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.insta-like-btn:hover { color: var(--gold); }
.insta-like-btn.liked { color: #e74c3c; }
.insta-post.loading { opacity: 0.6; }
.instagram-footer {
  margin-top: 3rem;
  text-align: center;
}
.load-more-btn { margin-top: 2rem; }

/* Error messages */
.error-message {
  color: #e74c3c;
  font-size: .75rem;
  margin-top: .5rem;
  font-family: var(--font-sans);
  animation: fadeInError 0.3s ease-in;
}
@keyframes fadeInError {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Social links */
.social-strip {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}
.social-link {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--muted);
  transition: color .2s, border-color .2s;
}
.social-link:hover { color: var(--gold); border-color: var(--gold); }

/* Map area */
.map-area {
  margin-top: 0;
  height: 260px;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted);
  font-family: var(--font-title);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.map-pin { font-size: 2rem; color: var(--gold); opacity: .5; }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
}
.footer-copy {
  font-size: .75rem;
  color: var(--muted);
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-family: var(--font-title);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── EVENTS CAROUSEL (VINYL RECORDS) ───────────────────── */
.carousel-3d {
  position: relative;
  margin-bottom: 2rem;
  user-select: none;
}

.carousel-3d-stage {
  position: relative;
  height: 520px;
  overflow: hidden;
  isolation: isolate;
}

/* Vinyl record shape */
.carousel-slide {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94),
              opacity   .45s ease,
              filter    .45s ease;
  will-change: transform, opacity, filter;
}

/* Position states */
.pos-center {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  filter: brightness(1);
  z-index: 10;
  cursor: default;
}
.pos-left {
  transform: translate(calc(-50% - 270px), -50%) scale(0.78);
  opacity: 0.72;
  filter: brightness(0.52);
  z-index: 8;
  cursor: pointer;
}
.pos-right {
  transform: translate(calc(-50% + 270px), -50%) scale(0.78);
  opacity: 0.72;
  filter: brightness(0.52);
  z-index: 8;
  cursor: pointer;
}
.pos-far-left {
  transform: translate(calc(-50% - 430px), -50%) scale(0.60);
  opacity: .35;
  filter: brightness(0.28);
  z-index: 6;
  cursor: pointer;
}
.pos-far-right {
  transform: translate(calc(-50% + 430px), -50%) scale(0.60);
  opacity: .35;
  filter: brightness(0.28);
  z-index: 6;
  cursor: pointer;
}
.pos-hidden {
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

/* ── Vinyl disc ── */
.c-card {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 50%;
  background: #0a0908;
  border: none;
  box-shadow:
    0 0 0 1px rgba(200,132,26,.12),
    0 0 0 3px #060504,
    0 28px 65px rgba(0,0,0,.88);
}

/* Groove rings + rotating sheen */
.c-card-gradient {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, rgba(200,132,26,.07) 0%, transparent 46%),
    repeating-radial-gradient(
      circle at center,
      #0c0a08 0px, #0c0a08 1.2px,
      #1e1810 1.7px, #0c0a08 2.3px
    );
  z-index: 0;
  transform-origin: center;
}

/* Spin sheen on active record */
@keyframes vinyl-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.pos-center .c-card-gradient {
  animation: vinyl-spin 5s linear infinite;
}

/* ── Image cards ── */
.c-card-img {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 1;
}
.c-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    transparent 25%,
    rgba(0,0,0,.55) 60%,
    rgba(0,0,0,.8) 100%
  );
}

/* ── Center label circle ── */
.c-card-body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: unset; right: unset;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem .85rem;
  background:
    radial-gradient(circle at 40% 35%, #3a2208 0%, #1e1006 45%, #0e0904 100%);
  border: 1.5px solid rgba(200,132,26,.7);
  box-shadow:
    0 0 0 3px rgba(0,0,0,.75),
    0 0 22px rgba(0,0,0,.7),
    inset 0 0 16px rgba(0,0,0,.5);
  z-index: 3;
  overflow: hidden;
}
.c-card-body.full {
  top: 50%;
  left: 50%;
}

/* ── Spindle hole ── */
.c-card::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #050403;
  box-shadow: 0 0 0 1px rgba(200,132,26,.4);
  z-index: 5;
  pointer-events: none;
}

/* Watermark hidden — label holds content */
.c-card-deco { display: none; }

/* ── Label text — base (side cards, dimmed by brightness filter) ── */
.c-index {
  font-family: var(--font-title);
  font-size: .58rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: .25rem;
  position: relative;
  z-index: 2;
}
.c-date {
  font-family: var(--font-title);
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--cream-lt);
  margin-bottom: .28rem;
  position: relative;
  z-index: 2;
}
.c-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 10px rgba(0,0,0,.95);
  position: relative;
  z-index: 2;
}
.c-genre {
  font-size: .62rem;
  color: var(--gold-lt);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .5rem;
  position: relative;
  z-index: 2;
}
.c-time {
  font-size: .6rem;
  color: var(--cream);
  margin-bottom: .5rem;
  position: relative;
  z-index: 2;
}
.c-badge {
  display: inline-block;
  padding: .18rem .6rem;
  font-family: var(--font-title);
  font-size: .55rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--gold-lt);
  color: var(--gold-lt);
  border-radius: 2px;
  position: relative;
  z-index: 2;
}
.c-badge.sold { border-color: #e74c3c; color: #e74c3c; }

/* ── Center (active) vinyl — full contrast ── */
/* Specificity (0,3,0) to beat light-theme overrides */
.pos-center .c-card .c-card-body {
  background:
    radial-gradient(circle at 40% 35%, #3d2408 0%, #1a0e04 50%, #0d0803 100%);
  border-color: var(--gold-lt);
  box-shadow:
    0 0 0 3px rgba(0,0,0,.85),
    0 0 28px rgba(200,132,26,.2),
    inset 0 0 18px rgba(0,0,0,.55);
}
.pos-center .c-card .c-index {
  color: var(--gold-lt) !important;
  opacity: 1 !important;
}
.pos-center .c-card .c-date {
  color: var(--gold-lt) !important;
  font-size: .7rem;
}
.pos-center .c-card .c-name {
  color: #ffffff !important;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 2px 14px rgba(0,0,0,1);
}
.pos-center .c-card .c-genre {
  color: var(--gold-lt) !important;
  opacity: 1 !important;
  font-size: .65rem;
  letter-spacing: .12em;
}
.pos-center .c-card .c-time {
  color: var(--cream-lt) !important;
  opacity: 1 !important;
  font-size: .62rem;
}
.pos-center .c-card .c-badge {
  border-color: var(--gold-lt) !important;
  color: var(--gold-lt) !important;
  background: rgba(200,132,26,.12) !important;
  font-size: .57rem;
  padding: .2rem .7rem;
}
.pos-center .c-card .c-badge.sold {
  border-color: #e74c3c !important;
  color: #ff7060 !important;
  background: rgba(192,57,43,.12) !important;
}

/* ── Nav ── */
.carousel-3d-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.carousel-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gold);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
  flex-shrink: 0;
  border-radius: 50%;
}
.carousel-btn:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }

.carousel-dots {
  display: flex;
  gap: .45rem;
  align-items: center;
}
.carousel-dot {
  height: 3px;
  width: 18px;
  background: var(--muted);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background .25s, width .3s, opacity .25s;
  opacity: .3;
  padding: 0;
}
.carousel-dot.active {
  background: var(--gold);
  width: 36px;
  opacity: 1;
}

/* Progress bar */
.carousel-progress {
  height: 1px;
  background: rgba(200,132,26,.12);
  margin-top: 2px;
  overflow: hidden;
}
.carousel-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold));
  width: 0%;
}

/* Light theme */
[data-theme="light"] .c-card {
  box-shadow: 0 0 0 1px rgba(120,80,10,.15), 0 20px 50px rgba(0,0,0,.22);
}
[data-theme="light"] .c-card.no-img .c-name  { color: var(--cream-lt); }
[data-theme="light"] .c-card.no-img .c-genre { color: var(--muted); opacity: 1; }
[data-theme="light"] .c-card.no-img .c-time  { color: var(--cream); opacity: .8; }
[data-theme="light"] .c-card.no-img .c-index { color: var(--gold); }
[data-theme="light"] .c-card.no-img .c-date  { color: var(--gold); }
[data-theme="light"] .c-card.no-img .c-badge { color: var(--gold); border-color: var(--gold-dk); }
[data-theme="light"] .c-card.no-img .c-badge.sold { color: #c0392b; border-color: #c0392b; }
[data-theme="light"] .carousel-btn { background: var(--bg2); }
[data-theme="light"] .carousel-progress { background: rgba(120,80,10,.12); }

@media (max-width: 768px) {
  .carousel-3d-stage { height: 380px; }
  .carousel-slide { width: 340px; height: 340px; }
  .pos-left      { transform: translate(calc(-50% - 210px), -50%) scale(0.76); }
  .pos-right     { transform: translate(calc(-50% + 210px), -50%) scale(0.76); }
  .pos-far-left  { transform: translate(calc(-50% - 340px), -50%) scale(0.58); }
  .pos-far-right { transform: translate(calc(-50% + 340px), -50%) scale(0.58); }
  .c-name { font-size: 1.05rem; }
  .c-card-body, .c-card-body.full { width: 64%; height: 64%; padding: .7rem .7rem; }
  .c-index   { margin-bottom: .12rem; }
  .c-date    { margin-bottom: .12rem; }
  .c-name    { margin-bottom: 1rem; }
  .c-genre   { margin-bottom: .2rem; }
  .c-time    { margin-bottom: .2rem; }
}

/* ─── THEME TOGGLE BUTTON ────────────────────────────────── */
.theme-toggle {
  background: none;
  border: 1px solid rgba(200,132,26,.4);
  color: var(--gold);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background .2s, color .2s, border-color .2s;
  flex-shrink: 0;
  line-height: 1;
}
.theme-toggle:hover { background: var(--gold); color: var(--bg); }

/* ─── LIGHT THEME ────────────────────────────────────────── */
[data-theme="light"] {
  --bg:        #faf5eb;
  --bg2:       #f2ead4;
  --bg3:       #e8dfc6;
  --bg4:       #ddd0b0;
  --gold:      #9a6010;
  --gold-lt:   #c07a18;
  --gold-dk:   #7a4c0c;
  --copper:    #a0622a;
  --wood:      #c49a6c;
  --wood-lt:   #d4b080;
  --green:     #4a6644;
  --cream:     #2d1e0a;
  --cream-lt:  #1a1005;
  --muted:     #6b5030;
  --border:    rgba(120,80,10,.22);
}

[data-theme="light"] body { background: var(--bg); color: var(--cream); }

[data-theme="light"] #nav.scrolled {
  background: rgba(250,245,235,.96);
  box-shadow: 0 2px 40px rgba(0,0,0,.12);
}
[data-theme="light"] #nav.scrolled .nav-links a { color: #2d1e0a; opacity: .8; }
[data-theme="light"] #nav.scrolled .nav-links a:hover { color: #9a6010; opacity: 1; }
[data-theme="light"] #nav.scrolled .nav-reserve { color: #9a6010; border-color: rgba(120,80,10,.5); }
[data-theme="light"] #nav.scrolled .nav-reserve:hover { background: #9a6010; color: #faf5eb; }
[data-theme="light"] #nav.scrolled .nav-logo { color: #9a6010; }
[data-theme="light"] #nav.scrolled .hamburger span { background: #2d1e0a; }
[data-theme="light"] .mobile-menu {
  background: rgba(250,245,235,.98);
}
[data-theme="light"] .mobile-menu a { color: var(--cream-lt); }

[data-theme="light"] .hero-bg {
  background: url('../images/main-hall-stage-wide.jpeg') center / cover no-repeat;
}
[data-theme="light"] .hero-bg::after {
  background: linear-gradient(160deg, rgba(26,16,8,.50) 0%, rgba(11,9,6,.42) 50%, rgba(13,11,8,.50) 100%);
}

/* Hero text always stays light — it sits on a dark photo in both themes */
[data-theme="light"] .hero-name        { color: #faf0d8; }
[data-theme="light"] .hero-name span   { color: #c8841a; }
[data-theme="light"] .hero-eyebrow     { color: #c8841a; }
[data-theme="light"] .hero-eyebrow::before,
[data-theme="light"] .hero-eyebrow::after { background: #c8841a; }
[data-theme="light"] .hero-tagline     { color: rgba(240,221,176,.75); }
[data-theme="light"] .hero-scroll      { color: rgba(240,221,176,.55); }
[data-theme="light"] #hero .btn        { border-color: #c8841a; color: #c8841a; }
[data-theme="light"] #hero .btn:hover  { background: #c8841a; color: #0b0906; }
[data-theme="light"] #hero .btn-solid  { background: #c8841a; color: #0b0906; }
[data-theme="light"] #hero .btn-solid:hover { background: #e0a84a; }
[data-theme="light"] .about-frame-inner {
  background:
    radial-gradient(ellipse at 40% 70%, rgba(160,100,40,.14) 0%, transparent 60%),
    linear-gradient(135deg, #e8dfc6 0%, #f2ead4 100%);
}
[data-theme="light"] .pillar-visual {
  background: linear-gradient(135deg, #e2d4b0 0%, #f0e8d0 100%);
}


/* Hardcoded rgba text overrides */
[data-theme="light"] .about-text p,
[data-theme="light"] .pillar-description,
[data-theme="light"] .info-value,
[data-theme="light"] .instagram-intro,
[data-theme="light"] .insta-content p { color: rgba(45,30,10,.75); }
[data-theme="light"] .insta-like-btn { color: rgba(45,30,10,.55); }

/* Scrollbar */
[data-theme="light"] ::-webkit-scrollbar-track { background: var(--bg); }
[data-theme="light"] ::-webkit-scrollbar-thumb { background: var(--gold-dk); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .events-grid { grid-template-columns: 1fr 1fr; }
  .venue-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .vg-item.vg-wide { grid-column: span 2; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-reserve { display: none; }
  .hamburger { display: flex; }

  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: none; }

  .events-grid { grid-template-columns: 1fr; }
  .venue-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .vg-item.vg-wide { grid-column: span 2; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: 1fr; }

  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
