/* =========================
   RESET + GLOBAL
========================= */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Telugu:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  background: #160804;
}

body {
  font-family: 'Noto Serif Telugu', serif;

  min-height: 100vh;

  overflow-x: hidden;

  background:
    linear-gradient(rgba(43, 18, 8, 0.70),
      rgba(43, 18, 8, 0.70)),
    url("images/homebg.jpg");

  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;

  color: #fff;
}

/* =========================
   LOADER
========================= */

#loader {
  position: fixed;
  inset: 0;

  background: rgba(10, 5, 0, 0.96);

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 999999;

  transition: opacity 0.7s ease;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 140px;
  height: 140px;

  object-fit: contain;

  animation: pulse 1.3s infinite ease-in-out;

  filter:
    drop-shadow(0 0 20px rgba(255, 209, 102, 0.8));
}

.loader-content h1 {
  color: #ffd166;

  font-size: 48px;

  margin-top: 18px;
}

.loader-line {
  width: 220px;
  height: 5px;

  margin: 24px auto;

  border-radius: 20px;

  background:
    linear-gradient(to right,
      #ffd166,
      #ffb703,
      #ffd166);

  animation: loading 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes loading {
  0% {
    transform: scaleX(0.3);
    opacity: 0.4;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }

  100% {
    transform: scaleX(0.3);
    opacity: 0.4;
  }
}

/* =========================
   NAVBAR
========================= */

.glass-navbar {
  position: sticky;
  top: 15px;

  z-index: 1000;

  width: 82%;

  margin: 15px auto 0;

  padding: 12px 18px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;

  border-radius: 50px;

  background: rgba(171, 166, 156, 0.16);

  border: 1px solid rgba(255, 209, 102, 0.4);

  backdrop-filter: blur(12px);

  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.28);
}

.glass-navbar a {
  text-decoration: none;

  color: #ffd166;

  font-size: 17px;
  font-weight: bold;

  padding: 10px 18px;

  border-radius: 40px;

  transition: 0.3s;
}

.glass-navbar a:hover {
  background: rgba(255, 209, 102, 0.2);

  color: white;

  transform: translateY(-2px);
}

/* =========================
   HOME PAGE
========================= */

.home-page {
  min-height: 100vh;

  padding: 40px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-brand {
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  gap: 28px;

  margin-bottom: 55px;

  padding: 25px;
}

.logo-image {
  width: 200px;
  height: 200px;

  border-radius: 50%;

  object-fit: cover;

  border: 4px solid #ffd166;

  box-shadow:
    0 0 20px rgba(255, 183, 3, 0.6),
    0 0 40px rgba(255, 183, 3, 0.3);
}

.brand-text h1 {
  font-size: 100px;

  color: #ffd166;

  text-shadow:
    0 0 10px rgba(255, 209, 102, 0.5),
    0 0 25px rgba(255, 209, 102, 0.3);
}

.brand-text p {
  font-size: 24px;

  color: white;

  margin-top: 8px;
}

/* =========================
   INTRO BOX
========================= */

.intro-box {
  max-width: 1000px;

  background: rgba(15, 15, 15, 0.35);

  padding: 45px;

  border-radius: 30px;

  text-align: center;

  margin-bottom: 40px;

  border: 1px solid rgba(255, 209, 102, 0.35);

  backdrop-filter: blur(12px);

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.35);
}

.intro-box h2 {
  color: #ffd166;

  font-size: 42px;

  margin-bottom: 25px;
}

.intro-box p {
  color: rgba(255, 255, 255, 0.92);

  font-size: 20px;

  line-height: 2;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  width: 100%;
  max-width: 900px;

  margin: 60px auto;

  padding: 40px;

  background: rgba(15, 10, 5, 0.35);

  border-radius: 30px;

  border: 1px solid rgba(255, 209, 102, 0.4);

  backdrop-filter: blur(12px);

  text-align: center;
}

.contact-section h2 {
  color: #ffd166;

  font-size: 42px;

  margin-bottom: 35px;
}

.contact-container {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 22px;
}

.contact-box {
  display: flex;
  align-items: center;

  gap: 18px;

  padding: 18px 22px;

  border-radius: 22px;

  text-decoration: none;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 209, 102, 0.25);

  backdrop-filter: blur(10px);

  transition: 0.3s ease;
}

.contact-box img {
  width: 38px;
  height: 38px;
}

.contact-box span {
  color: #ffd166;

  font-size: 20px;
  font-weight: bold;
}

.contact-box:hover {
  transform: translateY(-5px);

  background: rgba(255, 209, 102, 0.12);
}

/* =========================
   EVENTS PAGE
========================= */
.events-page {
  min-height: 100vh;

  background: transparent;

  width: 100%;

  padding: 130px 20px 70px;
}

.events-page h1 {
  text-align: center;

  color: #ffd166;

  font-size: 54px;

  margin-bottom: 20px;
}

.events-list {
  max-width: 1100px;

  margin: auto;

  display: flex;
  flex-direction: column;

  gap: 35px;
}

.event-box {
  display: grid;

  grid-template-columns: 1.1fr 1fr;

  gap: 35px;

  padding: 28px;

  border-radius: 30px;

  background: rgba(15, 10, 5, 0.42);

  border: 1px solid rgba(255, 209, 102, 0.4);

  backdrop-filter: blur(10px);
}

.event-text h2 {
  color: #ffd166;

  font-size: 32px;

  margin-bottom: 15px;
}

.event-text p {
  color: white;

  font-size: 19px;

  line-height: 1.9;
}

.event-gallery {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 14px;
}

.event-gallery img {
  width: 100%;

  height: 180px;

  object-fit: contain;

  background: rgba(0, 0, 0, 0.35);

  border-radius: 18px;

  cursor: pointer;

  transition: 0.3s;
}

.event-gallery img:hover {
  transform: scale(1.03);
}

/* =========================
   IMAGE POPUP
========================= */

.image-modal {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.92);

  display: none;

  justify-content: center;
  align-items: center;

  z-index: 999999;
}

.image-modal img {
  max-width: 90%;
  max-height: 90%;

  border-radius: 20px;
}

.close-btn {
  position: absolute;

  top: 30px;
  right: 40px;

  color: white;

  font-size: 45px;

  cursor: pointer;
}

.modal-arrow {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 55px;
  height: 55px;

  border-radius: 50%;

  border: 1px solid rgba(255, 209, 102, 0.5);

  background: rgba(255, 209, 102, 0.15);

  color: white;

  font-size: 45px;

  cursor: pointer;
}

.left-arrow {
  left: 35px;
}

.right-arrow {
  right: 35px;
}

/* =========================
   FOOTER
========================= */

.simple-footer {
  margin-top: 70px;

  padding: 35px 20px;

  text-align: center;

  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 209, 102, 0.25);
}

.footer-links {
  display: flex;

  justify-content: center;

  gap: 28px;

  margin-bottom: 18px;

  flex-wrap: wrap;
}

.footer-links a {
  color: #ffd166;

  text-decoration: none;
}

.simple-footer p {
  color: rgba(255, 255, 255, 0.75);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 700px) {

  body:not(.events-body) {
    background:
      linear-gradient(rgba(10, 5, 0, 0.45),
        rgba(10, 5, 0, 0.45)),
      url("images/homebg-mobile.jpg");

    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: scroll;

    background-color: #160804;
  }

  .glass-navbar {

    width: 94%;

    margin: 12px auto 0;

    padding: 12px 18px;

    display: flex;

    align-items: center;

    justify-content: flex-start;

    gap: 18px;

    overflow-x: auto;

    overflow-y: hidden;

    white-space: nowrap;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;

    border-radius: 26px;
  }

  .glass-navbar::-webkit-scrollbar {
    display: none;
  }

  .glass-navbar a {

    flex: 0 0 auto;

    white-space: nowrap;

    font-size: 15px;

    padding: 8px 10px;
  }


  .glass-navbar::before {
    content: "";
    flex: 0 0 50px;
  }


  .top-brand {
    flex-direction: column;

    text-align: center;
  }

  .logo-image {
    width: 150px;
    height: 150px;
  }

  .brand-text h1 {
    font-size: 48px;
  }

  .brand-text p {
    font-size: 18px;
  }

  .intro-box,
  .contact-section,
  .about-card {
    width: 92%;
    max-width: 92%;

    margin-left: auto;
    margin-right: auto;
  }

  .intro-box {
    padding: 28px;
  }

  .intro-box h2 {
    font-size: 30px;
  }

  .intro-box p {
    font-size: 17px;
  }

  .category-grid {
    width: 100%;

    grid-template-columns: 1fr;

    justify-items: center;

    gap: 35px;
  }

  .category-card {
    width: 92%;
    max-width: 320px;

    height: 320px;
  }

  .category-title {
    text-align: center;

    font-size: 24px;
  }

  .about-card {
    min-height: 240px;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-content p {
    font-size: 17px;

    line-height: 1.8;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 24px 14px;
  }

  .contact-box {
    width: 100%;
  }

  .contact-box span {
    font-size: 18px;

    word-break: break-word;
  }

  .whatsapp-channel-box {
    width: 100%;

    grid-column: span 1;

    flex-direction: column;

    text-align: center;

    gap: 20px;
  }

  .event-box {
    grid-template-columns: 1fr;

    padding: 22px;
  }

  .event-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .event-gallery img {
    height: 170px;
  }

  .events-page h1 {
    font-size: 38px;
  }

  .loader-logo {
    width: 110px;
    height: 110px;
  }

  .loader-content h1 {
    font-size: 34px;
  }

  .modal-arrow {
    width: 42px;
    height: 42px;

    font-size: 34px;
  }

  .left-arrow {
    left: 12px;
  }

  .right-arrow {
    right: 12px;
  }

  @media (max-width: 700px) {
    .glass-navbar {
      width: calc(100% - 24px) !important;
      margin: 12px 12px 0 12px !important;
      padding: 12px 18px 12px 14px !important;

      display: flex !important;
      justify-content: flex-start !important;
      align-items: center !important;
      gap: 18px !important;

      overflow-x: auto !important;
      overflow-y: hidden !important;
      white-space: nowrap !important;

      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
      border-radius: 26px;
    }

    .glass-navbar::-webkit-scrollbar {
      display: none;
    }

    .glass-navbar a {
      flex: 0 0 auto !important;
      white-space: nowrap !important;
      font-size: 15px;
      padding: 8px 10px;
    }
  }

  .glass-navbar::before {
    content: "";

    min-width: 35px;
  }

  .glass-navbar::after {
    content: "";

    min-width: 12px;
  }



}

.event-box,
.contact-box,
.intro-box {
  backdrop-filter: none;
}


/* FIX CATEGORY CARDS */

.category-grid {
  width: 100%;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 45px;

  max-width: 1200px;

  margin: 0 auto;

  justify-items: center;
}

/* HALF SCREEN / SMALL LAPTOP */

@media (max-width: 1100px) {

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* MOBILE */

@media (max-width: 700px) {

  .category-grid {
    grid-template-columns: 1fr;

    gap: 28px;
  }

}

.category-card {
  width: 100%;

  max-width: 300px;

  height: 300px;

  margin: 0 auto;

  position: relative;

  overflow: hidden;

  border-radius: 28px;

  text-decoration: none;

  background: rgba(20, 12, 5, 0.25);
}

.category-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.45s ease;
}

.category-card::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(to top,
      rgba(0, 0, 0, 0.88),
      rgba(0, 0, 0, 0.15));
}

