/* GLOBAL INNER PAGE (from your style) */
body.inner-page {
  margin: 0;
  background: radial-gradient(circle at top, #1a0a0a, #000);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

/* HERO: Professional Bollywood vibe */
.events-hero {
  height: 70vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay for professionalism */
  filter: brightness(0.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 50%, rgba(0,0,0,0.7) 100%);
}

.events-hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  color: #ffae00;
  letter-spacing: 4px;
  z-index: 1;
  margin: 0;
}

.events-hero p {
  font-size: 1.2rem;
  opacity: 0.8;
  z-index: 1;
  margin-top: 1rem;
}

/* TIMELINE: Clean, professional vertical layout */
.events-timeline {
  padding: 100px 10%;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #ffae00, transparent);
  transform: translateX(-50%);
  opacity: 0.3;
}

/* EVENT CARD: Professional with cartoon integration */
.event-card {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,174,0,0.2);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 60px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255,174,0,0.2);
}

.event-character {
  width: 150px;
  height: auto;
  margin-right: 40px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-card:hover .event-character {
  transform: scale(1.1) rotate(5deg); /* Fun interactive bounce */
}

.event-date {
  font-size: 1rem;
  color: #ffae00;
  letter-spacing: 2px;
  opacity: 0.8;
}

.event-card h2 {
  font-size: 2rem;
  color: #fff;
  margin: 10px 0;
}

.event-card p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
}

.event-details {
  display: none; /* Shown in modal */
}

/* FINALE: Extra interactive confetti */
.finale {
  border-color: #ffae00;
  background: linear-gradient(135deg, rgba(255,174,0,0.1), transparent);
}

.confetti-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.finale:hover .confetti-canvas {
  opacity: 1;
}

/* MODAL: Professional popup */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #1a0a0a;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(255,174,0,0.3);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: #ffae00;
}

#modal-title {
  color: #ffae00;
  font-size: 2.5rem;
}

#modal-desc {
  font-size: 1.2rem;
}

#modal-details {
  margin-top: 20px;
  font-size: 1.1rem;
  color: #d4af37;
}

/* MOBILE: Responsive */
@media (max-width: 768px) {
  .event-card {
    flex-direction: column;
    text-align: center;
  }
  .event-character {
    margin: 0 0 20px 0;
    width: 120px;
  }
  .timeline-line {
    left: 20px;
  }
}/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: -10px;
    width: 100%;
    height: 90px;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: transparent;
    pointer-events: auto;
}
.nav-right{
    display: flex;
    align-items: center;
    gap: 0px; 
    right: -40px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 90px;
    height: auto;
}

.nav-title {
    color: #ffffff;
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    position: relative;
    opacity: 0.9;
}

/* underline hover effect */
.nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #c04406;
    transition: 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;    padding: 8px;}

.hamburger span {
    width: 30px;
    height: 4px;
    background: #c04406;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80%;
        left: 0;
        width: 100%;
        height: auto;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        color: #c04406;
        font-size: 1.5rem;
    }

    .hamburger {
        display: flex;
        margin-right: 60px;
    }

    .navbar {
        padding: 14px 24px;
        height: 70px;
        background: #000000;
        
    }

    .nav-logo {
        width: 70px;
    }
}
/* FOOTER */
.footer {
    position: relative;
    width: 80%;
    background: linear-gradient(120deg, #2a0000, #000);
    color: #fff;
    padding: 80px 10% 30px;
    z-index: 20;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.footer-logo {
    width: 90px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px rgba(255, 180, 80, 0.5));
}

.footer-left h3 {
    font-size: 1.4rem;
    margin: 0;
    letter-spacing: 2px;
}

.footer-left p {
    opacity: 0.8;
    margin-top: 6px;
}

.footer h4 {
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #ffcc70;
}

.footer-center a {
    display: block;
    text-decoration: none;
    color: #fff;
    opacity: 0.8;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-center a:hover {
    opacity: 1;
    color: #ffcc70;
    transform: translateX(5px);
}

.footer-right p {
    opacity: 0.85;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.75;
}

.footer-bottom span {
    color: #ffcc70;
    font-weight: 600;
}

/* MOBILE FOOTER */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 15px;
    }

    .footer-center a:hover {
        transform: none;
    }
}