/* ==========================================================================
   VENUE DEKHO (venuedekhoo.in) - Official Luxury Warm Cream & Navy Stylesheet
   Mobile-First Responsive Layouts, Fluid Typography & Touch-Friendly UI
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;0,900;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  /* Warm Cream & Sand Theme */
  --bg-page: #F7F3EB;
  --bg-page-alt: #EFE8DC;
  --bg-card: #FFFFFF;
  
  --border-card: #E5DFD5;
  --border-subtle: #EBE5DB;
  
  --navy-dark: #0D1B2A;
  --navy-hover: #16283D;
  --navy-banner: #0B1726;
  
  --gold-primary: #C59A27;
  --gold-bright: #D4AF37;
  --gold-light: #F5E5BA;
  
  --blush: #E9C8B7;
  --sand-pill: #F2ECE1;
  
  --text-dark: #0D1B2A;
  --text-muted: #66707A;
  --text-subtle: #8E98A4;
  --text-white: #FFFFFF;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', 'Montserrat', system-ui, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 22px;
  --radius-full: 9999px;
  
  --shadow-card: 0 4px 20px rgba(13, 27, 42, 0.04);
  --shadow-hover: 0 10px 28px rgba(13, 27, 42, 0.08);
  --shadow-banner: 0 14px 36px rgba(11, 23, 38, 0.16);
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

button, input, select, textarea {
  font-family: inherit;
}

/* Typography */
.font-serif { font-family: var(--font-serif); }
.font-sans { font-family: var(--font-sans); }
.text-gold { color: var(--gold-primary); }
.text-muted { color: var(--text-muted); }

.eyebrow-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
  display: block;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow {
  max-width: 860px;
}

/* Header Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 243, 235, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-card);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-monogram-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-dark);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
}

/* Pill Buttons */
.btn-pill-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background-color: var(--navy-dark);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--navy-dark);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(13, 27, 42, 0.12);
  white-space: nowrap;
  min-height: 44px;
}

.btn-pill-navy:hover {
  background-color: var(--navy-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(13, 27, 42, 0.2);
}

.btn-pill-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background-color: #ffffff;
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-card);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  min-height: 44px;
}

.btn-pill-white:hover {
  background-color: #FAF8F5;
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px);
}

.btn-pill-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: #D4AF37;
  color: var(--navy-dark);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  min-height: 44px;
}

.btn-pill-gold:hover {
  background: #E5C358;
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--navy-dark);
  cursor: pointer;
  padding: 0.4rem;
  min-width: 44px;
  min-height: 44px;
  line-height: 1;
}

/* Hero Section */
.hero-wrapper {
  padding: 3.5rem 0 2.5rem;
  background-color: var(--bg-page);
}

.hero-main-title {
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy-dark);
  margin-bottom: 0.85rem;
}

.hero-description {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.hero-button-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* Sections */
.content-section {
  padding: 3rem 0;
}

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.section-title-large {
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: -0.02em;
}

.section-side-note {
  font-size: 0.82rem;
  color: var(--text-subtle);
  max-width: 420px;
  line-height: 1.45;
  text-align: right;
}

/* Style Cards Grid */
.style-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.style-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.style-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-hover);
}

.style-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.style-card-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.style-card-link {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--navy-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.style-card:hover .style-card-link {
  color: var(--gold-primary);
}

/* Featured Venue Cards Grid */
.featured-venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.venue-card-clean {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.venue-card-clean:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-hover);
}

.venue-media-holder {
  position: relative;
  height: 210px;
  overflow: hidden;
  background-color: #E2DBD0;
}

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

.venue-card-clean:hover .venue-media-img {
  transform: scale(1.06);
}

.venue-tag-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.venue-ai-fit-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold-bright);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

.venue-card-body {
  padding: 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.venue-locality {
  font-size: 0.74rem;
  color: var(--gold-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.venue-title-clean {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}

.venue-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.meta-chip {
  background: var(--sand-pill);
  color: var(--navy-dark);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.65rem;
  font-size: 0.74rem;
  font-weight: 600;
}

.venue-bottom-action {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.view-venue-link {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--navy-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.view-venue-link:hover {
  color: var(--gold-primary);
}

/* Planning Context Section */
.planning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.planning-step-col {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-card);
}

.planning-step-col h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.45rem;
}

.planning-step-col p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Deep Navy Tailored Quote Banner */
.cta-navy-card {
  background: var(--navy-banner);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.8rem;
  box-shadow: var(--shadow-banner);
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.cta-navy-eyebrow {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
  display: block;
}

.cta-navy-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}

/* Interactive Search / Filter Bar */
.search-bar-clean {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-card);
  margin-bottom: 2rem;
}

.search-grid-clean {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0.85rem;
  align-items: flex-end;
}

.search-field-clean label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy-dark);
  margin-bottom: 0.35rem;
}

