/* ============================================================
   Shri Siddh Shaktipeeth Maa Tripurmalini Dham - Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;500;600;700&family=Noto+Serif:ital,wght@0,400;0,600;0,700;1,400&family=Tiro+Devanagari+Hindi:ital@0;1&display=swap');

/* === CSS VARIABLES === */
:root {
  --saffron: #FF6B00;
  --saffron-light: #FF8C35;
  --saffron-dark: #CC5500;
  --gold: #D4A017;
  --gold-light: #F0C040;
  --gold-bright: #FFD700;
  --maroon: #800000;
  --maroon-dark: #5C0000;
  --maroon-light: #A52020;
  --cream: #FFF8E7;
  --cream-dark: #F5E6C8;
  --white: #FFFFFF;
  --text-dark: #1A0A00;
  --text-mid: #3D1C00;
  --text-light: #6B3A00;
  --bg-dark: #0D0500;
  --bg-mid: #1A0A00;
  --shadow-gold: 0 0 30px rgba(212, 160, 23, 0.4);
  --shadow-saffron: 0 0 40px rgba(255, 107, 0, 0.3);
  --glow-gold: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 60px rgba(212, 160, 23, 0.3);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Serif', Georgia, serif;
  background: var(--bg-dark);
  color: var(--cream);
  line-height: 1.8;
  overflow-x: hidden;
}

a { color: var(--gold-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-bright); }

img { max-width: 100%; height: auto; display: block; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* === BACKGROUND PATTERN === */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(212, 160, 23, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 107, 0, 0.04) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A017' fill-opacity='0.03'%3E%3Cpath d='M30 0l8.66 15H21.34L30 0zm0 60l-8.66-15h17.32L30 60zM0 30l15-8.66v17.32L0 30zm60 0l-15 8.66V21.34L60 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 2rem;
  background: rgba(13, 5, 0, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 5, 0, 0.98);
  border-bottom-color: rgba(212, 160, 23, 0.4);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand .om-symbol {
  font-size: 1.8rem;
  color: var(--gold-bright);
  text-shadow: var(--glow-gold);
  animation: pulse-glow 3s ease-in-out infinite;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-brand-text .temple-name {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-brand-text .temple-sub {
  font-family: 'Noto Serif', serif;
  font-size: 0.65rem;
  color: var(--saffron-light);
  letter-spacing: 0.05em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.2rem;
  align-items: center;
}

.nav-menu a {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cream-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.7rem;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold-bright);
  background: rgba(212, 160, 23, 0.1);
  border-color: rgba(212, 160, 23, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold-bright);
  border-radius: 2px;
  transition: var(--transition);
}

/* === HERO SECTIONS === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(128, 0, 0, 0.85) 0%,
    rgba(13, 5, 0, 0.7) 40%,
    rgba(26, 10, 0, 0.8) 70%,
    rgba(92, 0, 0, 0.9) 100%
  ),
  url('https://images.unsplash.com/photo-1545579133-99bb5ab189bd?w=1920&q=80') center/cover no-repeat;
  z-index: -1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(212, 160, 23, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 107, 0, 0.2) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
  animation: fadeInUp 1s ease forwards;
}

.hero-om {
  font-size: 4rem;
  color: var(--gold-bright);
  text-shadow: var(--glow-gold);
  margin-bottom: 1rem;
  display: block;
  animation: pulse-glow 3s ease-in-out infinite;
}

.hero-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--saffron-light);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero h1 span {
  color: var(--gold-bright);
  text-shadow: var(--glow-gold);
}

.hero-tagline {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--gold-light);
  letter-spacing: 0.2em;
  margin: 1rem 0 2rem;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--cream-dark);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
  opacity: 0.9;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--gold);
  font-size: 1.2rem;
}

.hero-divider::before,
.hero-divider::after {
  content: '';
  height: 1px;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.hero-divider::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

/* Smaller hero for inner pages */
.hero-inner {
  min-height: 50vh;
}

.hero-inner .hero-bg {
  background-size: cover;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--saffron-light), var(--saffron));
  box-shadow: 0 6px 30px rgba(255, 107, 0, 0.6);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-bright);
  border: 2px solid var(--gold);
  box-shadow: inset 0 0 0 0 var(--gold);
}

.btn-secondary:hover {
  background: rgba(212, 160, 23, 0.15);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* === SECTION STYLING === */
.section {
  position: relative;
  padding: 5rem 2rem;
  z-index: 1;
}

.section-alt {
  background: rgba(26, 10, 0, 0.5);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--saffron-light);
  margin-bottom: 0.75rem;
  padding: 0.3rem 1rem;
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 2px;
}

