/* =============================================
   NIHARIKA BHAWAN - MAIN STYLESHEET
   Aesthetic: Refined Spiritual Luxury
   Fonts: Cormorant Garamond + Jost
============================================= */

:root {
  --saffron: #C8610A;
  --saffron-light: #E8832A;
  --gold: #B8923A;
  --cream: #FDF8F2;
  --warm-white: #FFFBF5;
  --dark: #1A1208;
  --text: #3D2E1A;
  --text-muted: #7A6A55;
  --border: #E8DCC8;
  --green-wa: #25D366;
  --shadow: 0 4px 32px rgba(26,18,8,0.10);
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.4rem; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 10px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 12px auto 0;
  text-align: center;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--saffron);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--saffron-light); transform: translateY(-1px); }
.btn-primary.large { padding: 18px 48px; font-size: 1.05rem; }

.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-wa);
  color: #fff;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.btn-whatsapp:hover { background: #1ebe5c; }

.btn-room {
  display: inline-block;
  background: var(--saffron);
  color: #fff;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s;
  margin-top: 12px;
}
.btn-room:hover { background: var(--saffron-light); }

.btn-link {
  display: inline-block;
  color: var(--saffron);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--saffron);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.btn-link:hover { opacity: 0.75; }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(26,18,8,0.07);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.logo { display: flex; flex-direction: column; gap: 1px; }
.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--dark);
  line-height: 1;
}
.logo-sub {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--saffron);
  font-weight: 500;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  padding-bottom: 2px;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--saffron);
  border-bottom: 2px solid var(--saffron);
}
.nav-cta { margin-left: 16px; }
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
  margin-left: auto;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 14px;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}
.mobile-menu.open { display: flex; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1208 0%, #3D2508 40%, #7A3E10 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%23C8610A' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 60px 24px 60px 7vw;
}
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron-light);
  font-weight: 600;
  margin-bottom: 16px;
}
.hero-content h1 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge {
  position: absolute;
  bottom: 48px;
  right: 7vw;
  z-index: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 20px 28px;
  text-align: center;
  color: #fff;
}
.hero-badge span { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700; line-height: 1; color: var(--saffron-light); }
.hero-badge small { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }

/* ---- TRUST STRIP ---- */
.trust-strip {
  background: var(--saffron);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.trust-item:last-child { border-right: none; }
.ti-icon { opacity: 0.7; font-size: 0.7rem; }

/* ---- ABOUT SNIPPET ---- */
.about-snippet {
  padding: 90px 0;
  background: var(--cream);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.col-text h2 { margin-bottom: 16px; }
.col-text p { color: var(--text-muted); margin-bottom: 14px; font-size: 1rem; }
.col-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-box {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- ROOMS ---- */
.rooms {
  padding: 90px 0;
  background: var(--warm-white);
  text-align: center;
}
.rooms h2 { margin-bottom: 6px; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}
.room-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.room-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.room-card.featured {
  border-color: var(--saffron);
  background: #fff;
  box-shadow: 0 4px 24px rgba(200,97,10,0.12);
}
.room-badge-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--saffron);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.room-icon { font-size: 1.8rem; margin-bottom: 14px; }
.room-card h3 { margin-bottom: 10px; font-size: 1.3rem; }
.room-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 12px; }
.room-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--saffron);
}
.room-price span { font-size: 1rem; color: var(--text-muted); font-family: 'Jost', sans-serif; font-weight: 400; }
.rooms-note {
  margin-top: 28px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

/* ---- AMENITIES ---- */
.amenities {
  padding: 80px 0;
  background: var(--cream);
  text-align: center;
}
.amenities h2 { margin-bottom: 40px; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 0;
}
.amenity-item {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
}
.a-icon { font-size: 1.8rem; margin-bottom: 10px; }
.amenity-item span { font-size: 0.85rem; font-weight: 500; color: var(--text); }

/* ---- SERVICES ---- */
.services {
  padding: 90px 0;
  background: var(--warm-white);
  text-align: center;
}
.services h2 { margin-bottom: 6px; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
  text-align: left;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: var(--shadow); }
.service-icon { font-size: 2.2rem; margin-bottom: 14px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 12px; }
.service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--saffron);
}
.service-price span { font-size: 1rem; color: var(--text-muted); font-family: 'Jost', sans-serif; font-weight: 400; }
.services-disclaimer {
  margin-top: 32px;
  background: #FFF8EE;
  border: 1px solid #F0D8B0;
  border-radius: 10px;
  padding: 18px 24px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: left;
  line-height: 1.6;
}

/* ---- LOCATION ---- */
.location-section {
  padding: 90px 0;
  background: var(--cream);
}
.location-section h2 { margin-bottom: 16px; }
.location-section p { color: var(--text-muted); margin-bottom: 14px; }
.contact-quick { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 20px; }
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--saffron);
  font-size: 0.95rem;
  border-bottom: 2px solid var(--saffron);
  padding-bottom: 2px;
}
.contact-link:hover { opacity: 0.75; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, #1A1208, #3D2508);
  padding: 80px 24px;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 32px; font-size: 1.05rem; }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer-col p { font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron-light);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  margin-bottom: 8px;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1160px;
  margin: 0 auto;
}
.footer-bottom a { color: rgba(255,255,255,0.5); margin: 0 4px; }
.footer-bottom a:hover { color: #fff; }

/* ---- FLOATING WA ---- */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  background: var(--green-wa);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.2s;
}
.float-wa:hover { transform: scale(1.1); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, #1A1208, #3D2508);
  padding: 72px 24px 60px;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; }

/* ---- POLICY PAGES ---- */
.policy-section {
  padding: 72px 0;
  background: var(--warm-white);
}
.policy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
.policy-content h2 {
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--dark);
}
.policy-content h3 {
  font-size: 1.15rem;
  margin-top: 24px;
  margin-bottom: 8px;
}
.policy-content p, .policy-content li {
  color: var(--text-muted);
  font-size: 0.97rem;
  margin-bottom: 12px;
}
.policy-content ul { padding-left: 20px; margin-bottom: 14px; }
.policy-content li { margin-bottom: 6px; }
.policy-last-updated {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

/* ---- ABOUT PAGE ---- */
.about-section { padding: 80px 0; background: var(--warm-white); }
.about-section .two-col { gap: 56px; }
.about-section h2 { margin-bottom: 16px; }
.about-section p { color: var(--text-muted); margin-bottom: 14px; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.value-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 18px;
}
.value-box h4 { font-size: 1rem; margin-bottom: 6px; }
.value-box p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ---- CONTACT PAGE ---- */
.contact-section { padding: 80px 0; background: var(--warm-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); margin-bottom: 20px; }
.info-block { margin-bottom: 28px; }
.info-block h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--saffron);
  font-family: 'Jost', sans-serif;
  margin-bottom: 6px;
}
.info-block p, .info-block a {
  color: var(--text);
  font-size: 1rem;
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
}
.contact-cta-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
}
.contact-cta-box h3 { margin-bottom: 12px; }
.contact-cta-box p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem; }

/* ---- GALLERY ---- */
.gallery-section { padding: 72px 0; background: var(--warm-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.gallery-placeholder {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.gallery-placeholder span { font-size: 2rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .two-col, .contact-grid, .services-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-badge { display: none; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .col-stats { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 48px 24px; }
  .trust-strip { flex-direction: column; align-items: flex-start; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