.search-field-clean select,
.search-field-clean input,
.search-field-clean textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  background: var(--sand-pill);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-dark);
  outline: none;
  transition: var(--transition);
  min-height: 44px;
}

.search-field-clean select:focus,
.search-field-clean input:focus,
.search-field-clean textarea:focus {
  border-color: var(--gold-primary);
  background: #ffffff;
}

/* Interactive Estimator */
.estimator-clean-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-card);
}

.estimator-inner-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}

/* Clean Footer */
.site-footer-clean {
  background: #ffffff;
  border-top: 1px solid var(--border-card);
  padding: 3rem 0 2rem;
  margin-top: 2rem;
}

.footer-inner-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-sub-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Floating Compare Dock */
.compare-dock {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 999;
  background: var(--navy-banner);
  color: #ffffff;
  border-radius: var(--radius-full);
  padding: 0.65rem 1.4rem;
  box-shadow: 0 14px 40px rgba(11, 23, 38, 0.4);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 90vw;
}

.compare-dock.visible {
  transform: translateX(-50%) translateY(0);
}

.compare-chips {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  overflow-x: auto;
}

.compare-chip {
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.65rem;
  font-size: 0.74rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.compare-chip .remove-chip {
  cursor: pointer;
  color: var(--gold-bright);
}

/* Modal Popup */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 42, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-backdrop.active {
  display: flex;
}

.modal-dialog {
  background: #ffffff;
  color: var(--navy-dark);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  padding: 1.8rem;
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--sand-pill);
  border: 1px solid var(--border-card);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
}

/* Toast */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 90vw;
}

.toast {
  background: var(--navy-dark);
  color: #ffffff;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  font-size: 0.84rem;
  font-weight: 600;
}

/* ==========================================================================
   Mobile-First Responsive Adjustments (Phones & Tablets)
   ========================================================================== */

@media (max-width: 992px) {
  .style-cards-grid, .featured-venues-grid, .planning-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .search-grid-clean {
    grid-template-columns: repeat(2, 1fr);
  }
  .search-grid-clean button {
    grid-column: 1 / -1;
  }
  .estimator-inner-grid {
    grid-template-columns: 1fr;
  }
  .section-side-note {
    text-align: left;
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation Drawer */
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: #F7F3EB;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 1.4rem;
    border-bottom: 1px solid var(--border-card);
    z-index: 999;
    overflow-y: auto;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  }
  
  .nav-links.mobile-open {
    display: flex;
  }

  .nav-link {
    font-size: 1.15rem;
    width: 100%;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Typography & Spacing on Mobile */
  .hero-wrapper {
    padding: 2.5rem 0 1.8rem;
  }

  .hero-main-title {
    font-size: 2.25rem;
    line-height: 1.15;
  }

  .hero-button-row {
    flex-direction: column;
    width: 100%;
  }

  .hero-button-row a {
    width: 100%;
    text-align: center;
  }

  .style-cards-grid, .featured-venues-grid, .planning-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .venue-media-holder {
    height: 190px;
  }

  .search-bar-clean {
    padding: 1.1rem 1rem;
  }

  .search-grid-clean {
    grid-template-columns: 1fr;
  }

  .cta-navy-card {
    padding: 1.8rem 1.4rem;
    flex-direction: column;
    text-align: center;
  }

  .cta-navy-card a {
    width: 100%;
    text-align: center;
  }

  .estimator-clean-card {
    padding: 1.4rem 1.1rem;
  }

  .footer-inner-row, .footer-sub-row {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .compare-dock {
    width: 94%;
    flex-direction: column;
    padding: 0.8rem 1rem;
    gap: 0.6rem;
    border-radius: var(--radius-lg);
  }

  .modal-dialog {
    padding: 1.4rem 1.1rem;
    max-height: 85vh;
  }
}
