/* ============================= */
/* ✅ INDEX PAGE ONLY STYLES     */
/* ============================= */


/* ✅ HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ✅ Animated Gradient Background */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    #1e3a8a,
    #3b82f6,
    #9333ea,
    #1e3a8a
  );
  background-size: 300% 300%;
  animation: gradientMove 10s ease infinite;
  z-index: 0;
}

/* ✅ Dark Overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  color: white;
  text-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

.hero p {
  font-size: 1.25rem;
  margin: 2rem 0;
  color: rgba(255, 255, 255, 0.9);
}


/* ✅ HERO BUTTONS */
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ✅ HERO STATS */
.hero-stats {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.hero-stats div {
  padding: 18px 28px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  transition: 0.35s ease;
}

.hero-stats p {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.hero-stats div:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.55);
  border-color: rgba(59, 130, 246, 0.6);
}

.hero-stats div:hover p {
  color: white;
}



/* ✅ FEATURES SECTION */
.features {
  padding: 100px 0;
  background: #f8fafc;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-item {
  width: 230px;
  padding: 28px 20px;
  border-radius: 18px;
  background: white;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
  cursor: pointer;
  text-align: center;
}

.tab-item .icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.tab-item a {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.tab-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 12px 35px rgba(59, 130, 246, 0.25);
}

.tab-item.active {
  border: 2px solid var(--secondary);
}

.tab-content {
  max-width: 750px;
  margin: auto;
  padding: 25px 35px;
  border-radius: 18px;
  background: rgba(59, 130, 246, 0.08);
  font-size: 16px;
  font-weight: 500;
}



/* ========================================== */
/* ✅ FEATURED EVENTS SECTION (INDEX PAGE) */
/* ========================================== */

.featured-events {
  padding: 130px 0;
  background: radial-gradient(circle at top, #2563eb, #0f172a);
  color: white;
  position: relative;
  overflow: hidden;
}

.featured-events h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 70px;
  text-align: center;
}

/* ✅ Event Grid Layout */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.8rem;
}

/* ✅ Event Card Premium Glass */
.event-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.35);

  transition: 0.45s ease;
}

/* ✅ Hover Lift */
.event-card:hover {
  transform: translateY(-15px) scale(1.03);
}

/* ✅ Event Image */
.event-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ✅ Event Info Section */
.event-info {
  padding: 28px;
  text-align: left;
}

/* ✅ Event Title */
.event-info h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: white;
}

/* ✅ Event Meta Text */
.event-info p {
  font-size: 14px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

/* ========================================== */
/* ✅ BADGE STYLES */
/* ========================================== */

.badge {
  position: absolute;
  top: 18px;
  left: 18px;

  padding: 7px 16px;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 800;
  color: white;

  z-index: 5;
}

/* ✅ Live Badge */
.live {
  background: rgba(239, 68, 68, 0.95);
}

/* ✅ Upcoming Badge */
.upcoming {
  background: rgba(34, 197, 94, 0.95);
}

/* ========================================== */
/* ✅ FIXED BUTTON (PERFECT PREMIUM STYLE) */
/* ========================================== */

.event-info .btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 18px;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  background: #3b82f6;
  color: white !important;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.event-info .btn:hover {
  background: white;
  color: #2563eb !important;
  transform: scale(1.03);
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.55);
}



/* ✅ TESTIMONIALS */
.testimonials {
  padding: 120px 0;
  background: linear-gradient(to bottom, #f8fafc, #eef2ff);
}

.testimonials h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 60px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 35px 28px;
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.12);
  transition: 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-12px);
}


/* ============================================= */
/* ✅ MOBILE RESPONSIVE ONLY (NO DESIGN CHANGE) */
/* ============================================= */

@media (max-width: 768px) {

  .hero h1 {
    font-size: 2.4rem;
    text-align: center;
  }

  .hero p {
    font-size: 1rem;
    text-align: center;
    padding: 0 15px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-stats div {
    width: 90%;
    text-align: center;
  }

  .features {
    padding: 60px 20px;
  }

  .tab-item {
    width: 90%;
    max-width: 320px;
  }

  .featured-events {
    padding: 80px 20px;
  }

  .featured-events h2 {
    font-size: 2.2rem;
  }

  .event-grid {
    gap: 1.5rem;
  }

  .testimonials {
    padding: 80px 20px;
  }

  .testimonials h2 {
    font-size: 2rem;
    text-align: center;
  }
}
