/* ============================================================
   Rajdhani Tent House — style.css (shared across all pages)
   ============================================================ */

:root {
  --gold:       #C8922A;
  --gold-light: #F0C060;
  --deep:       #1A0A00;
  --maroon:     #7B1C1C;
  --cream:      #FDF6EC;
  --card-bg:    #FFFFFF;
  --border:     #E8D9C0;
  --text:       #2C1A0A;
  --muted:      #7A6450;
  --whatsapp:   #25D366;
  --call:       #2563EB;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
}

/* ─── NAVBAR ─── */
.navbar {
  background: var(--deep);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(200,146,42,0.2);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.nav-logo-text { color: #fff; font-size: 16px; font-weight: 700; line-height: 1.1; }
.nav-logo-sub  { color: var(--gold); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  color: #b0987c;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover   { color: var(--gold-light); }
.nav-link.active  { color: var(--gold-light); border-bottom-color: var(--gold); border-radius: 0; }
.nav-cta {
  margin-left: 8px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 8px;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.88; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #b0987c;
  border-radius: 2px;
  transition: all 0.2s;
}
.mobile-menu {
  display: none;
  background: var(--deep);
  border-top: 1px solid rgba(200,146,42,0.15);
  padding: 12px 24px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: #b0987c;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold-light); }
.mobile-menu .mobile-cta {
  display: block;
  text-align: center;
  margin-top: 14px;
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
}

/* ─── PAGE HERO (shared) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--deep) 0%, #3B1A00 60%, var(--maroon) 100%);
  color: #fff;
  text-align: center;
  padding: 56px 24px 48px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 18px,
    rgba(200,146,42,0.07) 18px, rgba(200,146,42,0.07) 36px
  );
}
.page-hero-inner { position: relative; z-index: 1; }
.brand-badge {
  display: inline-block;
  border: 2px solid var(--gold);
  border-radius: 2px;
  padding: 4px 18px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 12px;
}
.page-hero h1 span { color: var(--gold-light); }
.page-hero p {
  font-size: 1rem;
  color: #d4bfa0;
  max-width: 500px;
  margin-inline: auto;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}
.btn-hero-wa, .btn-hero-call {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-hero-wa   { background: var(--whatsapp); color: #fff; }
.btn-hero-call { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.btn-hero-wa:hover, .btn-hero-call:hover { opacity: 0.88; }

/* ─── SECTION HEADING ─── */
.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--deep);
  white-space: nowrap;
}
.section-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.section-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s, transform 0.1s;
}
.btn:hover { opacity: 0.88; transform: scale(0.98); }
.btn-wa   { background: var(--whatsapp); color: #fff; }
.btn-call { background: var(--call); color: #fff; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-outline { background: none; border: 1.5px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ─── CARDS ─── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(26,10,0,0.12);
  transform: translateY(-3px);
}

/* ─── FOOTER ─── */
footer {
  background: var(--deep);
  color: #b0987c;
  padding: 48px 24px 28px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: #9a8060; max-width: 260px; }
.footer-col h4 { color: var(--gold); font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a {
  display: block;
  color: #9a8060;
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-contact-item { font-size: 0.85rem; color: #9a8060; margin-bottom: 8px; line-height: 1.5; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: #6a5040; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.social-btn:hover { opacity: 0.8; }
.s-wa { background: #25D366; }
.s-fb { background: #1877F2; }
.s-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }

/* ─── MODAL ─── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,10,0,0.6);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--card-bg);
  border-radius: 18px;
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  animation: popIn 0.22s ease;
}
@keyframes popIn {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.modal-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: #e8ddd0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;
}
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: 24px; }
.modal-body h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 6px; }
.modal-price { color: var(--maroon); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.modal-desc  { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.modal-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.spec-item   { background: var(--cream); border-radius: 8px; padding: 10px 12px; }
.spec-label  { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.spec-value  { font-size: 0.92rem; font-weight: 600; color: var(--text); margin-top: 2px; }
.modal-actions { display: flex; gap: 10px; }
.close-btn {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0,0,0,0.4);
  color: #fff; border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
}

/* ─── UTILITY ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 60px 0; }
.grid-2    { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .nav-hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .page-hero { padding: 40px 16px 36px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .modal-specs { grid-template-columns: 1fr; }
}
