/* ================================================= */
/* ✅ VIEW EVENT PAGE PREMIUM STYLING */
/* File: css/view-event.css */
/* ================================================= */

body {
  font-family: "Inter", sans-serif;
}

/* ✅ HERO SECTION */
.event-hero {
  height: 100vh;
  background: linear-gradient(
    120deg,
    #1e3a8a,
    #3b82f6,
    #9333ea
  );
  background-size: 300% 300%;
  animation: gradientMove 10s ease infinite;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ✅ DARK OVERLAY */
.hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ✅ HERO CONTENT */
.hero-content {
  text-align: center;
  max-width: 750px;
  color: white;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-top: 20px;
}

.hero-content p {
  font-size: 1.15rem;
  margin: 20px 0;
  opacity: 0.9;
}

/* ✅ META */
.event-meta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 25px 0;
}

.event-meta p {
  padding: 10px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
}

/* ✅ BADGE */
.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.badge.live {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}

/* ================================================= */
/* ✅ EVENT DETAILS */
/* ================================================= */

.event-details {
  padding: 110px 20px;
  background: #f9fafb;
}

.event-details h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 25px;
  color: #1e3a8a;
}

.event-details p {
  max-width: 800px;
  margin: auto;
  text-align: center;
  font-size: 1.05rem;
  color: #475569;
  margin-bottom: 60px;
}

/* ✅ GRID BOXES */
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.detail-box {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

.detail-box h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #0f172a;
}

.detail-box ul {
  padding-left: 18px;
}

.detail-box li {
  margin-bottom: 10px;
  color: #475569;
  font-weight: 600;
}

/* ================================================= */
/* ✅ BOOKING SECTION */
/* ================================================= */

.booking-section {
  padding: 110px 20px;
  background: linear-gradient(to right, #1e3a8a, #3b82f6);
  color: white;
  text-align: center;
}

.booking-section h2 {
  font-size: 2.5rem;
  font-weight: 900;
}

.subtitle {
  margin-top: 15px;
  opacity: 0.9;
  margin-bottom: 50px;
}

/* ✅ BOOKING BOX */
.booking-box {
  max-width: 550px;
  margin: auto;
  background: rgba(255,255,255,0.12);
  padding: 35px;
  border-radius: 20px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.25);
}

/* ✅ FORM */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking-form label {
  text-align: left;
  font-weight: 700;
}

.booking-form input,
.booking-form select {
  padding: 12px;
  border-radius: 12px;
  border: none;
  outline: none;
  font-size: 15px;
}

/* ✅ BUTTON */
.booking-form button {
  margin-top: 10px;
  cursor: pointer;
}

/* ================================================= */
/* ✅ MOBILE RESPONSIVE */
/* ================================================= */

@media (max-width: 768px) {

  .hero-content h1 {
    font-size: 2.1rem;
  }

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

  .event-meta {
    flex-direction: column;
    gap: 12px;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .booking-box {
    padding: 25px;
  }

  .booking-section h2 {
    font-size: 2rem;
  }
}
