/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #f59e0b;
  --primary-dark: #d97706;
  --primary-glow: rgba(245, 158, 11, 0.12);
  --accent: #e84855;
  --dark: #0c0c0c;
  --dark-2: #141418;
  --gray-900: #111114;
  --gray-800: #19191f;
  --gray-700: #26262f;
  --gray-600: #3a3a4d;
  --gray-400: #8a8a9a;
  --gray-300: #c8c8d0;
  --white: #f0f0f2;
  --gold: #fbbf24;
  --radius: 4px;
  --radius-sm: 3px;
  --shadow: 0 2px 16px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--gray-300);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.logo-icon { display: none; }

.logo-text {
  color: var(--white);
  font-weight: 800;
}

.logo-dot {
  background: var(--primary);
  color: #000;
  padding: 0.08rem 0.4rem;
  border-radius: 5px;
  margin-left: 4px;
  font-weight: 800;
  line-height: 1;
  display: inline-block;
}

.main-nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.main-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-400);
  transition: color 0.15s;
  letter-spacing: 0.01em;
}

.main-nav a:hover { color: var(--white); }

.nav-cta {
  background: transparent;
  color: var(--primary) !important;
  padding: 0.4rem 1rem;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  transition: all 0.15s !important;
}

.nav-cta:hover {
  background: var(--primary) !important;
  color: var(--dark) !important;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
  padding-top: 56px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(245,158,11,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(232,72,85,0.04) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  text-align: left;
  padding: 5rem 0;
  max-width: 680px;
}

.hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* === SEARCH BAR === */
.search-bar {
  display: flex;
  gap: 0;
  max-width: 580px;
  margin-bottom: 2.5rem;
  background: var(--gray-800);
  border-radius: var(--radius);
  padding: 0.3rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.search-bar select {
  flex: 1;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  color: var(--gray-300);
  font-size: 0.88rem;
  font-family: inherit;
  cursor: pointer;
  appearance: auto;
}

.search-bar select:focus { outline: none; }

.search-bar .btn-primary {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  font-size: 0.85rem;
  color: var(--gray-400);
}

.hero-stats strong {
  color: var(--white);
  font-weight: 600;
}

/* === BUTTONS === */
.btn-primary {
  background: var(--primary);
  color: var(--dark);
  border: none;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
}

.btn-primary:hover { background: var(--primary-dark); }

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--gray-300);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.15s;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-text {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  transition: opacity 0.15s;
}

.btn-text:hover { opacity: 0.7; }

.btn-full { width: 100%; }

/* === SECTIONS === */
.section {
  padding: 4.5rem 0;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--gray-400);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.badge-premium {
  background: rgba(245,158,11,0.1);
  color: var(--primary);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-live {
  background: rgba(232,72,85,0.12);
  color: var(--accent);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* === SHOW GRID === */
.show-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.show-card {
  background: var(--gray-800);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.15s;
}

.show-card:hover {
  border-color: rgba(255,255,255,0.12);
}

.show-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gray-700);
}

.show-emoji { font-size: 3rem; }

.badge-time {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: var(--dark);
  color: var(--white);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.1);
}

.show-info { padding: 1.1rem; }

.show-info h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.show-venue {
  color: var(--gray-400);
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
}

.show-lineup {
  color: var(--gray-400);
  font-size: 0.8rem;
  margin-bottom: 0.7rem;
  line-height: 1.5;
}

.show-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.show-type-tag {
  background: var(--primary-glow);
  color: var(--primary);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.show-price {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

/* === CLUB GRID === */
.club-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.25rem;
}

.club-card {
  background: var(--gray-800);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.15s;
}

.club-card:hover {
  border-color: rgba(255,255,255,0.12);
}

.featured-card {
  border-color: rgba(245,158,11,0.15);
}

.club-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gray-700);
}

.club-emoji { font-size: 4rem; }

