/* =========================================================
   Lala Parma Shiv Lal Durga Sah Dharamshala
   styles.css
   ========================================================= */

/* =========================================================
   1. DESIGN TOKENS
   ========================================================= */

:root {
  --bg: #faf6ee;
  --fg: #3a352e;
  --sand: #f2ece0;
  --card: #fffdf8;
  --muted: #7a7368;
  --border: #e4ddcf;

  --primary: #2c5744;
  --primary-fg: #faf6ee;

  --secondary: #eee6d5;

  --accent: #e0a252;
  --accent-fg: #3a352e;

  --radius: 14px;
  --radius-lg: 22px;

  --shadow:
    0 1px 2px rgba(58, 53, 46, 0.05),
    0 12px 30px -18px rgba(58, 53, 46, 0.28);

  --scrim:
    linear-gradient(
      180deg,
      rgba(45, 40, 34, 0.15) 0%,
      rgba(45, 40, 34, 0.55) 55%,
      rgba(38, 34, 29, 0.82) 100%
    );

  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Manrope", system-ui, sans-serif;
}


/* =========================================================
   2. GLOBAL / RESET
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.015em;
}

p {
  margin: 0;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}


/* =========================================================
   3. LAYOUT
   ========================================================= */

.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}


/* =========================================================
   4. ACCESSIBILITY
   ========================================================= */

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 80;
  background: var(--primary);
  color: var(--primary-fg);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
}


/* =========================================================
   5. ICONS / TYPOGRAPHY UTILITIES
   ========================================================= */