.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--gold-bright);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem auto 1.5rem;
  color: var(--gold);
}

.section-divider::before,
.section-divider::after {
  content: '';
  height: 1px;
  width: 60px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.section-divider::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

.section-intro {
  font-size: 1.05rem;
  color: var(--cream-dark);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  opacity: 0.85;
}

/* === CARDS === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: 8px;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to right, var(--saffron), var(--gold));
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(212, 160, 23, 0.4);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.card:hover::before { opacity: 1; }

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 0 10px rgba(212, 160, 23, 0.5));
}

.card-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card p {
  font-size: 0.92rem;
  color: var(--cream-dark);
  opacity: 0.85;
  line-height: 1.8;
}

/* === QUICK FACTS === */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.fact-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(212, 160, 23, 0.06);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 6px;
  transition: var(--transition);
}

.fact-item:hover {
  background: rgba(212, 160, 23, 0.12);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.fact-number {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-bright);
  text-shadow: var(--glow-gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.fact-label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron-light);
}

/* === CONTENT SECTIONS === */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }

.content-text h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.content-text h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--saffron-light);
  margin: 1.5rem 0 0.5rem;
}

.content-text p {
  color: var(--cream-dark);
  line-height: 1.9;
  margin-bottom: 1rem;
  font-size: 0.97rem;
  opacity: 0.9;
}

.content-image {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.content-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(212, 160, 23, 0.2);
  transition: var(--transition);
}

.content-image:hover img {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

/* === IMAGE PLACEHOLDER === */
.img-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, rgba(128,0,0,0.3), rgba(212,160,23,0.15));
  border: 2px dashed rgba(212, 160, 23, 0.3);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-align: center;
}

.img-placeholder .img-icon { font-size: 3rem; opacity: 0.5; }

/* === TABLE STYLING === */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.styled-table th {
  background: rgba(212, 160, 23, 0.2);
  color: var(--gold-bright);
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.2rem;
  text-align: left;
  border: 1px solid rgba(212, 160, 23, 0.2);
}

.styled-table td {
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(212, 160, 23, 0.1);
  color: var(--cream-dark);
  font-size: 0.93rem;
  line-height: 1.6;
}

.styled-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.styled-table tr:hover td {
  background: rgba(212, 160, 23, 0.05);
}

/* === HIGHLIGHT BOX === */
.highlight-box {
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.highlight-box h3 {
  font-family: 'Cinzel', serif;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.highlight-box p {
  color: var(--cream-dark);
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.9;
}

/* === DEVOTEE QUOTE === */
.quote-section {
  background: linear-gradient(135deg, rgba(128,0,0,0.3), rgba(92,0,0,0.4));
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '❝';
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 8rem;
  color: rgba(212, 160, 23, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.9;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

cite {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  color: var(--saffron-light);
  letter-spacing: 0.1em;
  font-style: normal;
}

/* === GALLERY GRID === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(212, 160, 23, 0.15);
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 1.5rem 1rem 1rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { transform: translateY(0); }

.gallery-overlay p {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

/* === FAQ === */
.faq-list { margin-top: 2rem; }

.faq-item {
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: 6px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: rgba(212, 160, 23, 0.35); }

.faq-question {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: none;
  cursor: pointer;
  padding: 1.1rem 1.5rem;
  text-align: left;
  color: var(--cream);
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(212, 160, 23, 0.08);
  color: var(--gold-light);
}

.faq-question.active {
  background: rgba(212, 160, 23, 0.12);
  color: var(--gold-bright);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.2rem;
  color: var(--cream-dark);
  font-size: 0.93rem;
  line-height: 1.9;
  opacity: 0.85;
  border-top: 1px solid rgba(212, 160, 23, 0.1);
  padding-top: 1rem;
}

/* === CONTACT FORM === */
.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 8px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 4px;
  padding: 0.8rem 1rem;
  color: var(--cream);
  font-family: 'Noto Serif', serif;
  font-size: 0.93rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(212, 160, 23, 0.05);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* === INFO BOXES === */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.info-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: 8px;
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
}

.info-box:hover {
  border-color: rgba(212, 160, 23, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.info-box-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.info-box h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-box p {
  font-size: 0.88rem;
  color: var(--cream-dark);
  opacity: 0.8;
  line-height: 1.7;
}

/* === LIST STYLES === */
.styled-list {
  list-style: none;
  margin: 1rem 0;
}

.styled-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--cream-dark);
  font-size: 0.93rem;
  line-height: 1.7;
  border-bottom: 1px solid rgba(212, 160, 23, 0.07);
}

.styled-list li::before {
  content: '🪷';
  position: absolute;
  left: 0;
  top: 0.5rem;
  font-size: 0.8rem;
}

/* === NOTICE BADGE === */
.notice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 4px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  color: var(--saffron-light);
  margin-bottom: 2rem;
}

/* === TIMING CARDS === */
.timing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.timing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.timing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0; height: 3px;
  background: linear-gradient(to right, var(--maroon), var(--gold), var(--saffron));
}

.timing-card .time {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold-bright);
  text-shadow: var(--glow-gold);
  line-height: 1.2;
  margin: 0.5rem 0;
}

