/* ===== CSS VARIABLES ===== */
:root {
  --maroon: #6B0F1A;
  --deep-maroon: #450A10;
  --gold: #C9942A;
  --gold-light: #E8BE72;
  --cream: #FDF6EC;
  --off-white: #FAF3E8;
  --text-dark: #1A0A05;
  --text-mid: #4A2C1A;
  --text-light: #8A6850;
  --white: #ffffff;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
}
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(107, 15, 26, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,148,42,0.3);
  transition: all 0.3s;
}
.navbar.scrolled { background: rgba(69, 10, 16, 0.98); box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 0.75rem; color: var(--white); }
.brand-logo { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; background: var(--white); padding: 0.2rem; }
.brand-main { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; letter-spacing: 0.05em; }
.brand-sub { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); }
.nav-links { display: flex; gap: 1.8rem; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.hamburger { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: url('https://images.pexels.com/photos/1536619/pexels-photo-1536619.jpeg?auto=compress&cs=tinysrgb&w=1400') center/cover no-repeat;
  text-align: center; overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(69,10,16,0.88) 0%, rgba(107,15,26,0.75) 50%, rgba(30,5,8,0.92) 100%);
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}
.hero-content { position: relative; z-index: 2; padding: 2rem; max-width: 800px; }
.hero-tag {
  display: inline-block; background: rgba(201,148,42,0.2); border: 1px solid var(--gold);
  color: var(--gold-light); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.4rem 1.2rem; border-radius: 50px; margin-bottom: 1.5rem;
  animation: fadeDown 0.8s ease forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white); line-height: 1.1; margin-bottom: 1.2rem;
  animation: fadeDown 0.8s 0.2s ease both;
}
.hero-title .devanagari {
  font-family: 'Noto Serif Devanagari', serif;
  color: var(--gold-light); display: block; font-size: 0.6em;
}
.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.8);
  max-width: 500px; margin: 0 auto 2.5rem;
  font-weight: 300; letter-spacing: 0.02em;
  animation: fadeDown 0.8s 0.4s ease both;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeDown 0.8s 0.6s ease both; }
.btn-primary {
  background: var(--gold); color: var(--deep-maroon);
  padding: 0.85rem 2.2rem; border-radius: 4px;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(201,148,42,0.4);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,148,42,0.5); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.6); color: var(--white);
  padding: 0.85rem 2.2rem; border-radius: 4px;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 1.5rem;
  animation: bounce 2s infinite;
}

/* ===== SECTIONS ===== */
.section { padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--deep-maroon); margin-bottom: 1rem; line-height: 1.2;
}
.section-title.left { text-align: left; }
.section-title em { font-style: italic; color: var(--maroon); }
.section-desc { color: var(--text-light); max-width: 500px; margin: 0 auto 3rem; text-align: center; }
.section { text-align: center; }

/* ===== GALLERY ===== */
.gallery-section { padding-bottom: 7rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-auto-rows: minmax(240px, auto);
  gap: 1rem;
}
.gallery-card { position: relative; overflow: hidden; border-radius: 12px; min-height: 260px; }
.gallery-card.featured { grid-row: span 3; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-card:hover img { transform: scale(1.08); }
.gallery-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(69,10,16,0.85));
  padding: 1.5rem 1rem 0.8rem;
  color: var(--gold-light); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
}

/* ===== ABOUT ===== */
.about-section { max-width: 1200px; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; text-align: left; }
.about-image-wrap { position: relative; }
.about-image-bg {
  position: absolute; top: 2rem; left: -2rem; right: 2rem; bottom: -2rem;
  background: var(--gold); opacity: 0.15; border-radius: 8px; z-index: 0;
}
.about-img { border-radius: 8px; height: 480px; position: relative; z-index: 1; box-shadow: 0 20px 60px rgba(107,15,26,0.25); }
.about-badge {
  position: absolute; bottom: 2rem; right: -1.5rem; z-index: 2;
  background: var(--maroon); color: var(--gold-light);
  padding: 0.75rem 1.5rem; border-radius: 4px;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  box-shadow: 0 8px 30px rgba(107,15,26,0.3);
}
.about-text p { color: var(--text-mid); margin-bottom: 1.2rem; font-size: 1rem; }
.about-text p strong { color: var(--maroon); }
.about-stats { display: flex; gap: 2rem; margin-top: 2rem; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--maroon); font-weight: 700; line-height: 1; }
.stat span:last-child { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-top: 0.2rem; }

/* ===== CONTACT ===== */
.contact-section {
  background: linear-gradient(135deg, var(--deep-maroon) 0%, var(--maroon) 60%, #8B1A2A 100%);
  max-width: 100%; padding: 6rem 2rem; position: relative; overflow: hidden;
}
.contact-bg-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(0deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 40px),
    repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 40px);
}
.contact-grid {
  max-width: 1100px; margin: 3rem auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  position: relative; z-index: 1;
}
.contact-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(201,148,42,0.25);
  border-radius: 8px; padding: 2.5rem 2rem; text-align: center;
  backdrop-filter: blur(4px); transition: transform 0.3s, background 0.3s;
}
.contact-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.1); }
.contact-icon { font-size: 2rem; margin-bottom: 1rem; }
.contact-card h3 { font-family: 'Playfair Display', serif; color: var(--gold-light); margin-bottom: 1rem; font-size: 1.2rem; }
.contact-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.8; }
.contact-card a { color: var(--gold-light); text-decoration: underline; word-break: break-all; }

/* ===== FOOTER ===== */
.footer { background: var(--text-dark); color: rgba(255,255,255,0.7); padding: 3rem 2rem 1.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.footer-brand .brand-main { color: var(--white); }
.footer-brand .brand-sub { color: rgba(255,255,255,0.5); }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; margin-bottom: 2rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; }
.footer-bottom p { font-size: 0.78rem; margin-bottom: 0.3rem; color: rgba(255,255,255,0.45); }

/* ===== ANIMATIONS ===== */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .gallery-card.featured { grid-row: span 1; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-bg, .about-badge { display: none; }
  .about-img { height: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--deep-maroon); padding: 2rem; gap: 1.5rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .about-stats { flex-wrap: wrap; gap: 1.5rem; }
}

/* ===== POLICY PAGES ===== */
.policy-hero {
  background: linear-gradient(135deg, var(--deep-maroon), var(--maroon));
  padding: 8rem 2rem 4rem;
  text-align: center;
  color: var(--white);
}
.policy-hero h1 { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--gold-light); margin-bottom: 0.5rem; }
.policy-hero p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.policy-body { max-width: 860px; margin: 4rem auto; padding: 0 2rem 6rem; }
.policy-body h2 { font-family: 'Playfair Display', serif; color: var(--maroon); margin: 2.5rem 0 0.8rem; font-size: 1.4rem; }
.policy-body p, .policy-body li { color: var(--text-mid); margin-bottom: 1rem; line-height: 1.85; }
.policy-body ul { margin-left: 1.5rem; margin-bottom: 1rem; }
.policy-body strong { color: var(--deep-maroon); }
.policy-divider { border: none; border-top: 1px solid rgba(107,15,26,0.15); margin: 2rem 0; }