.category-heading {
  color: #ffd166;

  font-size: 46px;

  text-align: center;

  margin-bottom: 38px;

  text-shadow:
    0 0 12px rgba(255, 209, 102, 0.35);
}

@media (max-width: 700px) {

  .category-heading {
    font-size: 34px;

    margin-bottom: 24px;
  }

}

.category-title {
  position: absolute;

  bottom: 0;
  left: 0;
  right: 0;

  z-index: 5;

  padding: 18px;

  color: #ffd166;

  font-size: 27px;
  font-weight: bold;
  text-align: center;
  background: rgba(15, 10, 5, 0.55);

  border-top: 1px solid rgba(255, 209, 102, 0.45);
}

.category-card:hover {
  transform: translateY(-10px) scale(1.03);
}

.category-card:hover img {
  transform: scale(1.08);
}

/* ABOUT CARD */

.about-card {
  width: 100%;
  max-width: 1000px;
  height: 200px;

  position: relative;
  margin-top: 40px;
  overflow: hidden;

  border-radius: 30px;

  margin-bottom: 50px;

  border: 1.5px solid rgba(255, 209, 102, 0.6);

  transition: 0.4s ease;
}

.about-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.about-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(to right,
      rgba(0, 0, 0, 0.82),
      rgba(0, 0, 0, 0.25));
}

.about-content {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  z-index: 5;

  width: 80%;

  text-align: center;
}

.about-content h2 {
  color: #ffd166;

  font-size: 42px;

  margin-bottom: 12px;
}

.about-content p {
  color: white;

  font-size: 20px;

  line-height: 1.8;
}

/* WHATSAPP CHANNEL */

.whatsapp-channel-box {
  grid-column: span 2;

  display: flex;

  justify-content: space-between;
  align-items: center;

  padding: 28px;

  border-radius: 28px;

  background:
    linear-gradient(135deg,
      rgba(37, 211, 102, 0.18),
      rgba(15, 15, 15, 0.35));

  border: 1px solid rgba(37, 211, 102, 0.35);

  transition: 0.35s ease;
}

.channel-text h3 {
  color: #25D366;

  font-size: 30px;

  margin-bottom: 10px;
}

.channel-text p {
  color: white;

  font-size: 18px;

  line-height: 1.7;

  max-width: 550px;
}

.join-btn {
  padding: 16px 28px;

  border-radius: 18px;

  background: rgba(37, 211, 102, 0.2);

  color: #25D366;

  font-size: 20px;
  font-weight: bold;
}

/* MOBILE */

@media (max-width: 700px) {

  .category-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .category-card {
    width: 100%;
    max-width: 320px;

    margin: auto;
  }

  .whatsapp-channel-box {
    grid-column: span 1;

    flex-direction: column;

    text-align: center;

    gap: 20px;
  }

}

/* REMOVE BLUE UNDERLINES */

.whatsapp-channel-box a,
.whatsapp-channel-box a h3,
.whatsapp-channel-box a p,
.join-btn {
  text-decoration: none !important;
  color: white !important;
}

a {
  text-decoration: none;
}

/* EVENTS BACKGROUND */

body.events-body {
  background: transparent !important;
}

.events-bg {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100vh;

  z-index: -1;

  background:
    linear-gradient(rgba(15, 8, 3, 0.85),
      rgba(15, 8, 3, 0.85)),
    url("images/events-pc.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* MOBILE */

@media (max-width: 700px) {

  .events-bg {

    background:
      linear-gradient(rgba(15, 8, 3, 0.50),
        rgba(15, 8, 3, 0.50)),
      url("images/events-mobile.png");

    background-size: cover;

    background-position: center top;

    background-repeat: no-repeat;
  }

}

body {
  background: transparent !important;
}

.home-bg {
  position: fixed;
  top: 0;
  left: 0;

  width: 100vw;
  height: 100lvh;

  z-index: -999;
  pointer-events: none;

  background:
    linear-gradient(rgba(43, 18, 8, 0.72),
      rgba(43, 18, 8, 0.72)),
    url("images/homebg.jpg");

  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

@media (max-width: 700px) {
  .home-bg {
    height: 100lvh;

    background:
      linear-gradient(rgba(10, 5, 0, 0.45),
        rgba(10, 5, 0, 0.45)),
      url("images/homebg-mobile.jpg");

    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }
}

/* FESTIVALS PAGE */

body.festivals-body {
  background: transparent !important;
}

.festivals-bg {
  position: fixed;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(rgba(15, 8, 3, 0.80), rgba(15, 8, 3, 0.80)),
    url("images/festivals-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.festivals-page {
  min-height: 100vh;
  padding: 130px 25px 70px;
}

.festivals-page h1 {
  text-align: center;
  color: #ffd166;
  font-size: 56px;
  margin-bottom: 10px;
}

.festivals-subtitle {
  text-align: center;
  color: white;
  font-size: 21px;
  margin-bottom: 45px;
}

.festivals-grid {
  max-width: 1300px;
  margin: auto;
  justify-content: center;

  place-items: center;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.festival-card {
  height: 210px;

  position: relative;

  overflow: hidden;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 209, 102, 0.45);

  box-shadow:
    0 0 18px rgba(255, 209, 102, 0.45),
    0 0 38px rgba(255, 183, 3, 0.25),
    0 15px 35px rgba(0, 0, 0, 0.35);

  text-decoration: none;

  transition: 0.35s ease;
}

.festival-card img {
  width: 100%;
  height: 100%;

  object-fit: 80%;

  object-position: center;

  transition: 0.45s ease;
}

.festival-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.15));
}

.festival-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  padding: 14px;
  text-align: center;

  color: #ffd166;
  font-size: 22px;
  font-weight: bold;

  background: rgba(15, 10, 5, 0.58);
}

.festival-card:hover {
  transform: translateY(-8px) scale(1.03);
}

.festival-card:hover img {
  transform: scale(1.1);
}

.footer-quote {
  color: #ffd166;
  font-size: 20px;
  margin-bottom: 18px;
}

@media (max-width: 700px) {
  .festivals-bg {
    background:
      linear-gradient(rgba(15, 8, 3, 0.60), rgba(15, 8, 3, 0.60)),
      url("images/festivals-mobile.jpg");

    background-size: contain;
    background-position: center top;
  }

  .festivals-page h1 {
    font-size: 40px;
  }

  .festivals-subtitle {
    font-size: 17px;
  }

  .festivals-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .festival-card {
    height: 145px;
    border-radius: 18px;
  }

  .festival-name {
    font-size: 16px;
    padding: 9px;
  }
}

.festivals-title-box {
  max-width: 900px;

  margin: 0 auto 50px;

  padding: 35px 25px;

  text-align: center;

  background: rgba(10, 8, 5, 0.62);

  backdrop-filter: blur(14px);

  -webkit-backdrop-filter: blur(14px);

  border-radius: 32px;

  border: 1px solid rgba(255, 209, 102, 0.45);

  box-shadow:
    0 0 25px rgba(255, 209, 102, 0.25),
    0 18px 45px rgba(0, 0, 0, 0.45);
}

.festivals-title-box h1 {
  color: #ffd166;
  font-size: 56px;
  margin-bottom: 10px;
}

.festivals-subtitle {
  color: white;
  font-size: 21px;
}

.festival-card {
  box-shadow:
    0 0 18px rgba(255, 209, 102, 0.45),
    0 0 38px rgba(255, 183, 3, 0.25),
    0 15px 35px rgba(0, 0, 0, 0.35);
}

