/* Global token layer and page foundation */
:root {
  --bg: #FFF8ED;
  --bg-soft: #F9F2E8;
  --bg-muted: #EFEAD8;
  --maroon: #6E1A14;
  --maroon-dark: #4C120D;
  --maroon-soft: #9A574C;
  --saffron: #F5A623;
  --saffron-soft: #FCE8C9;
  --gold: #C89B3C;
  --gold-soft: #EADBB4;
  --text: #39271C;
  --text-soft: #6B4F36;
  --text-heading: #412F21;
  --line: #E8DCC8;
  --line-strong: #CBB083;
  --white: #FFFFFF;
  --shadow: rgba(68, 35, 17, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 6%, rgba(255, 255, 255, 0.88) 0%, transparent 14%),
    radial-gradient(circle at 94% 2%, rgba(245, 166, 35, 0.08) 0%, transparent 12%),
    repeating-linear-gradient(115deg, transparent 0 3px, rgba(79, 46, 25, 0.018) 3px 4px),
    var(--bg);
  font-family: 'Poppins', 'Noto Sans Devanagari', Arial, sans-serif;
  line-height: 1.7;
}

body,
body * {
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(rgba(110, 26, 20, 0.05) 1px, transparent 1px),
    radial-gradient(rgba(245, 166, 35, 0.04) 1px, transparent 1px);
  background-position: 0 0, 10px 10px;
  background-size: 34px 34px, 34px 34px;
  opacity: 0.45;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, calc(100% - 96px));
  margin: 0 auto;
}

.site-main {
  min-height: calc(100vh - 220px);
}

.announcement-bar {
  background: var(--saffron);
  color: var(--maroon-dark);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  padding: 9px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(110, 26, 20, 0.20);
}

.site-header {
  background: linear-gradient(120deg, var(--maroon) 0%, #7B211C 100%);
  border-bottom: 2px solid var(--gold);
  position: relative;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background-image: repeating-linear-gradient(90deg, transparent 0 2px, var(--gold-soft) 2px 3px);
}

.nav-wrapper {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
}

.brand-title {
  display: block;
  font-family: 'Noto Sans Devanagari', serif;
  font-size: clamp(1.15rem, 1.9vw, 1.8rem);
  font-weight: 700;
  line-height: 1.1;
}

.brand-subtitle {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.12em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  position: relative;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.90);
  padding: 8px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
  background: var(--saffron);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: #fff;
}

.footer {
  background: var(--maroon);
  color: rgba(255, 255, 255, 0.92);
  border-top: 2px solid var(--gold);
  padding: 20px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-size: 0.82rem;
}

/* =========================================================
   FIXED BOTTOM NAVIGATION
   ========================================================= */

.mobile-bottom-nav {
  position: fixed !important;

  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;

  width: 100% !important;

  height: 64px;

  display: flex !important;

  align-items: center;
  justify-content: center;

  gap: 12px;

  padding: 6px 12px;

  box-sizing: border-box;

  background: #741c16;

  border-top: 1px solid #a64a2d;

  box-shadow:
    0 -4px 15px rgba(0, 0, 0, 0.18);

  z-index: 999999 !important;

  /* Very important */
  transform: none !important;

  visibility: visible !important;
  opacity: 1 !important;
}


/* =========================================================
   NAVIGATION LINK
   ========================================================= */

.mobile-bottom-nav .bottom-nav-link {
  min-width: 82px;

  display: flex !important;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 3px;

  padding: 5px 12px;

  box-sizing: border-box;

  color: #fff8ec !important;

  background: transparent;

  text-decoration: none;

  border-radius: 8px;

  font-family:
    "Noto Sans Devanagari",
    "Noto Sans",
    sans-serif;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}


/* =========================================================
   ICON
   ========================================================= */

.mobile-bottom-nav .bottom-nav-icon {
  display: block;

  color: #fff8ec !important;

  font-size: 18px;

  line-height: 1;
}


/* =========================================================
   TEXT
   ========================================================= */

.mobile-bottom-nav .bottom-nav-label {
  display: block;

  color: #fff8ec !important;

  font-size: 12px;

  font-weight: 700;

  line-height: 1.2;

  white-space: nowrap;
}


/* =========================================================
   ACTIVE
   ========================================================= */

.mobile-bottom-nav .bottom-nav-link.active {
  color: #fff8ec !important;

  background: #9a3a24 !important;
}

.mobile-bottom-nav .bottom-nav-link.active .bottom-nav-icon,

.mobile-bottom-nav .bottom-nav-link.active .bottom-nav-label {
  color: #fff8ec !important;
}


/* =========================================================
   HOVER
   ========================================================= */

.mobile-bottom-nav .bottom-nav-link:hover {
  background: #8d2b1d;

  color: #fff8ec !important;
}


/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 901px) {

  .mobile-bottom-nav {
    height: 62px;

    gap: 24px;

    padding: 6px 24px;
  }

  .mobile-bottom-nav .bottom-nav-link {
    min-width: 90px;

    padding: 6px 16px;
  }

  .mobile-bottom-nav .bottom-nav-icon {
    font-size: 19px;
  }

  .mobile-bottom-nav .bottom-nav-label {
    font-size: 13px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .mobile-bottom-nav {
    height: 64px;

    gap: 2px;

    padding:
      5px 3px calc(5px + env(safe-area-inset-bottom));
  }

  .mobile-bottom-nav .bottom-nav-link {
    min-width: 0;

    flex: 1;

    padding: 5px 2px;
  }

  .mobile-bottom-nav .bottom-nav-icon {
    font-size: 17px;
  }

  .mobile-bottom-nav .bottom-nav-label {
    font-size: 10px;
  }

}


/* =========================================================
   DON'T HIDE PAGE CONTENT BEHIND NAV
   ========================================================= */

body {
  padding-bottom: 74px !important;
}

@media (max-width: 600px) {

  body {
    padding-bottom: 78px !important;
  }

}

/* Shared animations and utility polish */
.hero-copy,
.hero-image-panel,
.nav-card,
.content-panel,
.gallery-tile {
  animation: fadeIn 640ms ease both;
}

.nav-card {
  animation-name: cardLiftIn;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardLiftIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}