/* ============================================
   VIBES ON THE ROCK — Tickets Stylesheet v2
   Airbnb-inspired clean card style
   ============================================ */

/* HERO */
.tickets-hero {
  position: relative;
  width: 100%;
  min-height: 55vh;
  background: #071D3A;
  background-image: url('https://vibesontherock.com/images/votr-tickets-hero.jpg');
  background-size: cover;
  background-position: center 30%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.tickets-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(7,29,58,0.88) 0%, rgba(7,29,58,0.55) 60%, rgba(7,29,58,0.2) 100%);
}
.tickets-hero-content {
  position: relative; z-index: 2;
  padding: 80px 60px; max-width: 700px;
}
.hero-coords {
  position: absolute; bottom: 36px; right: 48px; z-index: 2;
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px; color: rgba(244,240,232,0.35); letter-spacing: 3px;
}

/* WEEKEND PASSES */
.passes-section {
  background: #F6F3EC;
  padding: 80px 60px;
}
.passes-inner { max-width: 1140px; margin: 0 auto; }
.passes-header { text-align: center; margin-bottom: 48px; }
.passes-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3vw, 42px); font-weight: 300; font-style: italic;
  color: #071D3A; margin-bottom: 10px;
}
.passes-sub { font-size: 14px; color: rgba(7,29,58,0.5); }
.passes-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; max-width: 780px; margin: 0 auto;
}
.pass-card {
  background: #fff;
  border: 1px solid rgba(7,29,58,0.1);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(7,29,58,0.06);
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pass-card:hover {
  box-shadow: 0 8px 32px rgba(7,29,58,0.12);
  transform: translateY(-2px);
}
.pass-card.pass-featured {
  border-color: #D5B56F;
  border-width: 2px;
}
.pass-badge {
  display: inline-block;
  font-size: 8px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  background: #D5B56F; color: #071D3A;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 16px;
}
.pass-badge-coral { background: #E98970; color: #fff; }
.pass-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px; font-weight: 600; color: #071D3A; margin-bottom: 8px; line-height: 1.2;
}
.pass-price {
  font-size: 32px; font-weight: 700; color: #071D3A; margin-bottom: 4px;
}
.pass-price span { font-size: 11px; font-weight: 400; color: rgba(7,29,58,0.35); letter-spacing: 1px; }
.pass-savings {
  font-size: 11px; font-weight: 600; color: #BBC0A8;
  margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(7,29,58,0.07);
}
.pass-perks { list-style: none; margin-bottom: 24px; }
.pass-perks li {
  font-size: 12px; line-height: 1.7; color: rgba(7,29,58,0.65);
  padding: 5px 0 5px 18px; border-bottom: 1px solid rgba(7,29,58,0.05); position: relative;
}
.pass-perks li::before { content: '→'; position: absolute; left: 0; color: #D5B56F; font-size: 10px; }

/* NIGHT SECTIONS */
.night-section {
  background: #F6F3EC;
  padding: 60px 60px 0;
}
.night-section:last-of-type { padding-bottom: 80px; }

.night-label {
  max-width: 1140px; margin: 0 auto 28px;
  display: flex; align-items: center; gap: 20px;
}
.night-label-dot {
  width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0;
}
.night-label-text {
  font-size: 9px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(7,29,58,0.4);
}
.night-label-line { display: none; }
.night-title-block {
  max-width: 1140px; margin: 0 auto 32px;
}
.night-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(24px, 2.5vw, 36px); font-weight: 600; color: #071D3A;
  margin-bottom: 4px;
}
.night-desc { font-size: 13px; color: rgba(7,29,58,0.5); }

/* TICKET CARDS — Airbnb style */
.tickets-grid {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.tickets-grid.two-col { grid-template-columns: repeat(2, 1fr); max-width: 560px; }
.tickets-grid.one-col { grid-template-columns: 1fr; max-width: 280px; }

.ticket-card {
  background: #fff;
  border: 1px solid rgba(7,29,58,0.1);
  border-radius: 14px;
  padding: 24px 22px;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgba(7,29,58,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}
.ticket-card:hover {
  box-shadow: 0 8px 28px rgba(7,29,58,0.1);
  transform: translateY(-2px);
}
.ticket-tier {
  font-size: 8px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: #D5B56F; margin-bottom: 8px;
}
.ticket-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px; font-weight: 600; color: #071D3A;
  margin-bottom: 16px; line-height: 1.2; flex: 1;
}
.ticket-price {
  font-size: 26px; font-weight: 700; color: #071D3A; margin-bottom: 4px;
}
.ticket-note {
  font-size: 10px; color: rgba(7,29,58,0.38); margin-bottom: 18px; letter-spacing: 0.5px;
}
.ticket-btn {
  display: block; text-align: center;
  background: #071D3A; color: #F6F3EC;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; padding: 13px 16px;
  border-radius: 8px;
  transition: background 0.2s;
  margin-top: auto;
}
.ticket-btn:hover { background: #E98970; color: #fff; }

/* DIVIDER BETWEEN NIGHTS */
.night-divider {
  max-width: 1140px; margin: 56px auto 0;
  height: 1px; background: rgba(7,29,58,0.08);
}

/* COORDS */
.tickets-coords-block {
  background: #071D3A; text-align: center; padding: 52px 60px;
}
.coords-main-text {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 28px; font-weight: 700; letter-spacing: 6px; color: #F6F3EC; margin-bottom: 8px;
}
.coords-date-text {
  font-size: 11px; font-weight: 500; letter-spacing: 3px; color: #D5B56F;
  text-transform: uppercase; margin-bottom: 4px;
}
.coords-place-text {
  font-size: 9px; font-weight: 600; letter-spacing: 3px;
  color: rgba(244,240,232,0.35); text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .tickets-hero-content { padding: 60px 24px; }
  .passes-section, .night-section { padding-left: 24px; padding-right: 24px; }
  .passes-grid { grid-template-columns: 1fr; }
  .tickets-grid { grid-template-columns: 1fr 1fr; }
  .tickets-grid.two-col { max-width: 100%; }
  .tickets-grid.one-col { max-width: 100%; }
  .tickets-coords-block { padding: 40px 24px; }
}
@media (max-width: 560px) {
  .tickets-grid { grid-template-columns: 1fr; }
}