.festival-name {
  color: #ffd166 !important;
  text-align: center;
  text-shadow: 0 0 12px rgba(255, 209, 102, 0.55);
}

@media (max-width: 700px) {
  .festivals-body .glass-navbar {
    justify-content: center;
  }
}

.festivals-page {
  min-height: 100vh;
}

.festivals-grid {
  margin-bottom: 120px;
}

/* INDIVIDUAL FESTIVAL PAGE */

body.diwali-body {
  background: transparent !important;
}

.diwali-bg {
  position: fixed;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(rgba(15, 8, 3, 0.68), rgba(15, 8, 3, 0.68)),
    url("images/diwali-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.festival-detail-page {
  min-height: 100vh;
  padding: 130px 20px 70px;
}

.festival-detail-box {
  max-width: 950px;
  margin: auto;
  padding: 45px;

  background: rgba(10, 8, 5, 0.62);
  backdrop-filter: blur(14px);

  border-radius: 32px;
  border: 1px solid rgba(255, 209, 102, 0.45);

  box-shadow:
    0 0 25px rgba(255, 209, 102, 0.25),
    0 18px 45px rgba(0, 0, 0, 0.45);
}

.festival-detail-box h1 {
  color: #ffd166;
  font-size: 56px;
  text-align: center;
  margin-bottom: 30px;
}

.festival-detail-box h2 {
  color: #ffd166;
  font-size: 34px;
  margin: 30px 0 15px;
}

.festival-detail-box p {
  color: white;
  font-size: 20px;
  line-height: 2;
  margin-bottom: 22px;
  text-align: justify;
}

.festival-inline-img {
  width: 70%;
  display: block;
  margin: 30px auto;

  border-radius: 24px;
  border: 1px solid rgba(255, 209, 102, 0.45);

  box-shadow:
    0 0 18px rgba(255, 209, 102, 0.30),
    0 15px 35px rgba(0, 0, 0, 0.35);
}

@media (max-width: 700px) {

  .diwali-bg {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    z-index: -1;

    background:
      linear-gradient(rgba(15, 8, 3, 0.62),
        rgba(15, 8, 3, 0.62)),
      url("images/diwali-mobile.jpg");

    background-size: cover;

    background-position: center top;

    background-repeat: no-repeat;

    transform: translateZ(0);
  }

  .festival-detail-page {
    padding: 110px 15px 50px;
  }

  .festival-detail-box {
    padding: 25px;
    border-radius: 24px;
  }

  .festival-detail-box h1 {
    font-size: 38px;
  }

  .festival-detail-box h2 {
    font-size: 27px;
  }

  .festival-detail-box p {
    font-size: 17px;
    line-height: 1.9;
    text-align: left;
  }

  .festival-inline-img {
    width: 100%;
    border-radius: 18px;
  }
}

body.ugadi-body {
  background: transparent !important;
}

.ugadi-bg {
  position: fixed;

  inset: 0;

  z-index: -1;

  background:
    linear-gradient(rgba(15, 8, 3, 0.62),
      rgba(15, 8, 3, 0.62)),
    url("images/ugadi-bg.jpg");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;
}

@media (max-width: 700px) {

  .ugadi-bg {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    z-index: -1;

    background:
      linear-gradient(rgba(15, 8, 3, 0.62),
        rgba(15, 8, 3, 0.62)),
      url("images/ugadi-mobile.jpg");

    background-size: cover;

    background-position: center top;

    background-repeat: no-repeat;

    transform: translateZ(0);
  }

}

/* HOME FOOTER */

.home-footer {
  width: 100%;

  margin-top: 80px;

  padding: 30px 20px;

  text-align: center;

  background: rgba(5, 3, 2, 0.92);

  backdrop-filter: blur(12px);

  border-top:
    1px solid rgba(255, 209, 102, 0.22);

  box-shadow:
    0 -10px 30px rgba(0, 0, 0, 0.35);
}

.home-footer-quote {
  color: #ffd166;

  font-size: 18px;

  line-height: 1.8;

  letter-spacing: 1px;

  margin-bottom: 12px;
}

.home-footer-copy {
  color: rgba(255, 255, 255, 0.72);

  font-size: 15px;

  letter-spacing: 1px;
}

@media (max-width: 700px) {

  .home-footer {
    margin-top: 55px;

    padding: 24px 16px;
  }

  .home-footer-quote {
    font-size: 15px;

    line-height: 1.7;
  }

  .home-footer-copy {
    font-size: 13px;
  }

}

.about-card {
  position: relative;
  padding-bottom: 55px;
}

.about-arrow {
  position: absolute;

  right: 35px;

  bottom: 18px;

  color: #ffd166;

  font-size: 42px;

  font-weight: bold;

  z-index: 5;

  line-height: 1;

  text-shadow:
    0 0 12px rgba(255, 209, 102, 0.8),
    0 0 25px rgba(255, 209, 102, 0.45);

  transition: 0.35s ease;
}

.about-card:hover .about-arrow {
  transform: translateX(8px);
}

/* ABOUT PAGE */

body.about-body {
  background: transparent !important;
}

.about-bg {
  position: fixed;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(rgba(10, 5, 0, 0.70),
      rgba(10, 5, 0, 0.70)),
    url("images/about-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* PAGE */

.about-page {
  min-height: 100vh;

  padding: 130px 20px 70px;
}

/* TITLE + GOAL BOX */

/* MAIN ABOUT BOX */

.about-main-box {
  max-width: 980px;

  margin: 0 auto 55px;

  padding: 45px 38px;

  text-align: center;

  background: rgba(10, 8, 5, 0.62);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 34px;

  border:
    1px solid rgba(255, 209, 102, 0.45);

  box-shadow:
    0 0 25px rgba(255, 209, 102, 0.25),
    0 18px 45px rgba(0, 0, 0, 0.45);
}

.about-main-box h1,
.about-main-box h2 {
  color: #ffd166;

  text-shadow:
    0 0 14px rgba(255, 209, 102, 0.35);
}

.about-main-box h1 {
  font-size: 52px;

  margin-bottom: 24px;
}

.about-main-box h2 {
  font-size: 40px;

  margin:
    38px 0 18px;
}

.about-main-box p {
  color: white;

  font-size: 20px;

  line-height: 2;
}

/* TEAM */
.crew-heading {
  text-align: center;

  color: #ffd166;

  font-size: 48px;

  margin-top: 70px;

  margin-bottom: 40px;

  width: 100%;

  display: block;

  text-shadow:
    0 0 12px rgba(255, 209, 102, 0.35);
}

/* MEMBER LIST */

.crew-list {
  max-width: 1150px;

  margin: 0 auto;
}

/* MEMBER CARD */

.crew-member-card {
  display: flex;

  align-items: center;

  gap: 32px;

  margin-bottom: 30px;

  padding: 30px;

  background: rgba(10, 8, 5, 0.62);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 30px;

  border:
    1px solid rgba(255, 209, 102, 0.45);

  box-shadow:
    0 0 20px rgba(255, 209, 102, 0.22),
    0 15px 35px rgba(0, 0, 0, 0.40);

  transition: 0.35s ease;
}

.crew-member-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 0 30px rgba(255, 209, 102, 0.35),
    0 20px 45px rgba(0, 0, 0, 0.45);
}

/* MEMBER IMAGE */

.crew-member-card img {
  width: 180px;
  height: 180px;

  object-fit: cover;

  border-radius: 26px;

  border:
    1px solid rgba(255, 209, 102, 0.45);

  box-shadow:
    0 0 18px rgba(255, 209, 102, 0.28);

  flex-shrink: 0;
}

/* MEMBER CONTENT */

.crew-member-content {
  flex: 1;
}

.crew-member-content h3 {
  color: #ffd166;

  font-size: 34px;

  margin-bottom: 10px;

  text-shadow:
    0 0 10px rgba(255, 209, 102, 0.35);
}

.crew-member-content h4 {
  color: rgba(255, 255, 255, 0.82);

  font-size: 20px;

  margin-bottom: 18px;

  font-weight: 500;
}

.crew-member-content p {
  color: white;

  font-size: 18px;

  line-height: 1.9;
}

/* MOBILE */

@media (max-width: 700px) {

  .about-bg {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    z-index: -1;

    background:
      linear-gradient(rgba(10, 5, 0, 0.62),
        rgba(10, 5, 0, 0.62)),
      url("images/about-mobile.jpg");

    background-size: cover;

    background-position: center top;

    background-repeat: no-repeat;

    transform: translateZ(0);
  }

  .about-page {
    padding: 110px 15px 55px;
  }

  .about-main-box {
    padding: 30px 24px;

    border-radius: 24px;
  }

  .about-main-box h1 {
    font-size: 38px;
  }

  .about-main-box h2 {
    font-size: 30px;
  }

  .about-main-box p {
    font-size: 17px;

    line-height: 1.9;
  }

  .crew-heading {
    font-size: 34px;

    margin-top: 55px;

    margin-bottom: 28px;
  }

  .crew-member-card {
    flex-direction: column;

    text-align: center;

    gap: 22px;

    padding: 24px 20px;

    border-radius: 24px;
  }

  .crew-member-card img {
    width: 140px;
    height: 140px;

    border-radius: 20px;
  }

  .crew-member-content h3 {
    font-size: 28px;
  }

  .crew-member-content h4 {
    font-size: 18px;
  }

  .crew-member-content p {
    font-size: 16px;

    line-height: 1.8;
  }

}

/* TEMPLES PAGE */

body.temples-body {
  background: transparent !important;
}

.temples-bg {
  position: fixed;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(rgba(10, 5, 0, 0.68),
      rgba(10, 5, 0, 0.72)),
    url("images/temples-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* PAGE */

.temples-page {
  min-height: 100vh;

  padding: 130px 20px 70px;
}

/* TITLE BOX */

.temples-title-box {
  max-width: 950px;

  margin: 0 auto 55px;

  padding: 38px 32px;

  text-align: center;

  background: rgba(10, 8, 5, 0.62);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 32px;

  border:
    1px solid rgba(255, 209, 102, 0.45);

  box-shadow:
    0 0 25px rgba(255, 209, 102, 0.25),
    0 18px 45px rgba(0, 0, 0, 0.45);
}

.temples-title-box h1 {
  color: #ffd166;

  font-size: 54px;

  margin-bottom: 18px;

  text-shadow:
    0 0 14px rgba(255, 209, 102, 0.35);
}

.temples-title-box p {
  color: white;

  font-size: 20px;

  line-height: 1.9;
}

/* GRID */

.temples-grid {
  width: 100%;

  display: grid;

  grid-template-columns: repeat(6, 1fr);

  gap: 22px;

  max-width: 1700px;

  margin: 0 auto;

  place-items: center;
  justify-content: center;
}

/* CARD */

.temple-card {
  width: 100%;

  max-width: 210px;

  aspect-ratio: 1 / 1;

  position: relative;

  overflow: hidden;

  border-radius: 26px;

  background: rgba(8, 5, 2, 0.72);
  backdrop-filter: blur(12px);

  border:
    1px solid rgba(255, 209, 102, 0.45);

  box-shadow:
    0 0 24px rgba(255, 209, 102, 0.38),
    0 0 40px rgba(255, 209, 102, 0.18),
    0 15px 35px rgba(0, 0, 0, 0.32);

  transition: 0.4s ease;
}

.temple-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 0 34px rgba(255, 209, 102, 0.50),
    0 0 55px rgba(255, 209, 102, 0.24),
    0 20px 45px rgba(0, 0, 0, 0.38);
}

/* IMAGE */

.temple-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.45s ease;
}

.temple-card:hover img {
  transform: scale(1.06);
}

.temple-card::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(rgba(0, 0, 0, 0.08),
      rgba(0, 0, 0, 0.32));

  z-index: 1;
}

.temple-card img {
  filter:
    brightness(0.92) contrast(1.10);
}

/* NAME */

.temple-name {
  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;

  padding: 18px 15px;

  text-align: center;

  color: #ffd166;

  font-size: 28px;

  font-weight: bold;

  background:
    linear-gradient(transparent,
      rgba(0, 0, 0, 0.92));

  text-shadow:
    0 0 12px rgba(255, 209, 102, 0.45);
}

/* TABLET */

@media (max-width: 1100px) {

  .temples-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* MOBILE */

@media (max-width: 700px) {

  .temples-bg {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    z-index: -1;

    background:
      linear-gradient(rgba(10, 5, 0, 0.62),
        rgba(10, 5, 0, 0.68)),
      url("images/temples-mobile.jpg");

    background-size: cover;

    background-position: center top;

    background-repeat: no-repeat;

    transform: translateZ(0);
  }

  .temples-page {
    padding: 110px 15px 55px;
  }

  .temples-title-box {
    padding: 28px 22px;

    border-radius: 24px;
  }

  .temples-title-box h1 {
    font-size: 38px;
  }

  .temples-title-box p {
    font-size: 17px;

    line-height: 1.8;
  }



  .temples-grid {
    grid-template-columns: repeat(3, 1fr);

    gap: 14px;
  }


  .temple-card {
    max-width: 210px;

    height: 250px;
  }

  .temple-name {
    font-size: 20px;

    padding: 14px 10px;
  }

}

/* FINAL MOBILE NAVBAR FIX - KEEP THIS AT VERY BOTTOM */

@media screen and (max-width: 700px) {

  body .glass-navbar {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;

    margin-left: 12px !important;
    margin-right: 12px !important;
    margin-top: 12px !important;

    padding-left: 14px !important;
    padding-right: 18px !important;

    justify-content: flex-start !important;
    align-items: center !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;

    white-space: nowrap !important;

    transform: none !important;
    left: auto !important;
    right: auto !important;
  }

  body .glass-navbar::before {
    display: none !important;
    content: none !important;
  }

  body .glass-navbar a {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
  }
}

/* TIRUMALA PAGE */

body.tirumala-body {
  background: transparent !important;
}

.tirumala-bg {
  position: fixed;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(rgba(10, 5, 0, 0.68), rgba(10, 5, 0, 0.68)),
    url("images/tirumala-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 700px) {
  .tirumala-bg {
    position: fixed;
    width: 100%;
    height: 100vh;

    background:
      linear-gradient(rgba(10, 5, 0, 0.62), rgba(10, 5, 0, 0.62)),
      url("images/tirumala-mobile.jpg");

    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }
}

/* TEMPLE DETAIL PAGE */

.temple-detail-page {
  min-height: 100vh;

  padding: 130px 20px 70px;
}

.temple-detail-box {
  max-width: 980px;

  margin: auto;

  padding: 45px;

  background: rgba(10, 8, 5, 0.42);

  backdrop-filter: blur(10px);

  border-radius: 32px;

  border:
    1px solid rgba(255, 209, 102, 0.45);

  box-shadow:
    0 0 25px rgba(255, 209, 102, 0.25),
    0 18px 45px rgba(0, 0, 0, 0.45);
}

/* TITLE */

.temple-detail-box h1 {
  color: #ffd166;

  font-size: 58px;

  text-align: center;

  margin-bottom: 12px;

  text-shadow:
    0 0 14px rgba(255, 209, 102, 0.35);
}

/* SUBTITLE */

.temple-subtitle {
  color: white;

  text-align: center;

  font-size: 28px;

  margin-bottom: 10px;
}

/* LOCATION */

.temple-location {
  color: rgba(255, 255, 255, 0.82);

  text-align: center;

  font-size: 18px;

  margin-bottom: 40px;
}

/* HEADINGS */

.temple-detail-box h2 {
  color: #ffd166;

  font-size: 36px;

  margin:
    40px 0 18px;
}

/* PARAGRAPHS */

.temple-detail-box p {
  color: white;

  font-size: 20px;

  line-height: 2;

  margin-bottom: 22px;

  text-align: justify;
}

/* IMAGES */

.temple-inline-img {
  width: 70%;

  display: block;

  margin: 35px auto;

  border-radius: 26px;

  border:
    1px solid rgba(255, 209, 102, 0.45);

  box-shadow:
    0 0 20px rgba(255, 209, 102, 0.28),
    0 15px 35px rgba(0, 0, 0, 0.38);
}

.cow-img {
  width: 48%;
}

/* MOBILE */

@media (max-width: 700px) {

  .temple-detail-page {
    padding: 110px 15px 55px;
  }

  .temple-detail-box {
    padding: 28px 22px;

    border-radius: 24px;
  }

  .temple-detail-box h1 {
    font-size: 40px;
  }

  .temple-subtitle {
    font-size: 22px;
  }

  .temple-location {
    font-size: 15px;

    margin-bottom: 28px;
  }

  .temple-detail-box h2 {
    font-size: 28px;
  }

  .temple-detail-box p {
    font-size: 17px;

    line-height: 1.9;

    text-align: left;
  }

  .temple-inline-img {
    width: 100%;

    border-radius: 18px;
  }

}

@media (max-width: 700px) {

  .cow-img {
    width: 85%;
  }

}

/* STORIES PAGE */

body.stories-body {
  background: transparent !important;
}

.stories-bg {
  position: fixed;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(rgba(10, 5, 0, 0.70),
      rgba(10, 5, 0, 0.72)),
    url("images/stories-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* PAGE */

.stories-page {
  min-height: 100vh;

  padding: 130px 20px 70px;
}

/* TITLE BOX */

.stories-title-box {
  max-width: 950px;

  margin: 0 auto 55px;

  padding: 38px 32px;

  text-align: center;

  background: rgba(10, 8, 5, 0.62);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 32px;

  border:
    1px solid rgba(255, 209, 102, 0.45);

  box-shadow:
    0 0 25px rgba(255, 209, 102, 0.25),
    0 18px 45px rgba(0, 0, 0, 0.45);
}

.stories-title-box h1 {
  color: #ffd166;

  font-size: 54px;

  margin-bottom: 18px;

  text-shadow:
    0 0 14px rgba(255, 209, 102, 0.35);
}

.stories-title-box p {
  color: white;

  font-size: 20px;

  line-height: 1.9;
}

/* GRID */

.stories-grid {
  width: 75%;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;

  max-width: 1600px;

  margin: 0 auto;

  justify-content: center;

  place-items: center;
}

/* CARD */

.story-card {
  width: 100%;

  max-width: 500px;

  aspect-ratio: 1 / 1;

  position: relative;

  overflow: hidden;

  border-radius: 26px;

  text-decoration: none;

  background: rgba(8, 5, 2, 0.72);

  backdrop-filter: blur(12px);

  border:
    1px solid rgba(255, 209, 102, 0.45);

  box-shadow:
    0 0 24px rgba(255, 209, 102, 0.30),
    0 0 40px rgba(255, 209, 102, 0.14),
    0 15px 35px rgba(0, 0, 0, 0.45);

  transition: 0.4s ease;
}

.story-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 0 34px rgba(255, 209, 102, 0.50),
    0 0 55px rgba(255, 209, 102, 0.24),
    0 20px 45px rgba(0, 0, 0, 0.38);
}

/* IMAGE */

.story-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  filter:
    brightness(0.72) contrast(1.05);

  transition: 0.45s ease;
}

.story-card:hover img {
  transform: scale(1.06);
}

/* DARK OVERLAY */

.story-card::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(rgba(0, 0, 0, 0.18),
      rgba(0, 0, 0, 0.42));

  z-index: 1;
}

/* NAME */

.story-name {
  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;

  padding: 18px 12px;

  text-align: center;

  color: #ffd166;

  font-size: 24px;

  font-weight: bold;

  z-index: 2;

  background:
    linear-gradient(transparent,
      rgba(0, 0, 0, 0.92));

  text-shadow:
    0 0 12px rgba(255, 209, 102, 0.45);
}

/* MOBILE */

@media (max-width: 700px) {

  .stories-bg {
    position: fixed;

    width: 100%;
    height: 100vh;

    background:
      linear-gradient(rgba(10, 5, 0, 0.62),
        rgba(10, 5, 0, 0.68)),
      url("images/stories-mobile.jpg");

    background-size: cover;

    background-position: center top;

    background-repeat: no-repeat;
  }

  .stories-page {
    padding: 110px 15px 20px;
  }

  .stories-title-box {
    padding: 28px 22px;

    border-radius: 24px;
  }

  .stories-title-box h1 {
    font-size: 38px;
  }

  .stories-title-box p {
    font-size: 17px;

    line-height: 1.8;
  }

  .stories-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 14px;
  }

  .story-card {
    max-width: 120px;

    border-radius: 20px;
  }

  .story-name {
    font-size: 15px;

    padding: 10px 6px;
  }

}

/* RAMAYANAM PAGE */

body.ramayanam-body {
  background: transparent !important;
}

.ramayanam-bg {
  position: fixed;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(rgba(10, 5, 0, 0.70), rgba(10, 5, 0, 0.72)),
    url("images/ramayanam-bg.jpg");

  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.ramayanam-page {
  min-height: 100vh;
  padding: 130px 20px 70px;
}

.ramayanam-title-box {
  max-width: 950px;
  margin: 0 auto 55px;
  padding: 38px 32px;
  text-align: center;

  background: rgba(10, 8, 5, 0.62);
  backdrop-filter: blur(14px);
  border-radius: 32px;
  border: 1px solid rgba(255, 209, 102, 0.45);

  box-shadow:
    0 0 25px rgba(255, 209, 102, 0.25),
    0 18px 45px rgba(0, 0, 0, 0.45);
}

.ramayanam-title-box h1 {
  color: #ffd166;
  font-size: 54px;
  margin-bottom: 18px;
}

.ramayanam-title-box p {
  color: white;
  font-size: 20px;
  line-height: 1.9;
}

.kanda-grid {
  max-width: 1000px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  place-items: center;
}

.kanda-card {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;

  position: relative;
  overflow: hidden;
  border-radius: 28px;
  text-decoration: none;

  background: rgba(8, 5, 2, 0.72);
  border: 1px solid rgba(255, 209, 102, 0.45);

  box-shadow:
    0 0 24px rgba(255, 209, 102, 0.30),
    0 15px 35px rgba(0, 0, 0, 0.45);

  transition: 0.35s ease;
}

.kanda-card:hover {
  transform: translateY(-8px);
}

.kanda-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) contrast(1.05);
}

