* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Montserrat', sans-serif;
    }

    body {
      background: #000;
      color: #fff;
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }
    /* Fullscreen overlay */
#overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top, #1a1a1a, #000);
  color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  overflow: hidden;
}

/* Subtle animated background glow */
#overlay::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,215,0,0.25), transparent 70%);
  filter: blur(80px);
  animation: floatGlow 6s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  from {
    transform: translate(-80px, -60px);
  }
  to {
    transform: translate(80px, 60px);
  }
}

/* Main heading */
#overlay h1 {
  font-size: 3rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #f5c16c, #fff, #f5c16c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s infinite linear;
  z-index: 1;
}

@keyframes shimmer {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

/* Countdown container */
#overlay-countdown {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}

/* Countdown blocks */
#overlay-countdown span {
  display: flex;
  flex-direction: column;
  min-width: 90px;
  padding: 18px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
  font-size: 2.2rem;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
#overlay-countdown span:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.35);
}

/* Labels under numbers */
#overlay-countdown span::after {
  content: attr(data-label);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-top: 6px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 600px) {
  #overlay h1 {
    font-size: 2.2rem;
  }

  #overlay-countdown span {
    min-width: 70px;
    font-size: 1.8rem;
    padding: 14px;
  }
}


.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(106, 4, 15, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  z-index: 1000;
  border-bottom: 1px solid #222;
}

.nav-logo {
  color: #d3d3d3;
  font-weight: 800;
  letter-spacing: 2px;
  font-family:"ZenDots";
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;  
}

.nav-links a {
  color: #e0e0e0;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: 0.3s;
  font-family: "Montserrat";
}

.nav-links a:hover {
  color: #ae2012;
}
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    align-items: center;
    display: none;
    border-top: 1px solid #222;
  }

  .nav-links li {
    padding: 15px 0;
  }

  .nav-links.show {
    display: flex;
  }
}

html {
  scroll-behavior: smooth;
}
.proshow-wrapper {
  margin: 10px auto;
  padding: 0 6%;
  max-width: 1200px;
  text-align: center;
}

/* Heading */
.proshow-heading {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 35px;
  letter-spacing: 1px;
}

.proshow-image {
  width: 100%;
  height: 75vh;
  background: url("./assets/images/proshow.jpeg") center/contain no-repeat;
  background-color: #000;
  border-radius: 18px;
  transform: scale(1.05);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}



/* Subtle hover lift */
.proshow-image:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.45);
}

/* Button */
.proshow-btn {
  display: inline-block;
  margin-top: 35px;
  padding: 14px 46px;
  background: #000;
  color: #fff;
  font-weight: 600;
  border:2px solid #9d0208;
  
  border-radius: 30px;
  border-width: 2px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.proshow-btn:hover {
  background: #9d0208;
  transform: scale(1.05);
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .proshow-wrapper {
    margin: 100px auto;
  }

  .proshow-heading {
    font-size: 2rem;
  }

  .proshow-image {
    height: 45vh;
  }

  .proshow-btn {
    padding: 12px 34px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    gap: 15px;
    font-size: 0.8rem;
  }
}
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 90px 20px 40px;
      background: url('./assets/images/bg2.jpg') center/cover no-repeat;
      background-size: cover;
      background-attachment: scroll;
    }

    model-viewer {
      max-width: 400px;
      width: 100%;
      height: 400px;
    } 

    model-viewer::part(default-progress-bar) {
    display: none;
  }

    .hero small {
      letter-spacing: 2px;
      opacity: 0.8;
    }

    .hero h1 {
      font-size: 5.5rem;
      font-weight: 800;
      letter-spacing: 3px;
      font-family: "ZenDots";
      text-shadow: 0 0 10px #9d0208;
      margin-bottom: 10px;
    }

    .hero h2 {
      color: #000;
      font-size: 2rem;
      margin-top: 15px; 
      font-family: "Orbitron";
    }

    .hero p {
      font-size: 1.5rem;
      margin-top: 10px;
    }

    .countdown {
      display: flex;
      gap: 15px;
      justify-content: center;
      margin-top: 30px;
    }

    .time-box {
      background: rgba(106, 4, 15, 0.35); /* wine red glass */
      border: 1px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border-radius: 14px;
      padding: 18px 16px;
      min-width: 90px;
      text-align: center;
      box-shadow: 0 0 20px rgba(106, 4, 15, 0.4);
    }

    .time-box span {
      font-size: 2.4rem;
      font-weight: 800;
      color: #f2c9c9; /* moonlight rose */
      text-shadow: 0 0 12px rgba(255, 180, 180, 0.5);
      display: block;
    }

    .time-box p {
      font-size: 0.7rem;
      letter-spacing: 2px;
      color: #e0e0e0;
      margin-top: 5px;
    }

    .section {
      padding: 80px 20px;
      text-align: center;
    }

    .section h2 {
      font-size: 2.5rem;
      margin-bottom: 40px;
    }

    .associations {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      max-width: 900px;
      margin: auto;
    }

    .card {
      border: 1px solid #ae2012;
      padding: 40px 20px;
      transition: 0.3s;
      cursor: pointer;
    }

    .card:hover {
      background: #ae2012;
      color: #000;
      transform: translateY(-5px);
    }

    .card h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
    }

    /* GALLERY */
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 18px;
      max-width: 1100px;
      margin: 40px auto 0;
    }

    .gallery img {
      width: 100%;
      aspect-ratio: 4 / 3;   /* consistent proportions */
      object-fit: cover;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.15);
      box-shadow: 0 0 15px rgba(106, 4, 15, 0.3);
    }


    
