/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: black;
  overflow-x: hidden; /* allow vertical scroll, block horizontal */
}


.hero {
  height: 100vh;
  width: 100%;
  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.45) 40%,
      rgba(0, 0, 0, 0.75) 100%
    ),
    url("background.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 1;
}



/* CENTER CONTENT */
.content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
}

/* TITLE */
.content h1 {
  font-family: 'Cinzel', serif;
  font-size: 4.8rem;
  margin-bottom: 20px;
}

/* TAGLINE */
.tagline {
  font-size: 1.6rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* SHLOK */
.shlok {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: orange;
  letter-spacing: 1.5px;
}

/* ===== ANIMATIONS ===== */

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}



.animate-title {
  animation: fadeDown 1.4s ease forwards;
}

.animate-tagline {
  animation: fadeUp 1.6s ease forwards;
}

.animate-shlok {
  animation: fadeUp 2s ease forwards;
}
/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.scroll-indicator span {
  display: block;
  width: 26px;
  height: 42px;
  border: 2px solid white;
  border-radius: 20px;
  position: relative;
}

.scroll-indicator span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: orange;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.5s infinite;
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}
/* ABOUT SECTION */
.about {
  min-height: 100vh;
  background: linear-gradient(
    to bottom,
    #f1dfc4 0%,
    #e2b979 50%,
    #f1dfc4 100%
  );
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 120px 10%;
  align-items: center;
}



.about h2 {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  margin-bottom: 20px;
  color: #2b2b2b;
}

.about p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 24px;
  line-height: 1.8;
}

.about .shlok {
  font-size: 1.4rem;
  color: orange;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* SCROLL ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.2s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
/* IMPORTANCE SECTION */
.importance {
  position: relative;
  min-height: 100vh;
  background-image:
    linear-gradient(
      to bottom,
      rgba(20, 10, 0, 0.85),
      rgba(20, 10, 0, 0.65)
    ),
    url("background2.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 10%;
}


.importance-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  color: #f5f5f5;
}

.importance h2 {
  font-family: 'Cinzel', serif;
  font-size: 3.2rem;
  margin-bottom: 30px;
}

.importance p {
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 24px;
  opacity: 0.95;
}

.importance .shlok {
  margin-top: 40px;
  font-size: 1.5rem;
  color: orange;
  font-family: 'Cinzel', serif;
}
/* NASHIK IMPORTANCE */
.nashik-importance {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(
      to bottom,
      rgba(10, 6, 0, 0.85),
      rgba(25, 15, 0, 0.75)
    ),
    url("background3.png");
  background-size: cover;
  background-position: center;
  padding: 140px 12%;
  color: #f5f5f5;
}

.nashik-inner {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.nashik-importance h2 {
  font-family: 'Cinzel', serif;
  font-size: 3.4rem;
  margin-bottom: 32px;
}

.nashik-importance p {
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 24px;
}

.nashik-importance .shlok {
  margin-top: 40px;
  font-size: 1.6rem;
  color: orange;
}

/* PATH / TIMELINE */
.kumbha-path {
  background: #0c0804;
  color: #fff;
  padding: 120px 10%;
  text-align: center;
}

.kumbha-path h2 {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
}

.path {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
}

.path::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(orange, #c79b3b);
  transform: translateX(-50%);
}

.node {
  width: 50%;
  padding: 22px 26px;
  background: #1a1208;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.node:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.node:nth-child(odd) {
  align-self: flex-start;
}

.node:nth-child(even) {
  align-self: flex-end;
}

.node .date {
  display: block;
  font-size: 0.95rem;
  color: #d9b25f;
  margin-bottom: 6px;
}

.node .name {
  font-size: 1.1rem;
  color: #fff;
}

/* MODAL */
.event-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.event-card {
  background: #1a1208;
  padding: 40px;
  max-width: 460px;
  border-radius: 16px;
  color: #fff;
  text-align: center;
}

.event-card .event-date {
  color: orange;
  margin: 10px 0 18px;
}

.event-card button {
  margin-top: 24px;
  padding: 10px 20px;
  background: orange;
  border: none;
  cursor: pointer;
}
/* RITUALS SECTION */
.rituals {
  background: linear-gradient(
    to bottom,
    #0b1020,
    #1a1f3a
  );
  color: #f5f5f5;
  padding: 120px 10%;
}

.rituals-inner {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.rituals h2 {
  font-family: 'Cinzel', serif;
  font-size: 3.2rem;
  margin-bottom: 24px;
}

.rituals .intro {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.rituals .shlok {
  font-size: 1.5rem;
  color: orange;
  margin-top: 20px;
}

/* GRID */
.ritual-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.ritual-card {
  background: #22170c;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ritual-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.ritual-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ritual-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  margin: 20px;
}

.ritual-card p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 20px 24px;
}

/* PREPARATION */
.preparation {
  max-width: 900px;
  margin: 100px auto 0;
  background: linear-gradient(
    to bottom,
    #2a1a0f,
    #a8580e
  );
  padding: 50px;
  border-radius: 20px;
}


.preparation h3 {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.preparation ul {
  list-style: none;
  padding: 0;
}

.preparation li {
  margin-bottom: 14px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.prep-shlok {
  margin-top: 30px;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: orange;
  letter-spacing: 1px;
}
/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 6, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: white;
}

.header-logo span {
  color: orange;
}

.nav-links a {
  margin-left: 22px;
  text-decoration: none;
  font-size: 0.95rem;
  color: #f0f0f0;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: orange;
}
/* FOOTER */
.site-footer {
  background: #0b0703;
  color: #eaeaea;
  padding: 80px 10% 60px;
  text-align: center;
}

.footer-shlok {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: orange;
  margin-bottom: 40px;
}

.footer-dev {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-dev img {
  width: 34px;
  height: auto;
}

.footer-contact a {
  color: #f0c36d;
  text-decoration: none;
}

.footer-note {
  max-width: 700px;
  margin: 30px auto 0;
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.6;
}