.kanda-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  padding: 16px 10px;
  text-align: center;

  color: #ffd166;
  font-size: 24px;
  font-weight: bold;

  background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
  text-shadow: 0 0 12px rgba(255, 209, 102, 0.45);
}

@media (max-width: 700px) {
  .ramayanam-bg {
    background:
      linear-gradient(rgba(10, 5, 0, 0.62), rgba(10, 5, 0, 0.68)),
      url("images/ramayanam-mobile.jpg");

    background-size: cover;
    background-position: center top;
  }

  .ramayanam-page {
    padding: 110px 15px 45px;
  }

  .ramayanam-title-box {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .ramayanam-title-box h1 {
    font-size: 38px;
  }

  .ramayanam-title-box p {
    font-size: 17px;
  }

  .kanda-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .kanda-card {
    max-width: 160px;
  }

  .kanda-name {
    font-size: 17px;
    padding: 11px 6px;
  }
}

/* BALAKANDA PAGE */

body.balakanda-body {
  background: transparent !important;
}

.balakanda-bg {
  position: fixed;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(rgba(10, 5, 0, 0.70), rgba(10, 5, 0, 0.72)),
    url("images/balakanda-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 700px) {
  .balakanda-bg {
    width: 100%;
    height: 100vh;

    background:
      linear-gradient(rgba(10, 5, 0, 0.62), rgba(10, 5, 0, 0.68)),
      url("images/balakanda-mobile.jpg");

    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }
}

/* SLOKAS PAGE */

body.slokas-body {
  background: transparent !important;
}

.slokas-bg {
  position: fixed;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(rgba(10, 5, 0, 0.70),
      rgba(10, 5, 0, 0.72)),
    url("images/slokas-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* PAGE */

.slokas-page {
  min-height: 100vh;

  padding: 130px 20px 70px;
}

/* TITLE BOX */

.slokas-title-box {
  max-width: 950px;

  margin: 0 auto 55px;

  padding: 38px 32px;

  text-align: center;

  background: rgba(10, 8, 5, 0.62);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 32px;

  border:
    1px solid rgba(255, 209, 102, 0.45);

  box-shadow:
    0 0 25px rgba(255, 209, 102, 0.25),
    0 18px 45px rgba(0, 0, 0, 0.45);
}

.slokas-title-box h1 {
  color: #ffd166;

  font-size: 54px;

  margin-bottom: 18px;

  text-shadow:
    0 0 14px rgba(255, 209, 102, 0.35);
}

.slokas-title-box p {
  color: white;

  font-size: 20px;

  line-height: 1.9;
}

/* GRID */

.slokas-grid {
  width: 100%;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 32px;

  max-width: 1000px;

  margin: 0 auto;

  place-items: center;
}

/* CARD */

.sloka-card {
  width: 100%;

  max-width: 280px;

  aspect-ratio: 1 / 1;

  position: relative;

  overflow: hidden;

  border-radius: 28px;

  text-decoration: none;

  background: rgba(8, 5, 2, 0.72);

  backdrop-filter: blur(12px);

  border:
    1px solid rgba(255, 209, 102, 0.45);

  box-shadow:
    0 0 24px rgba(255, 209, 102, 0.30),
    0 15px 35px rgba(0, 0, 0, 0.45);

  transition: 0.35s ease;
}

.sloka-card:hover {
  transform: translateY(-8px);
}

.sloka-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  filter:
    brightness(0.72) contrast(1.05);

  transition: 0.45s ease;
}

.sloka-card:hover img {
  transform: scale(1.06);
}

/* OVERLAY */

.sloka-card::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(rgba(0, 0, 0, 0.18),
      rgba(0, 0, 0, 0.42));

  z-index: 1;
}

/* NAME */

.sloka-name {
  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;

  padding: 16px 10px;

  text-align: center;

  color: #ffd166;

  font-size: 24px;

  font-weight: bold;

  z-index: 2;

  background:
    linear-gradient(transparent,
      rgba(0, 0, 0, 0.92));

  text-shadow:
    0 0 12px rgba(255, 209, 102, 0.45);
}

/* MOBILE */

@media (max-width: 700px) {

  .slokas-bg {

    background:
      linear-gradient(rgba(10, 5, 0, 0.62),
        rgba(10, 5, 0, 0.68)),
      url("images/slokas-mobile.jpg");

    background-size: cover;

    background-position: center top;

    background-repeat: no-repeat;
  }

  .slokas-page {
    padding: 110px 15px 20px;
  }

  .slokas-title-box {
    padding: 28px 22px;

    border-radius: 24px;
  }

  .slokas-title-box h1 {
    font-size: 38px;
  }

  .slokas-title-box p {
    font-size: 17px;

    line-height: 1.8;
  }

  .slokas-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
  }

  .sloka-card {
    max-width: 160px;

    border-radius: 20px;
  }

  .sloka-name {
    font-size: 17px;

    padding: 11px 6px;
  }

}

/* GITA PAGE */

body.gita-body {
  background: transparent !important;
}

.gita-bg {
  position: fixed;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(rgba(10, 5, 0, 0.70), rgba(10, 5, 0, 0.72)),
    url("images/gita-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gita-page {
  min-height: 100vh;
  padding: 130px 20px 70px;
}

.gita-title-box,
.gita-sloka-card {
  max-width: 950px;
  margin: 0 auto 45px;
  padding: 38px 32px;

  background: rgba(10, 8, 5, 0.62);
  backdrop-filter: blur(14px);
  border-radius: 32px;
  border: 1px solid rgba(255, 209, 102, 0.45);

  box-shadow:
    0 0 25px rgba(255, 209, 102, 0.25),
    0 18px 45px rgba(0, 0, 0, 0.45);
}

.gita-title-box {
  text-align: center;
}

.gita-title-box h1 {
  color: #ffd166;
  font-size: 52px;
  margin-bottom: 18px;
}

.gita-title-box p {
  color: white;
  font-size: 20px;
  line-height: 1.9;
}

.gita-sloka-card h2,
.gita-sloka-card h3 {
  color: #ffd166;
  margin-bottom: 16px;
}

.sloka-text {
  color: #fff3c4;
  font-size: 24px;
  line-height: 2;
  text-align: center;
  margin-bottom: 28px;
}

.meaning-text {
  color: white;
  font-size: 19px;
  line-height: 1.9;
  margin-bottom: 25px;
}

.speak-btn {
  display: block;
  margin: 10px auto 0;
  padding: 13px 28px;

  border: 1px solid rgba(255, 209, 102, 0.55);
  border-radius: 30px;

  background: rgba(255, 209, 102, 0.16);
  color: #ffd166;

  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.speak-btn:hover {
  background: rgba(255, 209, 102, 0.28);
}

@media (max-width: 700px) {
  .gita-bg {
    background:
      linear-gradient(rgba(10, 5, 0, 0.62), rgba(10, 5, 0, 0.68)),
      url("images/gita-mobile.jpg");

    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }

  .gita-page {
    padding: 110px 15px 35px;
  }

  .gita-title-box,
  .gita-sloka-card {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .gita-title-box h1 {
    font-size: 34px;
  }

  .gita-title-box p,
  .meaning-text {
    font-size: 17px;
  }

  .sloka-text {
    font-size: 19px;
    line-height: 1.9;
  }
}

.speak-btn {
  display: block;

  margin: 18px auto 0;

  padding: 14px 30px;

  border: 1px solid rgba(255, 209, 102, 0.55);

  border-radius: 40px;

  background: rgba(255, 209, 102, 0.14);

  backdrop-filter: blur(10px);

  color: #ffd166;

  font-size: 18px;

  font-weight: bold;

  cursor: pointer;

  transition: 0.35s ease;

  box-shadow:
    0 0 18px rgba(255, 209, 102, 0.22);
}

.speak-btn:hover {
  transform: scale(1.05);

  background: rgba(255, 209, 102, 0.24);

  box-shadow:
    0 0 28px rgba(255, 209, 102, 0.35);
}

.speak-btn:active {
  transform: scale(0.96);
}

/* QUIZ PAGE */

body.quiz-body {
  background: transparent !important;
}

.quiz-bg {
  position: fixed;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(rgba(10, 5, 0, 0.70), rgba(10, 5, 0, 0.72)),
    url("images/quiz-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.quiz-page {
  min-height: 100vh;
  padding: 130px 20px 70px;
}

.quiz-box {
  max-width: 850px;
  margin: 0 auto 45px;
  padding: 38px 32px;
  text-align: center;

  background: rgba(10, 8, 5, 0.62);
  backdrop-filter: blur(14px);

  border-radius: 32px;
  border: 1px solid rgba(255, 209, 102, 0.45);

  box-shadow:
    0 0 25px rgba(255, 209, 102, 0.25),
    0 18px 45px rgba(0, 0, 0, 0.45);
}

.quiz-box h1 {
  color: #ffd166;
  font-size: 46px;
  margin-bottom: 18px;
}

.quiz-box h2 {
  color: #ffd166;
  margin: 25px 0 15px;
}

.quiz-box p,
#leaderboard p {
  color: white;
  font-size: 18px;
  line-height: 1.8;
}

#playerName {
  width: 100%;
  max-width: 360px;
  padding: 14px 18px;
  margin: 25px auto;
  display: block;

  border-radius: 30px;
  border: 1px solid rgba(255, 209, 102, 0.45);

  background: rgba(255, 255, 255, 0.08);
  color: white;

  font-size: 18px;
  text-align: center;
}

#playerName::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.quiz-box button,
#nextBtn {
  padding: 13px 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 209, 102, 0.55);

  background: rgba(255, 209, 102, 0.16);
  color: #ffd166;

  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

#questionText {
  color: white;
  font-size: 30px;
  line-height: 1.7;
}

#optionsBox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 30px 0;
}

