

/* ---------------------------------------------
   HEADER (Glass Navbar)
----------------------------------------------*/
header{
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  padding: 12px 0;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  z-index: 999;
}

.nav-container{
  max-width: 1150px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 30px;
  font-weight: 900;
  background: linear-gradient(90deg,#ff6a00,#ff9440);
  -webkit-background-clip: text;
  color: transparent;
}
/* LOGO */
.logo-box{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* FIXED LOGO SIZE – will NEVER stretch */
.logo-img{
  width: 100px;      /* MAIN FIX */
  height: 100px;     /* MAIN FIX */
  object-fit: contain; 
  display: block;
}

/* LOGO TEXT */
.logo-text{
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(90deg,#ff6a00,#ff9440);
  -webkit-background-clip: text;
  color: transparent;
}

/* NAV */
.nav a{
  margin-left: 20px;
  font-weight: 700;
  color: #ff6a00;
  text-decoration: none;
}

/* Buttons */
.btn-nav{
  border: 2px solid #ff6a00;
  padding: 8px 14px;
  border-radius: 6px;
}

.btn-nav:hover{
  background: #ff6a00;
  color: white;
}

/* MOBILE */
@media(max-width: 768px){
  .nav{
    display: none;
  }
  .logo-img{
    width: 45px;
    height: 45px;
  }
}
/* ----------------------------------------------------
   MOBILE MENU BUTTON
---------------------------------------------------- */
.menu-icon {
  display: none;
  font-size: 32px;
  color: #ff6a00;
  cursor: pointer;
  font-weight: 900;
}

/* ----------------------------------------------------
   MOBILE NAVIGATION
---------------------------------------------------- */
@media(max-width: 850px) {

  .menu-icon {
    display: block;
  }

  .nav {
    position: fixed;
    top: 80px;
    right: -260px;
    width: 240px;
    height: 100vh;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    padding: 25px;
    gap: 18px;
    box-shadow: -4px 0 18px rgba(0,0,0,0.12);
    border-left: 3px solid #ff6a00;
    transition: 0.35s ease;
    z-index: 999999;
  }

  /* When menu is opened */
  .nav.show {
    right: 0;
  }

  /* Mobile nav links */
  .nav a {
    margin: 0;
    padding: 10px 0;
    text-align: left;
    color: #ff6a00;
    font-size: 18px;
    font-weight: 700;
  }

  .btn-nav {
    margin-top: 12px;
    text-align: center;
  }

  /* Hide desktop nav */
  .nav-container nav {
    display: none;
  }

  /* Show our custom nav */
  #mobileMenu {
    display: flex;
  }
}

/* ----------------------------------------------------
   EVENT HERO (Premium)
---------------------------------------------------- */
.event-hero {
  width: 100%;
  padding: 160px 20px 90px;
  text-align: center;
  color: #0d0d0d;
  background: linear-gradient(135deg, #fff3e7 0%, #ffe0c7 100%);
  border-bottom-left-radius: 70px;
  border-bottom-right-radius: 70px;
  position: relative;
  overflow: hidden;
}

/* Glow background */
.event-hero::before {
  content: "";
  position: absolute;
  right: -15%;
  top: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255,115,0,0.25), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

/* Wave bottom */
.event-hero::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 130px;
  background: url('wave.svg') no-repeat bottom center/cover;
  opacity: 0.22;
}

.event-hero-inner {
  position: relative;
  z-index: 3;
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

.event-hero h1 {
  font-size: 42px;
  font-weight: 900;
  color: #ff6a00;
  margin-bottom: 12px;
}

.event-hero p {
  font-size: 18px;
  max-width: 650px;
  margin: auto;
  line-height: 1.6;
  color: #444;
}

/* Animation */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}


/* Responsive */
@media(max-width: 768px) {
  .event-hero h1 {
    font-size: 32px;
  }
  .event-hero p {
    font-size: 16px;
  }
}


/* ----------------------------------------------------
   EVENT IMAGE SLIDER (Premium Subhavasali Style)
---------------------------------------------------- */

.event-slider {
  margin: 60px auto;
  max-width: 900px;
  position: relative;
  padding: 20px;
  border-radius: 20px;
  background: #fff7f0;
  box-shadow: 0 12px 35px rgba(255, 120, 0, 0.18);
}

/* SLIDES WRAPPER */
.slider-container {
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

/* SINGLE SLIDE */
.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* IMAGE STYLE */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* NAV BUTTONS */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid #ff6a00;
  color: #ff6a00;
  font-size: 26px;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: #ff6a00;
  color: white;
  box-shadow: 0 8px 20px rgba(255, 120, 0, 0.32);
}

.prev { left: -15px; }
.next { right: -15px; }

/* DOTS */
.slider-dots {
  margin-top: 18px;
  text-align: center;
}

.slider-dots span {
  height: 12px;
  width: 12px;
  display: inline-block;
  background: #ffc9a3;
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}

.slider-dots .active-dot {
  background: #ff6a00;
  transform: scale(1.3);
}

/* MOBILE RESPONSIVE */
@media(max-width: 768px) {
  .slider-container {
    height: 300px;
  }
  .prev { left: -5px; }
  .next { right: -5px; }
}

/* ----------------------------------------------------
   EVENT INFO SECTION — PREMIUM SUBHAVAISHALI DESIGN
---------------------------------------------------- */
.event-info-section {
  max-width: 900px;
  margin: 60px auto 80px;
  padding: 0 20px;
  background: #ffffff;
  border-radius: 22px;
  padding: 35px 28px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  border-left: 6px solid #ff6a00;
  animation: fadeUp 0.9s ease;
}

/* Title */
.event-info-section h2 {
  font-size: 30px;
  font-weight: 900;
  color: #ff6a00;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

/* Subtitles (Date, Location, Highlights) */
.event-info-section h3 {
  margin-top: 26px;
  font-size: 22px;
  font-weight: 800;
  color: #ff7a1a;
}

/* Paragraphs */
.event-info-section p {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 10px;
}

/* Highlight list */
.event-info-section ul {
  margin-top: 10px;
  padding-left: 20px;
}

.event-info-section ul li {
  font-size: 16px;
  margin-bottom: 8px;
  color: #444;
  position: relative;
}

/* Bullet icon */
.event-info-section ul li::before {
  content: "✔";
  position: absolute;
  left: -22px;
  color: #ff6a00;
  font-size: 16px;
  font-weight: bold;
}

/* Smooth Fade Animation */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* REVEAL ON SCROLL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media(max-width: 650px){
  .event-info-section {
    padding: 25px 18px;
  }
  .event-info-section h2 {
    font-size: 26px;
  }
}
/* ----------------------------------------------------
   CONTACT SECTION (Premium)
---------------------------------------------------- */
.contact-section{
  padding:80px 24px;
  background:linear-gradient(135deg,#fff4eb,#ffe1cc);
  border-top-left-radius:60px;
  border-top-right-radius:60px;
  position:relative;
  overflow:hidden;
}

/* wave */
.contact-section::before{
  content:"";
  position:absolute;
  top:-40px;
  left:0;
  width:100%;
  height:120px;
  background:url('wave.svg') no-repeat top center/cover;
  opacity:0.25;
}

.contact-section h2{
  text-align:center;
  font-size:38px;
  color:#ff6a00;
  font-weight:900;
  margin-bottom:40px;
}

.contact-box{
  max-width:1000px;
  margin:auto;
  display:flex;
  gap:40px;
  padding:30px;
  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(10px);
  border-radius:22px;
  box-shadow:0 15px 30px rgba(255,120,0,0.20);
  border:1px solid rgba(255,120,0,0.20);
}

.contact-info{
  flex:1;
  padding:10px;
}

.contact-info h3{
  font-size:24px;
  font-weight:800;
  color:#ff6a00;
  margin-bottom:15px;
}

.contact-info p{
  font-size:16px;
  margin-bottom:10px;
  color:#333;
}


/* Form */
.contact-form{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:15px;
}

.contact-form input,
.contact-form textarea{
  padding:14px;
  border-radius:10px;
  border:1px solid #ffb98a;
  font-size:16px;
  background:white;
  box-shadow:0 5px 14px rgba(255,120,0,0.15);
}

.contact-form textarea{
  height:150px;
}

.contact-form button{
  background:linear-gradient(90deg,#ff6a00,#ff9440);
  color:white;
  padding:12px;
  border-radius:10px;
  border:none;
  font-size:17px;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
}

.contact-form button:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(255,106,0,0.35);
}

/* Mobile */
@media(max-width:850px){
  .contact-box{
    flex-direction:column;
    text-align:center;
  }
}
/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
.footer{
  background:#ff6a00;
  color:white;
  padding:50px 20px 20px;
  margin-top:60px;
  border-top-left-radius:50px;
  border-top-right-radius:50px;
}

.footer-container{
  max-width:1100px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:40px;
}

.footer h3,
.footer h4{
  font-weight:800;
  margin-bottom:12px;
}

.footer-about{
  flex:1;
}

.footer-about p{
  max-width:300px;
  line-height:1.6;
}

.footer-links{
  display:flex;
  flex-direction:column;
}

.footer-links a{
  text-decoration:none;
  color:white;
  margin-bottom:6px;
  transition:0.3s;
  font-weight:600;
}

.footer-links a:hover{
  opacity:0.75;
}

.footer-contact p{
  margin-bottom:6px;
}

.footer-bottom{
  text-align:center;
  margin-top:25px;
  font-size:14px;
  opacity:0.85;
}

/* Mobile */
@media(max-width:850px){
  .footer-container{
    flex-direction:column;
    text-align:center;
  }

  .footer-about p{
    margin:auto;
  }
}
