/* =========================================
   GLOBAL RESET
========================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #111;
  color: #ffffff;
}

/* =========================================
   HERO (IMAGE VERSION)
========================================= */

.hero-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

/* Background Image */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  animation: fadeUp 1s ease forwards;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ffdd00;
  text-shadow: 2px 2px 6px #000;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  background-color: #ffdd00;
  color: #222;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2rem;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background-color: #ffb800;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 221, 0, 0.4);
}

/* =========================================
   HERO (VIDEO VERSION - MATCHED STYLE)
========================================= */

.event-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

/* Video Background */
.event-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay */
.event-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(2px);
  z-index: 1;
}

/* Content */
.event-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  animation: fadeUp 1s ease forwards;
}

.event-hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ffdd00;
  text-shadow: 2px 2px 6px #000;
}

.event-hero-description {
  font-size: 1.2rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.event-hero-button {
  display: inline-block;
  background-color: #ffdd00;
  color: #222;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2rem;
  transition: 0.3s ease;
}

.event-hero-button:hover {
  background-color: #ffb800;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 221, 0, 0.4);
}

/* =========================================
   INFO CARDS
========================================= */

.info-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 80px auto;
  gap: 30px;
  padding: 0 20px;
}

.card {
  background-color: #1b1b1b;
  color: #ffffff;
  padding: 30px;
  border-radius: 14px;
  flex: 1 1 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 221, 0, 0.1);
}

.card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #ffdd00;
}

.card p {
  font-size: 1rem;
  line-height: 1.6;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 221, 0, 0.15);
}

/* =========================================
   TICKET FORM SECTION
========================================= */

.ticket-form-section {
  background: linear-gradient(to bottom, #111, #1a1a1a);
  padding: 80px 20px;
}

.form-container {
  max-width: 650px;
  margin: 0 auto;
  background: #1b1b1b;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 221, 0, 0.1);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #ffdd00;
  font-size: 2rem;
}

.tickets-available {
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
  font-size: 1.2rem;
  color: #ff4c00;
}

/* Form Fields */

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #ffdd00;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #333;
  background-color: #111;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ffdd00;
  box-shadow: 0 0 12px rgba(255, 221, 0, 0.4);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Submit Button */

.submit-btn {
  width: 100%;
  padding: 16px;
  background-color: #ffdd00;
  color: #222;
  font-size: 1.3rem;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background-color: #ffb800;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 221, 0, 0.4);
}

/* Sold Out */

.sold-out-message {
  text-align: center;
  padding: 40px;
  background-color: #1b1b1b;
  color: #ff4c00;
  border-radius: 14px;
  font-size: 1.2rem;
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {
  .hero-content h1,
  .event-hero-title {
    font-size: 2.2rem;
  }

  .hero-content p,
  .event-hero-description {
    font-size: 1rem;
  }

  .info-cards {
    flex-direction: column;
  }

  .form-container {
    padding: 35px 25px;
  }
}
