/* =============================================
   THE NIGAM VATIKA — Main Stylesheet
   ============================================= */

:root {
  --maroon: #4a1818;
  --maroon-dark: #320f0f;
  --maroon-light: #7a2e2e;
  --gold: #c9a84c;
  --gold-light: #e8cc7a;
  --cream: #fdf6ec;
  --cream-dark: #f5e8d0;
  --text: #2a1a1a;
  --text-light: #6b4c4c;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

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

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(74, 24, 24, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-n {
  width: 38px; height: 38px;
  background: var(--gold);
  color: var(--maroon-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--white);
  line-height: 1.3;
}

.logo-text small {
  font-size: 11px;
  color: var(--gold-light);
  font-style: italic;
}

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

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold-light); }

.btn-book {
  background: var(--gold) !important;
  color: var(--maroon-dark) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background 0.2s !important;
}

.btn-book:hover { background: var(--gold-light) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--maroon-dark);
  padding: 16px 24px;
  gap: 14px;
}

.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}

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

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 50%, #6b2020 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  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='%23c9a84c' fill-opacity='0.04'%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");
  opacity: 0.4;
}

.hero-content { position: relative; max-width: 720px; }

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-light);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 20px;
}

.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary {
  background: var(--gold);
  color: var(--maroon-dark);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 400;
  font-size: 15px;
  transition: border-color 0.2s;
}

.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =============================================
   TICKER
   ============================================= */
.ticker-wrap {
  background: var(--maroon);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(201,168,76,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.3);
}

.ticker {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  gap: 32px;
}

.ticker span {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 14px;
  padding-right: 32px;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 80px 0; }

.section-tag {
  text-align: center;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: var(--font-serif);
}

.section h2 {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--maroon-dark);
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--text-light);
  font-style: italic;
  font-size: 15px;
  margin-bottom: 48px;
}

/* =============================================
   OCCASIONS GRID
   ============================================= */
.occasions { background: var(--cream); }

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.occasion-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.occasion-card:hover {
  box-shadow: 0 8px 32px rgba(74,24,24,0.1);
  transform: translateY(-2px);
}

.occasion-icon {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 12px;
  font-style: italic;
}

.occasion-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--maroon-dark);
  margin-bottom: 8px;
}

.occasion-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* =============================================
   ESTATE
   ============================================= */
.estate { background: var(--maroon-dark); }

.estate h2 { color: var(--white); }

.estate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.estate-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 36px 28px;
  transition: background 0.2s;
}

.estate-card:hover { background: rgba(255,255,255,0.08); }

.estate-label {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.estate-type {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin-bottom: 10px;
}

.estate-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 10px;
}

.estate-card p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.link-arrow {
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  transition: letter-spacing 0.2s;
}

.link-arrow:hover { letter-spacing: 1px; }

/* =============================================
   FEATURES
   ============================================= */
.features { background: var(--cream-dark); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.feature {
  text-align: center;
  padding: 32px 24px;
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.feature h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--maroon-dark);
  margin-bottom: 10px;
}

.feature p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* =============================================
   CTA
   ============================================= */
.cta-section { background: var(--maroon); }

.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }

.cta-section h2 { color: var(--white); margin-bottom: 12px; }

.cta-section p { color: rgba(255,255,255,0.7); margin-bottom: 32px; }

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.address {
  color: rgba(255,255,255,0.55) !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--maroon-dark);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-serif);
}

.footer-col p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-col a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

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

.footer-bottom {
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 13px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .hero { padding: 100px 20px 60px; }
  .hero h1 { font-size: 32px; }
  .hero-stats { gap: 24px; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .occasions-grid,
  .estate-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
}