.option-btn {
  width: 100%;
  min-height: 70px;

  background: rgba(255, 255, 255, 0.08) !important;
  color: white !important;

  border-radius: 22px !important;
  border: 1px solid rgba(255, 209, 102, 0.35) !important;

  font-size: 18px !important;
}

.option-btn.correct {
  background: rgba(35, 180, 90, 0.85) !important;
  color: white !important;
}

.option-btn.wrong {
  background: rgba(210, 55, 55, 0.85) !important;
  color: white !important;
}

.hide {
  display: none !important;
}

@media (max-width: 700px) {
  .quiz-bg {
    background:
      linear-gradient(rgba(10, 5, 0, 0.62), rgba(10, 5, 0, 0.68)),
      url("images/quiz-mobile.jpg");

    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }

  .quiz-page {
    padding: 110px 15px 25px;
  }

  .quiz-box {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .quiz-box h1 {
    font-size: 34px;
  }

  #questionText {
    font-size: 23px;
  }

  #optionsBox {
    grid-template-columns: 1fr;
  }

  .option-btn {
    min-height: 58px;
  }
}

/* NAME BOX */

.name-box {
  max-width: 420px;

  margin: 35px auto;

  padding: 28px 24px;

  background: rgba(255, 255, 255, 0.06);

  border-radius: 28px;

  border:
    1px solid rgba(255, 209, 102, 0.30);

  box-shadow:
    0 0 20px rgba(255, 209, 102, 0.14);
}

