/* ---------- HERO ---------- */
.hero {
  position: relative;
  text-align: center;
  padding: 120px 20px;
  background: radial-gradient(circle at center, rgba(255,140,0,0.4), rgba(0,0,0,0.9));
  overflow: hidden;
  z-index: 1;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("https://i.ibb.co/4gCpM7vp/Whats-App-Image-2025-06-26-at-12-27-06-PM-removebg-preview.png") 
              no-repeat center;
  background-size: 60%;
  opacity: 0.08;
  z-index: 0;
}
.hero h1, .hero p, .hero .btn { position: relative; z-index: 2; }
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #1b2a49;
  text-shadow: 0 1px 4px rgba(255,255,255,0.4);
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: #1b2a49;
  text-shadow: 0 1px 3px rgba(255,255,255,0.3);
}
.hero .btn {
  background: linear-gradient(90deg, #ff8c00, #ffb347);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
}

/* ---------- HEADER ---------- */
.site-header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: relative;
  z-index: 10;
}
.site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand__logo { height: 56px; width: auto; }

/* MSME support */
.support-text {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  margin: 20px auto;
}
.support-text a {
  color: #555;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.support-text a:hover { color: #1b2a49; }
.msme-logo { height: 40px; width: auto; }

/* ---------- NAVIGATION ---------- */
.nav-list {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-list a {
  color: #0b1220;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
}
.nav-list a:hover {
  background: rgba(0,0,0,0.03);
  color: #1b2a49;
}
.btn--primary {
  background: linear-gradient(90deg,#ff8c00,#ffb347);
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(255,140,0,0.12);
}

/* Mobile nav */
.nav-toggle { position: absolute; left: -9999px; }
.nav-toggle-label { display: none; width: 44px; height: 44px; }
.hamburger, .hamburger::before, .hamburger::after {
  display: block; width: 22px; height: 2px; background: #0b1220;
  border-radius: 2px; transition: transform .18s ease;
  position: relative;
}
.hamburger::before { content: ""; position: absolute; top: -7px; }
.hamburger::after { content: ""; position: absolute; top: 7px; }
@media (max-width: 880px) {
  .nav-toggle-label { display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; box-shadow: 0 8px 20px rgba(12,18,30,0.08);
    display: none; padding: 14px 20px;
  }
  .main-nav .nav-list { flex-direction: column; gap: 12px; }
  .nav-toggle:checked + .nav-toggle-label + .main-nav { display: block; }
  .nav-toggle:checked + .nav-toggle-label .hamburger { background: transparent; }
  .nav-toggle:checked + .nav-toggle-label .hamburger::before {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle:checked + .nav-toggle-label .hamburger::after {
    transform: translateY(-7px) rotate(-45deg);
  }
}
@media (max-width: 1100px) { .nav-list { gap: 12px; } }

/* ---------- COUNTDOWN ---------- */
.festive-countdown {
  text-align: center;
  padding: 50px 20px;
  background: #fff3e0;
  position: relative;
}
.countdown-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
#countdown {
  font-size: 2.5rem;
  color: #d35400;
  font-weight: bold;
  padding: 10px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* Diya videos */
.diya-video {
  width: 90px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 6px rgba(255,170,0,.9));
  animation: diyaGlow 1.6s ease-in-out infinite alternate;
}
@keyframes diyaGlow {
  from { filter: drop-shadow(0 0 6px rgba(255,170,0,.8)); }
  to   { filter: drop-shadow(0 0 16px rgba(255,210,60,1)); }
}
/* Crackers */
.crackers { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); pointer-events: none; }
.spark {
  position: absolute; width: 6px; height: 6px; background: gold; border-radius: 50%;
  animation: explode 0.8s forwards;
}
@keyframes explode {
  0% { transform: scale(1) translate(0,0); opacity: 1; }
  100% { transform: scale(0.5) translate(var(--x), var(--y)); opacity: 0; }
}

/* ---------- ABOUT ---------- */
.about {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
}
.about p {
  max-width: 800px;
  margin: 10px auto;
  line-height: 1.6;
}
.about-logo {
  height: 120px;
  margin: 20px auto;
  display: block;
  max-width: 220px;
}

/* ---------- MEDIA SECTION ---------- */
.media-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  margin-top: 20px;
}
.media-box {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}
@media (max-width: 880px) {
  .media-grid { grid-template-columns: 1fr; }
  .media-box { margin-bottom: 20px; }
}

/* ---------- WHY ATTEND ---------- */
.festive-features {
  background: linear-gradient(135deg, #fff8e1, #ffe0b2);
  padding: 50px 20px;
  text-align: center;
}
.festive-features .feature-card {
  background: #fff; padding: 20px; border-radius: 10px;
  font-weight: 600; box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  border: 2px solid transparent;
}
.festive-features .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
  border: 2px solid #ff9800;
}

/* ---------- SPARKLING HEADINGS ---------- */
.about h2,
.media-section h2,
.features h2,
.testimonials h2,
.venue h2,
.products h2,
#partners h2,
footer h2,
.festive-countdown h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  color: #b84e00;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.15);
}
.about h2::after,
.media-section h2::after,
.features h2::after,
.testimonials h2::after,
.venue h2::after,
.products h2::after,
#partners h2::after,
footer h2::after,
.festive-countdown h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 40%;
  height: 4px;
  background: linear-gradient(90deg, rgba(255,200,70,0.0), rgba(255,183,28,0.95), rgba(255,200,70,0.0));
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(255,170,40,0.12);
  animation: underline-spark 2.6s ease-in-out infinite;
}
@keyframes underline-spark {
  0% { transform: translateX(-120%) scaleX(0.2); opacity: 0.15; }
  30% { transform: translateX(-10%) scaleX(1); opacity: 1; }
  70% { transform: translateX(10%) scaleX(1); opacity: 1; }
  100% { transform: translateX(120%) scaleX(0.2); opacity: 0.15; }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials { padding: 40px 20px; background: #eef2f7; text-align: center; }
.testimonial { margin: 15px 0; font-style: italic; }

/* ---------- VENUE ---------- */
.venue { padding: 40px 20px; text-align: center; }
.venue iframe { border-radius: 8px; margin-top: 10px; }

/* ---------- PRODUCTS ---------- */
.products { padding: 50px 20px; text-align: center; background: #fff7e6; }
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; margin-top: 20px;
}
.product-card {
  background: #fff; padding: 18px; border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-weight: 600; font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* ---------- PARTNERS ---------- */
#partners { padding: 40px 20px; text-align: center; }
.partner-logos {
  display: grid; align-items: center;
  grid-template-columns: repeat(auto-fit,minmax(120px,1fr));
  gap: 20px; margin-top: 20px;
}
.partner-logos img { max-width: 100%; height: 80px; object-fit: contain; }

/* ---------- FOOTER ---------- */
footer {
  background: #1b2a49; color: #fff;
  padding: 20px 10px; text-align: center;
}
footer a { color: #ff8c00; text-decoration: none; }
footer a:hover { color: #fff; }
.msme-note { margin-top: 10px; font-size: 0.9rem; color: #ccc; font-style: italic; }
.social-icons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.social-icons img {
  width: 28px;
  height: 28px;
  transition: transform 0.2s ease-in-out;
}
.social-icons img:hover { transform: scale(1.2); }

/* ---------- FIREWORKS SPARKS ---------- */
#fireworks-container {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 180px;
  pointer-events: none;
  z-index: 9999;
}
.fw-corner {
  position: absolute; top: 6px;
  width: 200px; height: 160px;
  overflow: visible;
}
.fw-left { left: 0; }
.fw-right { right: 0; }
.fw-spark {
  position: absolute;
  bottom: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, #ffd86b 40%, #ff7a00 80%);
  box-shadow: 0 0 8px rgba(255,200,80,1), 0 0 16px rgba(255,140,0,0.8);
  animation: fw-move var(--dur, 1.8s) ease-out forwards;
}
@keyframes fw-move {
  0% { transform: translate(0,0) scale(1); opacity: 1; }
  80% { transform: translate(var(--dx), var(--dy)) scale(0.6); opacity: 0.8; }
  100% { transform: translate(var(--dx), var(--dy)) scale(0.3); opacity: 0; filter: blur(2px); }
}
