/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 100;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background-color: rgba(10, 17, 40, 0.9);
  padding: 1rem 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  transition: var(--transition-smooth);
}

.navbar.scrolled .logo img {
  height: 30px;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--color-accent-gold);
}




/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../poster.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  /* Add a dark gradient overlay to ensure text readability against the poster */
  background-blend-mode: overlay;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg, 
    rgba(10, 17, 40, 0.9) 0%, 
    rgba(19, 27, 47, 0.7) 100%
  );
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  padding: 0 var(--spacing-md);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-subtitle {
  font-family: var(--font-body);
  color: var(--color-accent-gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 5.5rem);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* --- Section Formatting --- */
.section-padding {
  padding: var(--spacing-xxl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-header h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- About Section --- */
.about {
  background-color: var(--color-primary-dark);
  position: relative;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.about-img {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.about-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid var(--color-accent-gold);
  border-radius: 8px;
  transform: translate(-15px, 15px);
  z-index: -1;
}

.about-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* --- Tickets Section --- */
.tickets {
  background-color: var(--color-secondary-dark);
  position: relative;
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
  max-width: 900px;
  margin: 0 auto;
}

.ticket-card {
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.ticket-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-accent-gold);
}

.ticket-type {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-accent-gold);
}

.ticket-price {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticket-price span {
  font-size: 1.5rem;
  margin-right: 0.25rem;
}

.ticket-features {
  margin-bottom: 2.5rem;
}

.ticket-features li {
  padding: 0.75rem 0;
  color: var(--color-text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ticket-features li:last-child {
  border-bottom: none;
}

.ticket-features i {
  color: var(--color-accent-gold);
  margin-right: 0.5rem;
}

/* --- Footer --- */
.footer {
  background-color: var(--color-primary-dark);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  text-align: center;
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 50px;
  margin: 0 auto;
  filter: grayscale(100%) opacity(0.5);
  transition: var(--transition-smooth);
}

.footer-logo img:hover {
  filter: none;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
}

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

.footer-copy {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}


/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* Hide for simplicity in prototype or add mobile menu later */
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-cta {
    flex-direction: column;
  }
}