/* LEADERBOARD */

.leaderboard-box {
  max-width: 520px;

  margin: 40px auto 0;

  padding: 28px 24px;

  background: rgba(255, 255, 255, 0.06);

  border-radius: 28px;

  border:
    1px solid rgba(255, 209, 102, 0.30);

  box-shadow:
    0 0 20px rgba(255, 209, 102, 0.14);
}

.leaderboard-box h2 {
  margin-bottom: 18px;
}

.quiz-start-area {
  max-width: 850px;
  margin: 0 auto;
}

.name-box,
.leaderboard-box {
  margin: 0 auto 35px;
  padding: 38px 32px;
  text-align: center;

  background: rgba(10, 8, 5, 0.62);
  backdrop-filter: blur(14px);

  border-radius: 32px;
  border: 1px solid rgba(255, 209, 102, 0.45);

  box-shadow:
    0 0 25px rgba(255, 209, 102, 0.25),
    0 18px 45px rgba(0, 0, 0, 0.45);
}

.name-box h1,
.leaderboard-box h2 {
  color: #ffd166;
}

.name-box p,
#leaderboard p {
  color: white;
}

.name-box button {
  margin-top: 12px;
  padding: 15px 34px;

  border-radius: 40px;
  border: 1px solid rgba(255, 209, 102, 0.65);

  background:
    linear-gradient(135deg,
      rgba(255, 209, 102, 0.28),
      rgba(255, 170, 40, 0.12));

  color: #ffd166;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;

  box-shadow:
    0 0 18px rgba(255, 209, 102, 0.28);

  transition: 0.3s ease;
}

.name-box button:hover {
  transform: translateY(-3px) scale(1.03);
}

/* ADMIN */

body.admin-body,
body.dashboard-body {
  background: #050300;
}

.admin-bg,
.dashboard-bg {
  position: fixed;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(rgba(10, 5, 0, 0.78),
      rgba(10, 5, 0, 0.82)),
    url("images/admin-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.admin-page,
.dashboard-page {
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
}

.admin-box,
.dashboard-box {
  width: 100%;
  max-width: 500px;

  padding: 42px 32px;

  text-align: center;

  background: rgba(10, 8, 5, 0.62);

  backdrop-filter: blur(14px);

  border-radius: 32px;

  border:
    1px solid rgba(255, 209, 102, 0.45);

  box-shadow:
    0 0 25px rgba(255, 209, 102, 0.25),
    0 18px 45px rgba(0, 0, 0, 0.45);
}

.admin-box h1,
.dashboard-box h1 {
  color: #ffd166;

  margin-bottom: 16px;

  font-size: 42px;
}

.admin-box input {
  width: 100%;

  margin-top: 18px;

  padding: 15px 18px;

  border-radius: 28px;

  border:
    1px solid rgba(255, 209, 102, 0.35);

  background: rgba(255, 255, 255, 0.08);

  color: white;

  font-size: 16px;
}

.admin-box button {
  margin-top: 24px;

  width: 100%;

  padding: 15px;

  border: none;

  border-radius: 32px;

  background:
    linear-gradient(135deg,
      #ffd166,
      #ffb347);

  color: #2b1700;

  font-size: 18px;

  font-weight: bold;

  cursor: pointer;
}

#adminMessage {
  margin-top: 18px;

  color: white;
}

#adminEventsList {
  margin-top: 30px;
}

.admin-event-card {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
  padding: 18px;

  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 209, 102, 0.3);
  border-radius: 22px;
  text-align: left;
}

.admin-event-card img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 14px;
}

.admin-event-card h3 {
  color: #ffd166;
  margin-bottom: 8px;
}

.admin-event-card p {
  color: white;
  font-size: 14px;
  line-height: 1.6;
}

.edit-event-btn,
.delete-event-btn {
  margin-top: 10px;
  margin-right: 8px;
  padding: 9px 16px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
}

.edit-event-btn {
  background: #ffd166;
  color: #1b0d00;
}

.delete-event-btn {
  background: #c0392b;
  color: white;
}

@media (max-width: 700px) {
  .admin-event-card {
    flex-direction: column;
  }

  .admin-event-card img {
    width: 100%;
    height: 160px;
  }
}

/* CMS IMAGE GRID */

.dashboard-wide {
  max-width: 1100px;
}

.add-event-box {
  margin: 30px auto;
  padding: 28px;

  border-radius: 28px;
  border: 1px solid rgba(255, 209, 102, 0.35);

  background: rgba(255, 255, 255, 0.05);
}

