/* === 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.15);
  --dark: #0d0d0d;
  --dark-2: #1a1a2e;
  --gray-900: #111;
  --gray-800: #1e1e2f;
  --gray-700: #2a2a3d;
  --gray-600: #3a3a4d;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --white: #fff;
  --gold: #fbbf24;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
}

html { scroll-behavior: smooth; }

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

.container {
  max-width: 1200px;
  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: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
}

.logo-icon { font-size: 1.8rem; }
.logo-text { color: var(--white); }
.logo-dot { color: var(--primary); }

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

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-400);
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--primary);
  color: var(--dark) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--primary-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: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 50%, #2d1b00 100%);
  overflow: hidden;
  padding-top: 64px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(245,158,11,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(251,191,36,0.08) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 4rem 0;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

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

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

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

.search-bar .btn-primary {
  padding: 0.85rem 2rem;
  border-radius: 100px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  font-size: 0.95rem;
  color: var(--gray-400);
}

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

/* === BUTTONS === */
.btn-primary {
  background: var(--primary);
  color: var(--dark);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  font-family: inherit;
}

.btn-primary:hover { background: var(--primary-dark); }
.btn-primary:active { transform: scale(0.98); }

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
}

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

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

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

.btn-full { width: 100%; }

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

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

.section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

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

.badge-premium {
  background: rgba(245,158,11,0.15);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-live {
  background: rgba(239,68,68,0.15);
  color: #ef4444;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: pulse-live 2s ease-in-out infinite;
}

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

/* === SHOW GRID (Tonight's Shows) === */
.show-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.show-card {
  background: var(--gray-800);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.show-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.show-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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

.badge-time {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--primary);
  color: var(--dark);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
}

.show-info { padding: 1.25rem; }

.show-info h3 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

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

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

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

.show-type-tag {
  background: var(--primary-glow);
  color: var(--primary);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

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

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

.club-card {
  background: var(--gray-800);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.club-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

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

.club-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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

.badge-featured {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--primary);
  color: var(--dark);
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.club-info { padding: 1.25rem; }

.club-info h3 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

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

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

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

.stars { color: var(--gold); font-size: 0.85rem; }
.stars small { color: var(--gray-400); margin-left: 0.3rem; }

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

/* === TYPE GRID (Browse by Type) === */
.types-section { background: var(--gray-900); }

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

.type-card {
  background: var(--gray-800);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  color: var(--gray-300);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
}

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

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

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

.event-card {
  background: var(--gray-800);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s;
}

.event-card:hover {
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-2px);
}

.event-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }

.event-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.event-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

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

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

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

.contact-info p {
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

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

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

.quote-form input,
.quote-form select,
.quote-form textarea {
  padding: 0.85rem 1rem;
  background: var(--gray-800);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.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.75rem;
  color: var(--gray-600);
  text-align: center;
}

/* === PRICING === */
.list-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b00 100%);
}

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

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

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

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

.pricing-featured {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(245,158,11,0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--dark);
  padding: 0.3rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
}

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

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

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

.ad-placeholder {
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.08);
  padding: 1rem;
  text-align: center;
  color: var(--gray-600);
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
}

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

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

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

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

.footer-links h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

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

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

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

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

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

.mobile-nav a {
  font-size: 1.3rem;
  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: 1rem; }

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

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

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

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

  .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); }
}
