/* CSS spécifique à la page Pass (hérite de base.css) */

.hero {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url('/assets/spectacle/spectacle3.jpg') center/cover no-repeat fixed;
  margin-top: 110px;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--bg-light));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 20px;
  max-width: 900px;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 6px 25px rgba(0,0,0,0.7);
  letter-spacing: 1.5px;
}

.hero p {
  font-size: 1.2rem;
  font-weight: 300;
  text-shadow: 0 3px 15px rgba(0,0,0,0.7);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 5% 80px;
}

.pass-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.pass-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  padding: 40px 35px;
  position: relative;
  border-top: 4px solid var(--gold);
}

.pass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
}

.pass-card h2 {
  font-family: 'Cinzel', serif;
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.pass-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.pass-card ul li {
  padding: 12px 0 12px 30px;
  color: var(--text-light);
  position: relative;
}

.pass-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pass-card ul li strong { color: var(--text-dark); }

.btn-pass {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: white;
  padding: 16px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(139,0,0,0.3);
}

.badge-special {
  display: inline-block;
  background: var(--gold);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

@media (max-width: 1024px) {
  .pass-container { grid-template-columns: 1fr; }
}