.cms-image-grid {
  margin: 25px auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;

  max-width: 520px;
}

.cms-img-slot {
  aspect-ratio: 1 / 1;

  border-radius: 18px;
  border: 1px dashed rgba(255, 209, 102, 0.6);

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  cursor: pointer;
  position: relative;

  background: rgba(255, 255, 255, 0.06);
}

.cms-img-slot span {
  color: #ffd166;
  font-size: 38px;
}

.cms-img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.remove-img {
  position: absolute;
  top: 6px;
  right: 6px;

  width: 28px;
  height: 28px;

  border-radius: 50%;
  border: none;

  background: rgba(210, 55, 55, 0.9);
  color: white;

  cursor: pointer;
}

.editable-event {
  flex-direction: column;
}

.edit-title,
.edit-desc {
  width: 100%;
  margin-bottom: 14px;

  padding: 14px 16px;

  border-radius: 18px;
  border: 1px solid rgba(255, 209, 102, 0.35);

  background: rgba(255, 255, 255, 0.08);
  color: white;

  font-size: 16px;
}

.edit-desc {
  min-height: 140px;
  resize: vertical;
}

.admin-actions {
  display: flex;
  gap: 12px;
}

.save-edit {
  background: #ffd166;
  color: #1b0d00;
}

.delete-event {
  background: #c0392b;
  color: white;
}

@media (max-width: 700px) {
  .cms-image-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

.add-event-box input,
.add-event-box textarea {
  width: 100%;

  padding: 18px 20px;

  margin-top: 18px;

  border-radius: 22px;

  border: 1px solid rgba(255, 209, 102, 0.35);

  background: rgba(255, 255, 255, 0.08);

  color: white;

  font-size: 17px;

  outline: none;
}

.add-event-box textarea {
  min-height: 180px;

  resize: vertical;

  line-height: 1.7;
}

.edit-title,
.edit-location,
.edit-time,
.edit-desc {
  width: 100%;

  margin-bottom: 14px;

  padding: 14px 16px;

  border-radius: 18px;

  border: 1px solid rgba(255, 209, 102, 0.35);

  background: rgba(255, 255, 255, 0.08);

  color: white;

  font-size: 16px;

  outline: none;
}

.edit-title {
  font-size: 22px;
  font-weight: bold;
}

.edit-location,
.edit-time {
  font-size: 15px;
  color: #ffd166;
}

.edit-desc {
  min-height: 140px;
  resize: vertical;
  line-height: 1.7;
}

.dashboard-nav {
  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 12px;

  margin: 25px 0 35px;
}

.dash-btn {
  padding: 12px 22px;

  border-radius: 25px;

  border:
    1px solid rgba(255, 209, 102, 0.35);

  background:
    rgba(255, 255, 255, 0.08);

  color: #ffd166;

  font-weight: bold;

  cursor: pointer;

  transition: 0.3s;
}

.dash-btn:hover {
  transform: translateY(-2px);
}

.dash-btn.active {
  background: #ffd166;

  color: #1b0d00;
}

.dash-section {
  display: none;
}

.dash-section.active-section {
  display: block;
}

.coming-soon-box {
  padding: 30px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 209, 102, 0.35);
  text-align: center;
}

.coming-soon-box h3 {
  color: #ffd166;
  margin-bottom: 15px;
}

.coming-soon-box p {
  color: white;
  line-height: 1.8;
}

.bg-manager-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bg-row {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 209, 102, 0.35);
}

.bg-row h3 {
  color: #ffd166;
}

.bg-upload-btn {
  padding: 12px 20px;

  border: none;

  border-radius: 20px;

  background: #ffd166;

  color: #1b0d00;

  font-weight: bold;

  cursor: pointer;
}

#festivalSectionsContainer {
  margin-top: 20px;

  display: flex;
  flex-direction: column;

  gap: 20px;
}

.festival-section-box {
  padding: 20px;

  border-radius: 20px;

  border: 1px solid rgba(255, 209, 102, 0.35);

  background: rgba(255, 255, 255, 0.05);
}

.festival-section-box h4 {
  color: #ffd166;

  margin-bottom: 15px;
}

.festival-section-box input,
.festival-section-box textarea {

  width: 100%;

  margin-bottom: 15px;
}

#addFestivalSectionBtn {

  margin-top: 20px;

  margin-right: 10px;
}

#addFestivalSectionBtn,
#saveFestivalBtn {
  margin: 20px 8px 0;
  padding: 13px 24px;

  border: 1px solid rgba(255, 209, 102, 0.55);
  border-radius: 30px;

  background: rgba(255, 209, 102, 0.18);
  color: #ffd166;

  font-size: 16px;
  font-weight: bold;

  cursor: pointer;
  transition: 0.3s ease;
}

#addFestivalSectionBtn:hover,
#saveFestivalBtn:hover {
  background: rgba(255, 209, 102, 0.30);
  transform: translateY(-2px);
}

#festivalFooterQuote {
  margin-top: 25px;
}

.remove-section-btn {

  margin-top: 15px;

  padding: 10px 18px;

  border: none;

  border-radius: 20px;

  background: #c0392b;

  color: white;

  cursor: pointer;
}

.section-image-slot {
  width: 100%;
  max-width: 420px;
  height: 220px;

  margin: 18px auto;

  border: 1px dashed rgba(255, 209, 102, 0.55);
  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;

  overflow: hidden;
}

.section-image-slot span {
  color: #ffd166;
  font-weight: bold;
}

.section-image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.festival-card-upload-box {
  width: 100%;
  max-width: 700px;
  height: 350px;

  margin: 25px auto;

  border: 1px dashed rgba(255, 209, 102, 0.55);
  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  overflow: hidden;
}

.festival-card-upload-box span {
  color: #ffd166;
  font-weight: bold;
}

.festival-card-upload-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.festival-detail-page {
  padding: 120px 20px 60px;
}

.festival-detail-box {
  max-width: 1100px;

  margin: auto;

  padding: 30px;

  border-radius: 30px;

  background:
    rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(10px);
}

.festival-detail-box h1 {
  text-align: center;

  margin-bottom: 40px;

  color: #ffd166;
}

.festival-section {
  margin-bottom: 50px;
}

.festival-section h2 {
  color: #ffd166;

  margin-bottom: 20px;
}

.festival-section-image {

  display: block;


  border-radius: 20px;

  object-fit: cover;
}

.festival-section p {

  line-height: 1.9;

  color: white;
}

.festival-inline-editor {
  margin-top: 20px;
}

.festival-edit-panel {

  width: 100%;

  max-width: 1300px;

  margin-top: 20px;

  padding: 30px;

  border-radius: 25px;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 209, 102, 0.35);
}

.inline-festival-title,
.inline-footer-quote,
.inline-section-title,
.inline-section-content {
  width: 100%;
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 209, 102, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 16px;
}

.inline-section-content {
  min-height: 130px;
  resize: vertical;
}

.save-inline-festival-btn {
  margin-top: 18px;
  padding: 13px 24px;
  border-radius: 24px;
  border: none;
  background: #ffd166;
  color: #1b0d00;
  font-weight: bold;
  cursor: pointer;
}

.festival-inline-editor {
  width: 100%;
}

.editable-festival-card {
  display: block !important;
}

.editable-festival-card>div {
  width: 100%;
}
.edit-festival-btn,
.open-festival-edit-btn {

  padding: 10px 20px;

  border: none;

  border-radius: 20px;

  font-size: 15px;

  font-weight: bold;

  cursor: pointer;

  margin-right: 10px;

  margin-top: 10px;

  background: #ffd166;

  color: #1b0d00;
}
.delete-festival-btn {

  padding: 10px 20px;

  border: none;

  border-radius: 20px;

  font-size: 15px;

  font-weight: bold;

  cursor: pointer;

  margin-right: 10px;

  margin-top: 10px;
}

.edit-festival-btn {

  background: #ffd166;

  color: #1b0d00;
}

.delete-festival-btn {

  background: #c0392b;

  color: white;
}

.edit-festival-btn:hover {

  transform: translateY(-2px);
}

.delete-festival-btn:hover {

  transform: translateY(-2px);
}
.editable-festival-card {
  width: 100%;
  display: block !important;
}

.editable-festival-card > div {
  width: 100%;
}

.festival-inline-editor {
  width: 100%;
  margin-top: 25px;
}

.festival-edit-panel {
  width: 100%;
  max-width: 100%;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,209,102,0.35);
}

.festival-edit-panel .festival-card-upload-box {
  width: 100%;
  max-width: 1300px;
  height: 360px;
}
.add-inline-section-btn,
.save-inline-festival-btn {

  padding: 12px 22px;

  border: none;

  border-radius: 24px;

  font-weight: bold;

  cursor: pointer;

  margin-top: 15px;

  margin-right: 10px;
}

.add-inline-section-btn{
  background:#ffd166;
  color:#1b0d00;
}

.remove-inline-section-btn{

  margin-top:15px;

  padding:10px 18px;

  border:none;

  border-radius:20px;

  background:#c0392b;

  color:white;

  cursor:pointer;
}
.festival-card-main-img {
  width: 100%;
  max-width: 520px;
  height: 260px;
  margin: 25px auto;
}
#festivalCardImageGrid {
  display: flex !important;
  grid-template-columns: none !important;

  width: 100% !important;
  max-width: 520px !important;
  height: 260px !important;

  margin: 25px auto !important;

  padding: 0 !important;
  gap: 0 !important;
}
.image-control-box {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px 15px;
  margin-top: 15px;
  align-items: center;
}

