/* ============================
   SALON SPORT NATURE 2027
   CSS BILLETTERIE — ssn-billetterie.php uniquement
   ============================ */

/* ============================
   PAGE HERO
   ============================ */
.page-hero {
  background: var(--navy); padding: 8rem 0 5rem;
  position: relative; overflow: hidden;
}

.page-hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(15,123,103,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-breadcrumb {
  font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem;
}

.page-hero-breadcrumb span { color: var(--gold); }

.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 900;
  color: var(--white); line-height: 1;
}

.page-hero-sub {
  color: rgba(255,255,255,0.7); font-size: 1.1rem;
  margin-top: 1rem; max-width: 600px;
}

/* ============================
   BILLETTERIE HERO BANNER
   ============================ */
.billetterie-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #003d6b 100%);
  padding: 3rem; border-radius: 12px;
  text-align: center; color: var(--white); margin-bottom: 3rem;
}

.billetterie-hero h2 {
  font-size: 2.5rem; font-weight: 900; margin-bottom: 0.5rem;
}

.billetterie-hero p {
  color: rgba(255,255,255,0.8); margin-bottom: 2rem;
}

/* ============================
   TARIFS
   ============================ */
.tarifs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
}

.tarif-card {
  border-radius: 8px; overflow: hidden;
  border: 2px solid rgba(0,46,82,0.1);
  text-align: center; transition: var(--transition);
}

.tarif-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.tarif-card.featured { border-color: var(--gold); }

.tarif-header {
  background: var(--navy); padding: 2rem; color: var(--white);
}

.tarif-card.featured .tarif-header { background: var(--gold); color: var(--navy); }

.tarif-badge {
  display: inline-block; background: var(--gold); color: var(--navy);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.2rem 0.6rem;
  border-radius: 2px; margin-bottom: 0.75rem;
}

.tarif-card.featured .tarif-badge { background: var(--navy); color: var(--white); }

.tarif-name {
  font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
}

.tarif-price {
  font-size: 3rem; font-weight: 900; line-height: 1; margin: 0.75rem 0 0.25rem;
}

.tarif-price .currency {
  font-size: 1.5rem; font-weight: 500;
  vertical-align: top; margin-top: 0.4rem; display: inline-block;
}

.tarif-price-note { font-size: 0.75rem; opacity: 0.7; }

.tarif-body { padding: 2rem; }

.tarif-features { margin-bottom: 1.5rem; }

.tarif-feature {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0; font-size: 0.85rem; color: #445;
  border-bottom: 1px solid rgba(0,46,82,0.06);
}

.tarif-feature i { color: var(--green); }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 900px) {
  .tarifs-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .billetterie-hero { padding: 2rem; }
  .billetterie-hero h2 { font-size: 1.8rem; }
}

@media (max-width: 600px) {
  .page-hero { padding: 6rem 0 3rem; }
}