.footer-spacer {
  height: 120px;
}

/* FOOTER */
.prayaag-footer {
  background: rgba(106, 4, 15, 0.2);   /* same as navbar */
  backdrop-filter: blur(10px);        /* glass effect */
  -webkit-backdrop-filter: blur(10px);

  color: #fff;
  padding: 70px 0 30px;

  border-top: 1px solid rgba(255,255,255,0.12);
}

/* CONTAINER */
.footer-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT */
.footer-left h2 {
   font-family: "ZenDots";
  font-size: 2.1rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.footer-left p {
  font-size: 0.95rem;
  opacity: 0.75;
  margin-bottom: 6px;
}

.footer-left span {
  color: #ff2a2a;
  font-weight: 600;
  font-size: 0.9rem;
}

/* TITLES */
.footer-middle h4,
.footer-right h4 {
  color: #ff2a2a;
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: 1px;
}

/* LINKS */
.footer-middle a,
.footer-right a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 8px;
  opacity: 0.75;
}

.footer-middle a:hover,
.footer-right a:hover {
  color: #ff2a2a;
  opacity: 1;
}

/* SOCIALS */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
}

.footer-socials a {
  font-size: 1.3rem;
  color: #fff;
  opacity: 0.85;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #ff2a2a;
  transform: translateY(-2px);
}

/* BOTTOM */
.footer-bottom {
  margin-top: 50px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-bottom span {
  color: #ff2a2a;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}


   
    @font-face {
        font-family: "JuliusSansOne";
        src: url("./assets/webfonts/JuliusSansOne.ttf") format("truetype");
        font-weight: normal;
        font-style: normal;
    }

    @font-face {
        font-family: "ZenDots";
        src: url("./assets/webfonts/ZenDots-Regular.ttf") format("truetype");
        font-weight: normal;
        font-style: normal;
    }

    @font-face {
        font-family: "Orbitron";
        src: url("./assets/webfonts/Orbitron-VariableFont_wght.ttf") format("truetype");
        font-weight: normal;
        font-style: normal;
    }
 
    @font-face {
        font-family: "Corben";
        src: url("./assets/webfonts/Corben-Bold.ttf") format("truetype");
        font-weight: normal;
        font-style: normal;
    }

@keyframes softFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  animation: softFade 1.2s ease-out forwards;
}


/* Scroll Reveal Base */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {

  .navbar {
    padding: 12px 20px;
  }

  .nav-logo {
    font-size: 1rem;
  }

  .hero {
    padding-top: 120px;
    background-position: center;
  }

  .hero h1 {
    font-size: 2.8rem;
    letter-spacing: 1px;
  }

  .hero h2 {
    font-size: 1.3rem;
  }

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

  model-viewer {
    height: 260px;
    max-width: 260px;
  }

  .countdown {
    flex-wrap: wrap;
    gap: 10px;
  }

  .time-box {
    min-width: 70px;
    padding: 12px 10px;
  }

  .time-box span {
    font-size: 1.6rem;
  }

  .section {
    padding: 60px 15px;
  }

  .section h2 {
    font-size: 1.8rem;
  }

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

  .card {
    padding: 25px 15px;
  }

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

  .footer-left h2 {
    font-size: 1.6rem;
  }

  .footer-middle h4,
  .footer-right h4 {
    font-size: 0.9rem;
  }
}
