/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a84c;
  --gold-light: #e0bc5a;
  --black: #0a0a0a;
  --dark: #121212;
  --dark2: #1a1a1a;
  --dark3: #222;
  --text: #e8e8e8;
  --muted: #888;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-full { width: 100%; text-align: center; }

/* ── Navigation ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, padding 0.3s;
}

#navbar.scrolled {
  background: rgba(10,10,10,0.97);
  padding: 14px 0;
  border-bottom: 1px solid #222;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--gold);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1208 50%, #0a0a0a 100%);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(0.4) brightness(0.85);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 24px;
}

.hero-sub {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  margin-bottom: 24px;
}

.hero-logo {
  max-width: 640px;
  width: 92%;
  margin: 0 auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.6));
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: #bbb;
  margin-bottom: 40px;
}

.hero-phone {
  margin-top: 14px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: #aaa;
}

.hero-phone a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}

.hero-phone a:hover { color: var(--gold); }

.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  opacity: 0.6;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Sections ── */
.section { padding: 100px 0; }

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
}

.section-sub {
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 0.9rem;
}

/* ── About ── */
.about { background: var(--dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  color: #bbb;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.highlight {
  background: var(--dark2);
  border: 1px solid #2a2a2a;
  border-top: 3px solid var(--gold);
  padding: 24px;
  text-align: center;
}

.highlight-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.highlight-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Gallery ── */
.gallery { background: var(--black); }


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.05); }

.video-thumb {
  cursor: pointer;
  position: relative;
}

.video-thumb:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); }

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: rgba(201, 168, 76, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #0a0a0a;
  padding-left: 4px;
  transition: transform 0.2s;
  pointer-events: none;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  width: 90%;
  max-width: 960px;
}

.lightbox-close {
  position: absolute;
  top: -40px; right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.lightbox-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.gallery-videos {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-videos .gallery-item.video-thumb {
  flex: 1;
  min-width: 260px;
  max-width: 480px;
}

.gallery-fb-video {
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.gallery-fb-first {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.gallery-fb-landscape-sm {
  border-radius: 4px;
  overflow: hidden;
  flex: 1;
  min-width: 260px;
}

.gallery-fb-landscape-sm iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 560/314;
  display: block;
}

.gallery-item:not(.video-thumb) { cursor: zoom-in; }

.lightbox-photo {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 4px;
  object-fit: contain;
  display: block;
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  padding: 0 20px;
  opacity: 0.7;
  transition: opacity 0.15s;
  z-index: 1001;
}

.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }

.gallery-item.placeholder {
  background: var(--dark2);
  border: 1px dashed #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── Songs ── */
.songs { background: var(--dark); }

.songs-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.songs-panel {
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  overflow: hidden;
}

.songs-panel-btn {
  width: 100%;
  background: #1a1a1a;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  transition: background 0.2s;
}

.songs-panel-btn:hover { background: #222; }

.songs-chevron {
  width: 20px;
  height: 20px;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.songs-panel.open .songs-chevron {
  transform: rotate(180deg);
}

.songs-list {
  list-style: none;
  display: none;
  columns: 3;
  column-gap: 24px;
  padding: 20px 24px 24px;
  background: #111;
}

.songs-panel.open .songs-list {
  display: block;
}

.songs-list li {
  font-size: 0.85rem;
  color: #bbb;
  padding: 6px 0;
  border-bottom: 1px solid #1e1e1e;
  break-inside: avoid;
}

.songs-list li::before {
  content: '♪ ';
  color: var(--gold);
  font-size: 0.7rem;
}

@media (max-width: 700px) {
  .songs-list { columns: 2; }
}

@media (max-width: 480px) {
  .songs-list { columns: 1; }
}

/* ── Shows ── */
.shows { background: var(--dark); }

.shows-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
}

.show-card {
  background: var(--dark2);
  border: 1px solid #2a2a2a;
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}

.show-month {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
}

.show-day {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.show-info { flex: 1; }

.show-venue {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.show-location {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.show-time {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.show-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.show-btn {
  background: transparent;
  border: 1px solid #444;
  color: #ccc;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font-sans);
}

.show-btn:hover { border-color: var(--gold); color: var(--gold); }

.cal-wrap { position: relative; }

.cal-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 4px;
  min-width: 180px;
  z-index: 10;
  overflow: hidden;
}

.cal-dropdown.open { display: block; }

.cal-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 0.8rem;
  color: #ccc;
  transition: background 0.15s;
}

.cal-dropdown a:hover { background: #2a2a2a; color: var(--gold); }

/* ── Testimonials ── */
.testimonials { background: var(--dark); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--dark2);
  border: 1px solid #2a2a2a;
  border-bottom: 3px solid var(--gold);
  padding: 32px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── Contact ── */
.contact { background: var(--black); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info p {
  color: #bbb;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-details li {
  font-size: 0.9rem;
  color: #aaa;
}

.contact-details a { color: var(--gold); }
.contact-details a:hover { text-decoration: underline; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  background: var(--dark2);
  border: 1px solid #2a2a2a;
  border-radius: 2px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; }

.form-note {
  font-size: 0.85rem;
  color: var(--gold);
  text-align: center;
  min-height: 20px;
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  border-top: 1px solid #1e1e1e;
  padding: 60px 0 40px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 8px;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-sub {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 28px;
}

.footer-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.75rem;
  color: #444;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-social a {
  color: var(--muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer-social a:hover { color: var(--gold); }

.footer-social svg {
  width: 20px;
  height: 20px;
}

.contact-social {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}

.contact-social a {
  color: var(--muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.contact-social a:hover { color: var(--gold); }

.contact-social svg {
  width: 22px;
  height: 22px;
}

/* ── Vendors Page ── */
.vendors-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1208 50%, #0a0a0a 100%);
  padding: 120px 24px 60px;
}

.vendors-hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.vendors-hero-content p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.8;
}

.vendors-section { background: var(--dark); }
.vendors-section.alt { background: var(--black); }

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.vendor-card {
  background: var(--dark2);
  border: 1px solid #2a2a2a;
  border-bottom: 2px solid transparent;
  border-radius: 4px;
  padding: 16px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ccc;
  text-decoration: none;
  transition: all 0.2s;
  display: block;
}

.vendor-card:hover {
  border-bottom-color: var(--gold);
  color: white;
  transform: translateY(-2px);
}

.vendors-cta { background: var(--dark); }

@media (max-width: 900px) {
  .vendor-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .vendor-grid { grid-template-columns: 1fr; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    padding: 20px 24px;
    gap: 20px;
    border-bottom: 1px solid #222;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .about-highlights { grid-template-columns: 1fr 1fr; }
}