.badge-featured {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: var(--primary);
  color: var(--dark);
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.club-info { padding: 1.1rem; }

.club-info h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.club-location {
  color: var(--gray-400);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.club-desc {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 0.85rem;
  line-height: 1.55;
}

.club-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.rating { color: var(--gold); font-size: 0.9rem; font-weight: 700; }

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ff2d7b;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 2px;
}

.club-shows {
  color: var(--gray-400);
  font-size: 0.82rem;
  font-weight: 500;
}

/* === TYPE GRID === */
.types-section { background: var(--dark-2); }

.type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.type-card {
  background: var(--gray-800);
  padding: 1.1rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 500;
  color: var(--gray-300);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.15s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.type-card span { font-size: 2rem; }

.type-card:hover {
  border-color: var(--primary);
  color: var(--white);
}

/* === EVENT TYPES === */
.event-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.event-card {
  background: var(--gray-800);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.15s;
}

.event-card:hover {
  border-color: rgba(245,158,11,0.2);
}

.event-icon { font-size: 2rem; display: block; margin-bottom: 0.85rem; }

.event-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.event-card p {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 0.85rem;
  line-height: 1.55;
}

/* === CONTACT / LEAD FORM === */
.contact-section { background: var(--dark-2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 0.85rem; }

.contact-info p {
  color: var(--gray-400);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--gray-300);
  font-size: 0.88rem;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  padding: 0.75rem 0.9rem;
  background: var(--gray-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.88rem;
  font-family: inherit;
  transition: border-color 0.15s;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.quote-form textarea { resize: vertical; }

.form-note {
  font-size: 0.72rem;
  color: var(--gray-600);
  text-align: center;
}

/* === PRICING === */
.list-section {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.list-content { text-align: center; }

.list-content p {
  color: var(--gray-400);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 880px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--gray-800);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  text-align: left;
  position: relative;
}

.pricing-featured {
  border-color: var(--primary);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--dark);
  padding: 0.2rem 0.8rem;
  border-radius: var(--radius);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gray-400);
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-300);
}

/* === CALENDAR === */
.calendar-section { background: var(--dark-2); }

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.cal-prev, .cal-next {
  background: var(--gray-800);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}

.cal-prev:hover, .cal-next:hover {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}

.cal-month-label {
  color: var(--white);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  min-width: 180px;
  text-align: center;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.cal-day {
  background: var(--gray-800);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 0.85rem 0.4rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  position: relative;
}

.cal-day:hover {
  border-color: rgba(245,158,11,0.3);
}

.cal-day.today {
  border-color: var(--primary);
}

.cal-day.selected {
  background: var(--primary);
  border-color: var(--primary);
}

.cal-day.selected .cal-day-name,
.cal-day.selected .cal-day-num,
.cal-day.selected .cal-show-count {
  color: var(--dark);
}

.cal-day-name {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cal-day-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.cal-show-count {
  font-size: 0.68rem;
  color: var(--gray-400);
  font-weight: 500;
}

.cal-day.has-shows::after {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  bottom: 5px;
}

.cal-day.selected.has-shows::after {
  background: var(--dark);
}

.calendar-shows {
  min-height: 80px;
}

.calendar-shows .show-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.calendar-shows .cal-date-header {
  color: var(--white);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.calendar-shows .cal-date-header .badge-live {
  font-size: 0.65rem;
}

.cal-no-shows {
  text-align: center;
  padding: 2.5rem 0;
  color: var(--gray-400);
  font-size: 0.9rem;
}

/* === AD SLOTS === */
.ad-slot { padding: 0.75rem 0; background: rgba(0,0,0,0.2); }

.ad-placeholder {
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.06);
  padding: 0.75rem;
  text-align: center;
  color: var(--gray-600);
  font-size: 0.72rem;
  border-radius: var(--radius);
}

/* === WHOP CHECKOUT === */
.trial-note { font-size: 0.75rem; color: var(--gray-400); margin-top: 0.5rem; text-align: center; }
.whop-embed-section { margin-top: 3rem; text-align: center; }
.whop-embed-section h3 { color: var(--white); font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.whop-embed-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 1.5rem; max-width: 800px; margin: 0 auto; }
.whop-embed-card { background: var(--gray-800); border-radius: var(--radius); padding: 1.5rem; border: 1px solid rgba(255,255,255,0.06); }
.whop-embed-card h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 1rem; }
.whop-checkout-wrapper { border-radius: var(--radius-sm); overflow: hidden; }

/* === FOOTER === */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 3rem;
  padding-bottom: 1.75rem;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.85rem;
  margin-top: 0.6rem;
  line-height: 1.55;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-links h4 {
  color: var(--gray-300);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.footer-links a {
  display: block;
  color: var(--gray-400);
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  transition: color 0.15s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-600);
}

/* === MOBILE NAV === */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(12,12,12,0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}

.mobile-nav.active { display: flex; }

.mobile-nav a {
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: block; }

  .hero h1 { font-size: 2.2rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-content { text-align: left; }

  .search-bar {
    flex-direction: column;
    border-radius: var(--radius);
    padding: 0.4rem;
  }

  .search-bar select {
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .search-bar .btn-primary {
    border-radius: var(--radius);
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 0.4rem;
  }

  .calendar-grid {
    display: flex;
    overflow-x: auto;
    gap: 0.4rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .cal-day {
    min-width: 68px;
    flex-shrink: 0;
    padding: 0.65rem 0.4rem;
  }

  .cal-day-num { font-size: 1.2rem; }

  .calendar-shows .show-grid { grid-template-columns: 1fr; }

  .show-grid { grid-template-columns: 1fr; }
  .club-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards { grid-template-columns: 1fr; }

  .section { padding: 3rem 0; }
}

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