.ico {
  width: 1rem;
  height: 1rem;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ico-lg {
  width: 1.4rem;
  height: 1.4rem;
}

.accent-ink {
  color: var(--primary);
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.875rem;
}

.label {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.link {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.strong {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}


/* =========================================================
   6. BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  padding: 0.8rem 1.5rem;

  border: 1px solid transparent;
  border-radius: 999px;

  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;

  cursor: pointer;

  transition:
    transform 0.2s,
    opacity 0.2s,
    background-color 0.2s;
}

.btn-sm {
  padding: 0.55rem 1rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-fg);
}

.btn-accent:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(44, 87, 68, 0.3);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--secondary);
}

.btn-soft {
  background: var(--secondary);
  border-color: rgba(44, 87, 68, 0.3);
  color: var(--primary);
}

.btn-ghost-light {
  border-color: rgba(250, 246, 238, 0.4);
  background: transparent;
  color: var(--primary-fg);
  backdrop-filter: blur(6px);
}

.btn-ghost-light:hover {
  background: rgba(250, 246, 238, 0.12);
}


/* =========================================================
   7. HEADER / NAVIGATION
   ========================================================= */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;

  border-bottom: 1px solid transparent;

  transition:
    background-color 0.3s,
    border-color 0.3s;
}

.site-header.scrolled {
  background: rgba(250, 246, 238, 0.95);
  border-bottom-color: var(--border);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;

  min-width: 0;

  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;

  width: 2.5rem;
  height: 2.5rem;

  border: 1px solid rgba(250, 246, 238, 0.4);
  border-radius: 999px;

  background: rgba(250, 246, 238, 0.12);
  color: var(--primary-fg);

  font-family: var(--font-display);
}

.scrolled .brand-mark {
  border-color: rgba(44, 87, 68, 0.25);
  background: var(--primary);
  color: var(--primary-fg);
}

.brand-text {
  min-width: 0;
}

.brand-name {
  display: block;

  overflow: hidden;

  color: var(--primary-fg);

  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;

  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-sub {
  display: block;

  color: rgba(250, 246, 238, 0.75);

  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.scrolled .brand-name {
  color: var(--fg);
}

.scrolled .brand-sub {
  color: var(--muted);
}

.nav-desktop {
  display: none;
  gap: 1.5rem;
}

.nav-desktop a {
  color: rgba(250, 246, 238, 0.85);
  font-size: 0.875rem;
  text-decoration: none;
}

.scrolled .nav-desktop a {
  color: var(--muted);
}

.scrolled .nav-desktop a:hover {
  color: var(--primary);
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-call {
  display: none;
}

@media (min-width: 640px) {
  .header-call {
    display: inline-flex;
  }
}

.menu-btn {
  display: grid;
  place-items: center;

  width: 2.5rem;
  height: 2.5rem;

  border: 1px solid rgba(250, 246, 238, 0.4);
  border-radius: 999px;

  background: transparent;
  color: var(--primary-fg);

  cursor: pointer;
}

.scrolled .menu-btn {
  border-color: var(--border);
  color: var(--fg);
}

@media (min-width: 1024px) {
  .menu-btn {
    display: none;
  }
}

.menu-btn .ico-close {
  display: none;
}

.menu-btn[aria-expanded="true"] .ico-menu {
  display: none;
}

.menu-btn[aria-expanded="true"] .ico-close {
  display: block;
}

.nav-mobile {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 0.5rem 1rem 1rem;
}

.nav-mobile ul {
  display: grid;
  gap: 0.25rem;

  margin: 0;
  padding: 0;

  list-style: none;
}

.nav-mobile a {
  display: block;

  padding: 0.5rem 0.75rem;

  border-radius: 10px;

  color: var(--fg);

  font-size: 0.9rem;
  text-decoration: none;
}

.nav-mobile a:hover {
  background: var(--secondary);
}


/* =========================================================
   8. HERO
   ========================================================= */

.hero {
  position: relative;
  isolation: isolate;

  display: flex;

  min-height: 92svh;

  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  z-index: -2;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;

  background-image: var(--scrim);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  width: 100%;
  min-height: 92svh;

  padding-top: 7rem;
  padding-bottom: 4rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  width: fit-content;

  padding: 0.35rem 1rem;

  border: 1px solid rgba(250, 246, 238, 0.3);
  border-radius: 999px;

  background: rgba(250, 246, 238, 0.12);
  color: var(--primary-fg);

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  backdrop-filter: blur(6px);
}

.hero-title {
  max-width: 48rem;
  margin-top: 1.5rem;

  color: var(--primary-fg);

  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 600;
  line-height: 1.05;
}

.hero-lede {
  max-width: 36rem;
  margin-top: 1.25rem;

  color: rgba(250, 246, 238, 0.88);

  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;

  margin-top: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;

  margin-top: 2.5rem;
  padding-top: 1.5rem;

  border-top: 1px solid rgba(250, 246, 238, 0.2);

  color: var(--primary-fg);

  font-size: 0.875rem;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-meta .dim {
  color: rgba(250, 246, 238, 0.75);
}

.stars {
  display: inline-flex;
  gap: 2px;
}

.stars svg {
  width: 1rem;
  height: 1rem;
}

.star-on {
  fill: var(--accent);
  color: var(--accent);
}

.star-off {
  fill: none;
  color: rgba(122, 115, 104, 0.5);
}

.stars-center {
  justify-content: center;
  margin-top: 0.75rem;
}


/* =========================================================
   9. SECTIONS
   ========================================================= */

.section {
  padding-block: 4.5rem;
}

.band-sand {
  background: var(--sand);
}

.band-green {
  background: var(--primary);
  color: var(--primary-fg);
}

.section-head {
  max-width: 42rem;
}

.eyebrow {
  color: var(--primary);

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-accent {
  color: var(--accent);
}

.section-head h2 {
  margin-top: 0.75rem;

  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 600;
}

.rule {
  display: block;

  width: 3rem;
  height: 3px;

  margin-top: 1.25rem;

  border-radius: 999px;

  background: var(--accent);
}

.intro {
  margin-top: 1.25rem;
  color: var(--muted);
}

.band-green .intro {
  color: rgba(250, 246, 238, 0.85);
}

.section-body {
  margin-top: 2.5rem;
}


/* =========================================================
   10. GRID SYSTEM
   ========================================================= */

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2,
.grid-3,
.grid-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* =========================================================
   11. CARDS
   ========================================================= */

.card {
  padding: 1.25rem;

  border: 1px solid var(--border);
  border-radius: var(--radius-lg);

  background: var(--card);
  box-shadow: var(--shadow);
}

.card-pad {
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .card-pad {
    padding: 2rem;
  }
}

.card .label {
  margin-top: 1rem;
}

.card .value {
  margin-top: 0.25rem;

  font-size: 0.9rem;
  font-weight: 500;
}

.quick-facts {
  padding-block: 2.5rem;
}

.h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}


/* =========================================================
   12. ABOUT
   ========================================================= */

.about-grid {
  display: grid;
  gap: 2rem;

  margin-top: 2.5rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.prose {
  display: grid;
  gap: 1.25rem;

  color: var(--muted);
}

.figure {
  margin: 0;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.figure figcaption {
  padding: 0.75rem 1rem;

  background: var(--card);
  color: var(--muted);

  font-size: 0.78rem;
}


/* =========================================================
   13. PANELS / FALLBACKS
   ========================================================= */

.panel {
  padding: 1.5rem;

  border: 1px solid rgba(250, 246, 238, 0.15);
  border-radius: 18px;

  background: rgba(250, 246, 238, 0.06);
}

.panel h3 {
  color: var(--primary-fg);

  font-size: 1.2rem;
  font-weight: 600;
}

.panel p {
  margin-top: 0.5rem;

  color: rgba(250, 246, 238, 0.8);

  font-size: 0.9rem;
}

.fallback h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.fallback p {
  max-width: 44rem;
  margin-top: 0.75rem;

  color: var(--muted);

  font-size: 0.9rem;
}

.fallback .btn {
  margin-top: 1.5rem;
}


/* =========================================================
   14. GALLERY
   ========================================================= */

.gallery-item {
  margin: 0;
  padding: 0;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: var(--radius-lg);

  background: none;

  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;

  object-fit: cover;

  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.03);
}


/* =========================================================
   15. REVIEWS
   ========================================================= */

.reviews-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
  }
}

.rating-card {
  text-align: center;
}

.rating-big {
  color: var(--primary);

  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
}

.rating-card .btn {
  margin-top: 1.5rem;
}

.rating-card .muted {
  margin-top: 0.75rem;
}

.highlights {
  display: grid;
  gap: 0.5rem;

  margin: 1.25rem 0 0;
  padding: 0;

  color: var(--muted);

  font-size: 0.9rem;

  list-style: none;
}

.highlights li::before {
  content: "•";

  margin-right: 0.5rem;

  color: var(--accent);
}

.note {
  margin-top: 1rem;

  color: var(--muted);

  font-size: 0.78rem;
}

blockquote.card {
  margin: 0;
}

blockquote.card footer {
  margin-top: 1rem;

  color: var(--muted);

  font-size: 0.78rem;
}


/* =========================================================
   16. LOCATION
   ========================================================= */

address {
  margin-top: 0.75rem;

  color: var(--muted);

  font-style: normal;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;

  margin-top: 1.5rem;
}

.map-card {
  position: relative;

  display: block;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: var(--radius-lg);

  text-decoration: none;
}

.map-card img {
  width: 100%;
  min-height: 16rem;
  height: 100%;

  object-fit: cover;

  transition: transform 0.5s;
}

.map-card:hover img {
  transform: scale(1.03);
}

.map-cta {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;

  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  padding: 0.5rem 1rem;

  border-radius: 999px;

  background: var(--bg);
  color: var(--fg);

  font-size: 0.875rem;
  font-weight: 600;
}


/* =========================================================
   17. PRICING
   ========================================================= */

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .pricing-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.pricing-text {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pricing-text p {
  max-width: 36rem;
  margin-top: 0.5rem;
}


/* =========================================================
   18. FAQ / ACCORDION
   ========================================================= */

.accordion {
  max-width: 48rem;
  margin: 0 auto;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 18px;

  background: var(--card);
}

.acc-item + .acc-item {
  border-top: 1px solid var(--border);
}

.acc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  width: 100%;

  padding: 1rem 1.25rem;

  border: 0;

  background: none;
  color: var(--fg);

  font: inherit;
  font-weight: 600;

  text-align: left;

  cursor: pointer;
}

.acc-btn .ico {
  width: 1.2rem;
  height: 1.2rem;

  color: var(--primary);

  transition: transform 0.2s;
}

.acc-btn[aria-expanded="true"] .ico {
  transform: rotate(180deg);
}

.acc-panel {
  padding: 0 1.25rem 1.25rem;

  color: var(--muted);

  font-size: 0.9rem;
}


/* =========================================================
   19. CONTACT
   ========================================================= */

.contact-card {
  display: block;

  padding: 1.5rem;

  border-radius: 18px;

  text-decoration: none;

  transition: transform 0.2s;
}

.contact-card:hover {
  transform: translateY(-2px);
}

.contact-accent {
  background: var(--accent);
  color: var(--accent-fg);
}

.contact-outline {
  border: 1px solid rgba(250, 246, 238, 0.2);

  background: rgba(250, 246, 238, 0.06);
  color: var(--primary-fg);
}

.contact-card .label {
  margin-top: 1rem;
  color: inherit;
  opacity: 0.7;
}

.contact-value {
  margin-top: 0.25rem;

  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.contact-address {
  margin-top: 0.25rem;

  font-size: 1rem;
}


/* =========================================================
   20. FOOTER
   ========================================================= */

.site-footer {
  padding: 3rem 0 7rem;

  border-top: 1px solid var(--border);

  background: var(--bg);
}

@media (min-width: 640px) {
  .site-footer {
    padding-bottom: 3rem;
  }
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-name {
  margin-bottom: 0.75rem;

  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;

  margin: 1rem 0 0;
  padding: 0;

  font-size: 0.9rem;

  list-style: none;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;

  border-top: 1px solid var(--border);

  color: var(--muted);

  font-size: 0.78rem;
}


/* =========================================================
   21. MOBILE BOTTOM BAR
   ========================================================= */

.mobile-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 50;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;

  padding: 0.5rem;

  border-top: 1px solid var(--border);

  background: rgba(250, 246, 238, 0.95);

  backdrop-filter: blur(8px);
}

.mobile-bar .btn {
  padding: 0.8rem;
  border-radius: 12px;
}

@media (min-width: 640px) {
  .mobile-bar {
    display: none;
  }
}


/* =========================================================
   22. LIGHTBOX
   ========================================================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 1.5rem;

  background: rgba(30, 27, 23, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  max-width: 64rem;
  margin: 0;
}

.lightbox-figure img {
  width: auto;
  max-height: 80svh;

  margin: 0 auto;

  border-radius: 14px;
}

.lightbox-figure figcaption {
  margin-top: 0.75rem;

  color: rgba(250, 246, 238, 0.85);

  font-size: 0.85rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;

  display: grid;
  place-items: center;

  width: 2.75rem;
  height: 2.75rem;

  border: 1px solid rgba(250, 246, 238, 0.4);
  border-radius: 999px;

  background: transparent;
  color: #faf6ee;

  cursor: pointer;
}


/* =========================================================
   23. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

  