.timing-card .label {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--saffron-light);
  margin-bottom: 0.25rem;
}

.timing-card .desc {
  font-size: 0.82rem;
  color: var(--cream-dark);
  opacity: 0.75;
}

/* === ROUTE CARD === */
.route-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.route-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.route-card p {
  font-size: 0.9rem;
  color: var(--cream-dark);
  line-height: 1.8;
  opacity: 0.85;
}

/* === MAP PLACEHOLDER === */
.map-placeholder {
  width: 100%;
  height: 400px;
  background: rgba(26, 10, 0, 0.8);
  border: 2px solid rgba(212, 160, 23, 0.2);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  text-align: center;
}

.map-placeholder .map-icon { font-size: 4rem; opacity: 0.5; }

/* === FESTIVAL CARD === */
.festival-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.festival-item::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 150px; height: 150px;
  background: radial-gradient(ellipse, rgba(212, 160, 23, 0.06), transparent);
  border-radius: 50%;
}

.festival-item:hover {
  border-color: rgba(212, 160, 23, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.festival-item h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.festival-item .festival-meta {
  font-size: 0.8rem;
  color: var(--saffron-light);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  font-family: 'Cinzel', serif;
}

.festival-item p {
  font-size: 0.93rem;
  color: var(--cream-dark);
  line-height: 1.9;
  opacity: 0.85;
}

/* === BREADCRUMB === */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  color: var(--saffron-light);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--gold-light);
}

.breadcrumb a:hover { color: var(--gold-bright); }

.breadcrumb span { color: rgba(212, 160, 23, 0.4); }

/* === FOOTER === */
footer {
  background: rgba(5, 2, 0, 0.95);
  border-top: 1px solid rgba(212, 160, 23, 0.2);
  padding: 4rem 2rem 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .om {
  font-size: 2.5rem;
  color: var(--gold-bright);
  text-shadow: var(--glow-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.footer-brand h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.9rem;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--cream-dark);
  opacity: 0.7;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--cream-dark);
  opacity: 0.7;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
  opacity: 1;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(212, 160, 23, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--cream-dark);
  opacity: 0.5;
}

.footer-bottom .jai-mata {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(212, 160, 23, 0.3); }
  50% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.9), 0 0 70px rgba(212, 160, 23, 0.5), 0 0 100px rgba(255, 107, 0, 0.2); }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === UTILITY === */
.text-gold { color: var(--gold-bright); }
.text-saffron { color: var(--saffron-light); }
.text-cream { color: var(--cream); }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }

.gold-divider {
  text-align: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin: 2rem 0;
  letter-spacing: 0.5em;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--saffron-light);
  font-family: 'Cinzel', serif;
  letter-spacing: 0.05em;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .content-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-block.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 70px; left: 0;
    width: 100%;
    background: rgba(13, 5, 0, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
  }

  .nav-menu.open { display: flex; }

  .nav-menu a {
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    border: 1px solid transparent;
  }

  .nav-toggle { display: flex; }

  .hero h1 { font-size: 1.8rem; }
  .hero-om { font-size: 2.5rem; }

  .section { padding: 3.5rem 1.25rem; }

  .form-row { grid-template-columns: 1fr; }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .timing-grid { grid-template-columns: repeat(2, 1fr); }

  .content-image img { height: 250px; }
}

@media (max-width: 480px) {
  .hero-desc { font-size: 0.92rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.78rem; }
  .timing-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Hero Small (inner pages) ── */
.hero-sm {
  min-height: 55vh;
  padding: 8rem 1.5rem 5rem;
}
.hero-sm .hero-om { font-size: 2.8rem; }
.hero-sm h1 { font-size: clamp(1.8rem, 4.5vw, 3rem); }