.image-control-box label {
  color: #ffd166;
  font-weight: bold;
}

.image-control-box input,
.image-control-box select {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,209,102,0.35);
  background: rgba(255,255,255,0.08);
  color: white;
}
.edit-temple-btn,
.delete-temple-btn,
.add-inline-temple-section-btn,
.save-inline-temple-btn,
.remove-inline-temple-section-btn {

  padding: 12px 22px;
  border: none;
  border-radius: 25px;

  font-size: 15px;
  font-weight: 600;

  cursor: pointer;

  margin: 10px 8px 10px 0;

  transition: 0.3s ease;
}

.edit-temple-btn,
.add-inline-temple-section-btn {

  background: #ffd166;
  color: #1b0d00;
}

.save-inline-temple-btn {

  background: #2ecc71;
  color: white;
}

.delete-temple-btn,
.remove-inline-temple-section-btn {

  background: #c0392b;
  color: white;
}

.edit-temple-btn:hover,
.delete-temple-btn:hover,
.add-inline-temple-section-btn:hover,
.save-inline-temple-btn:hover,
.remove-inline-temple-section-btn:hover {

  transform: translateY(-2px);
}
.inline-temple-title,
.inline-temple-footer-quote,
.inline-temple-section-title,
.inline-temple-section-content {

  width: 100%;

  padding: 14px 18px;

  margin-bottom: 15px;

  border-radius: 18px;

  border: 1px solid rgba(255,209,102,0.35);

  background: rgba(255,255,255,0.08);

  color: white;

  font-size: 16px;
}

.inline-temple-section-content {

  min-height: 140px;

  resize: vertical;
}
.temple-inline-editor {

  width: 100%;

  margin-top: 25px;
}
.temple-inline-editor {

  width: 100%;

  margin-top: 25px;
}

.festival-edit-panel {

  width: 100%;

  max-width: 1300px;

  margin: 0 auto;

  padding: 35px;

  border-radius: 30px;
}

.inline-temple-section-edit {

  width: 100%;

  max-width: 1200px;

  margin: 25px auto;

  padding: 25px;

  border-radius: 24px;

  background: rgba(255,255,255,0.05);

  border: 1px solid rgba(255,209,102,0.25);
}
/* FORCE TEMPLE EDITOR FULL WIDTH */

.admin-event-card {
  width: 100% !important;
  max-width: 100% !important;
}

.admin-event-card > div {
  width: 100% !important;
}

.temple-inline-editor {
  width: 100% !important;
}

.temple-inline-editor .festival-edit-panel {
  width: 100% !important;
  max-width: 100% !important;
}

.inline-temple-section-edit {
  width: 100% !important;
  max-width: 100% !important;
}
#storyCategorySelect,
#storyPartTitle {
  width: 100%;
  max-width: 500px;
  padding: 14px 18px;
  margin: 10px auto;
  display: block;

  border-radius: 18px;
  border: 1px solid rgba(255,209,102,0.35);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 16px;
}

#saveStoryPartBtn,
.delete-story-part-btn,
.delete-story-category-btn {
  padding: 12px 22px;
  border: none;
  border-radius: 24px;
  font-weight: bold;
  cursor: pointer;
}

#saveStoryPartBtn {
  background: #ffd166;
  color: #1b0d00;
}

.delete-story-part-btn,
.delete-story-category-btn {
  background: #c0392b;
  color: white;
}
.story-parts-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 20px;
}
.edit-story-part-btn,
.delete-story-part-btn,
.add-inline-story-section-btn,
.save-inline-story-btn,
.remove-inline-story-section-btn {
  padding: 12px 22px;
  border: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin: 10px 8px 10px 0;
  transition: 0.3s ease;
}

.edit-story-part-btn,
.add-inline-story-section-btn {
  background: #ffd166;
  color: #1b0d00;
}

.save-inline-story-btn {
  background: #2ecc71;
  color: white;
}

.delete-story-part-btn,
.remove-inline-story-section-btn {
  background: #c0392b;
  color: white;
}

.inline-story-title,
.inline-story-section-title,
.inline-story-section-content {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 15px;
  border-radius: 18px;
  border: 1px solid rgba(255,209,102,0.35);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 16px;
}

.inline-story-section-content {
  min-height: 140px;
  resize: vertical;
}

.story-inline-editor {
  width: 100%;
  margin-top: 25px;
}

.inline-story-section-edit {
  width: 100%;
  max-width: 100%;
  margin: 25px auto;
  padding: 25px;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,209,102,0.25);
}
.delete-score-btn {
  margin-left: 12px;
  padding: 6px 12px;
  border: none;
  border-radius: 14px;
  background: #c0392b;
  color: white;
  cursor: pointer;
  font-size: 13px;
}
.gold-btn {
  display: inline-block;
  padding: 14px 34px;

  border: 1.5px solid rgba(255, 200, 80, 0.45);
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    rgba(255, 205, 90, 0.15),
    rgba(255, 170, 40, 0.08)
  );

  color: #ffd36b;
  font-size: 16px;
  font-weight: 700;

  cursor: pointer;

  box-shadow:
    0 0 18px rgba(255, 185, 50, 0.18),
    inset 0 0 12px rgba(255, 220, 120, 0.08);

  transition: all 0.25s ease;
}

.gold-btn:hover {
  transform: translateY(-2px);

  color: #fff2c2;

  box-shadow:
    0 0 28px rgba(255, 185, 50, 0.4),
    0 0 60px rgba(255, 185, 50, 0.12);
}

.gold-btn:active {
  transform: scale(0.97);
}
button {
  padding: 10px 20px;
  border: 1px solid rgba(255, 200, 80, 0.4);
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    rgba(255, 210, 100, 0.18),
    rgba(255, 170, 50, 0.08)
  );

  color: #ffd36b;
  font-weight: 600;
  font-size: 14px;

  cursor: pointer;

  transition: all 0.25s ease;

  box-shadow:
    0 0 15px rgba(255, 180, 50, 0.15),
    inset 0 0 10px rgba(255,255,255,0.03);
}

button:hover {
  transform: translateY(-2px);

  color: #fff4d1;

  box-shadow:
    0 0 25px rgba(255, 180, 50, 0.35);
}

button:active {
  transform: scale(0.96);
}
button {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 200, 80, 0.4);

  background: linear-gradient(
    135deg,
    rgba(255,210,100,0.18),
    rgba(255,170,50,0.08)
  );

  color: #ffd36b;
  font-weight: 600;
  cursor: pointer;
}

button:hover {
  transform: translateY(-2px);
}
button[class*="delete"] {
  background: linear-gradient(
    135deg,
    rgba(220,70,70,0.25),
    rgba(180,40,40,0.15)
  );

  color: #ffb3b3;
  border-color: rgba(255,100,100,0.3);
}
.dashboard-box input,
.dashboard-box textarea,
.dashboard-box select {
  width: 100%;
  max-width: 520px;

  padding: 14px 18px;
  margin: 10px 6px;

  border-radius: 18px;
  border: 1px solid rgba(255, 209, 102, 0.35);

  background: rgba(255, 255, 255, 0.08);
  color: white;

  font-size: 16px;
  outline: none;
}

.dashboard-box textarea {
  min-height: 95px;
  resize: vertical;
}

.dashboard-box input::placeholder,
.dashboard-box textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.dashboard-box select {
  cursor: pointer;
}

.dashboard-box select option {
  background: #1b1208;
  color: white;
}
.member-inline-editor {
  width: 100%;
  margin-top: 20px;
}

.edit-member-name,
.edit-member-position,
.edit-member-description {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 14px;

  border-radius: 18px;
  border: 1px solid rgba(255,209,102,0.35);

  background: rgba(255,255,255,0.08);
  color: white;
}

.edit-member-description {
  min-height: 120px;
  resize: vertical;
}
.sloka-category-list {
  margin-top: 25px;
  width: 100%;
}

.single-sloka-admin-card {
  margin-top: 18px;
}

.sloka-edit-box {
  margin-top: 18px;
}

.sloka-edit-box input,
.sloka-edit-box textarea {
  width: 100%;
  padding: 14px 18px;
  margin: 10px 0;

  border-radius: 18px;
  border: 1px solid rgba(255,209,102,0.35);

  background: rgba(255,255,255,0.08);
  color: white;
}

.sloka-edit-box textarea {
  min-height: 120px;
  resize: vertical;
}
.admin-event-card p {
    max-width: none;
    width: 100%;
    white-space: normal;
}
.admin-event-card p {
    max-width: none;
    width: 100%;
    white-space: normal;
}
.admin-event-card {
    width: 100%;
    max-width: 1400px;
}
.editable-event {
  width: 100% !important;
  max-width: 1400px !important;
}

.editable-event .edit-desc {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
  box-sizing: border-box;
}
.music-btn{
  position: fixed;

  top: 20px;
  right: 25px;

  width: 55px;
  height: 55px;

  border-radius: 50%;
  border: 1px solid rgba(255,215,0,0.4);

  background: rgba(30,20,10,0.9);
  color: #ffd76a;

  font-size: 22px;
  cursor: pointer;

  z-index: 99999;

  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  display: flex;
  box-shadow: 0 0 15px rgba(255,215,0,0.25);
}
@media(max-width: 500px){
  .music-btn{
    width: 50px;
    height: 50px;
    font-size: 20px;
    top: 90px;
    right: 15px;
  }
}