@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  --primary: #8b1e3f;
  --primary-dark: #5d1028;
  --gold: #d99a25;
  --gold-light: #f6d98b;
  --cream: #fff8ed;
  --text: #291d1d;
  --muted: #76696a;
  --white: #ffffff;
  --border: #eaded4;
  --shadow: 0 18px 45px rgba(61, 25, 25, .10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: #fffdf9;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.brand-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--gold-light);
  font-family: "Playfair Display", serif;
  font-size: 27px;
  box-shadow: 0 7px 20px rgba(139,30,63,.22);
}

.brand strong, .brand small { display: block; }
.brand strong { font-family: "Playfair Display", serif; font-size: 20px; line-height: 1; }
.brand small { color: var(--primary); font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; margin-top: 4px; }

nav { display: flex; gap: 24px; align-items: center; }
nav a { font-size: 14px; font-weight: 600; color: #4d4141; }
nav a:hover { color: var(--primary); }

.nav-book {
  background: var(--primary);
  color: white;
  padding: 11px 17px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
}

.menu-toggle { display: none; border: 0; background: transparent; font-size: 26px; color: var(--primary); cursor: pointer; }

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,190,66,.18), transparent 28%),
    linear-gradient(135deg, #350817 0%, #75162f 55%, #3e0a1b 100%);
  color: white;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(246,217,139,.20);
  border-radius: 50%;
}
.hero::before { width: 650px; height: 650px; }
.hero::after { width: 850px; height: 850px; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(45,4,18,.15), rgba(45,4,18,.35)),
    repeating-linear-gradient(45deg, transparent 0 10px, rgba(255,255,255,.018) 10px 11px);
}

.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 80px 0; }

.hero-badge {
  display: inline-block;
  padding: 7px 18px;
  border: 1px solid rgba(246,217,139,.55);
  border-radius: 100px;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 20px;
}

h1, h2, h3 { font-family: "Playfair Display", serif; }

.hero h1 {
  font-size: clamp(45px, 7vw, 82px);
  line-height: 1.05;
  margin-bottom: 22px;
}
.hero h1 span, .section-heading span, .about-content h2 span { color: var(--gold); }

.hero p {
  max-width: 650px;
  margin: auto;
  color: #f6e7e2;
  font-size: 18px;
}

.hero-actions { display: flex; justify-content: center; gap: 12px; margin: 30px 0; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  padding: 14px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #30140e; }
.btn-whatsapp { background: #168a4b; color: white; }
.btn-whatsapp.dark { background: #0e713d; }
.btn-light { background: white; color: var(--primary); }

.hero-price {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 10px 16px;
}
.hero-price span { font-size: 13px; color: #ead5d5; }
.hero-price strong { color: var(--gold-light); font-size: 24px; }

.trust-strip { background: var(--cream); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid var(--border);
  font-weight: 700;
}
.trust-grid div:last-child { border: 0; }
.trust-grid b { font-size: 25px; }

.section { padding: 95px 0; }

.section-heading { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 9px;
}
.section-heading h2, .about-content h2, .contact-grid h2 {
  font-size: clamp(34px, 5vw, 51px);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-heading p, .contact-intro { color: var(--muted); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}
.service-card {
  padding: 28px 22px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: .25s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #dfc9b9; }
.service-icon {
  width: 55px; height: 55px;
  display: grid; place-items: center;
  background: #fff1dc;
  border-radius: 50%;
  font-size: 25px;
  margin-bottom: 17px;
}
.service-card h3 { font-size: 21px; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 14px; }

.highlight {
  background: var(--primary);
  color: white;
  padding: 55px 0;
}
.highlight-inner, .cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.highlight h2, .cta h2 { font-size: clamp(30px, 4vw, 46px); font-family: "Playfair Display", serif; }
.highlight p, .cta p { color: #eddde0; }
.highlight .eyebrow, .cta .eyebrow { color: var(--gold-light); }

.packages { background: var(--cream); }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.package-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 30px;
  position: relative;
}
.package-card.featured { border: 2px solid var(--gold); box-shadow: var(--shadow); transform: translateY(-7px); }
.popular {
  position: absolute;
  top: 15px; right: 15px;
  font-size: 10px;
  font-weight: 900;
  background: var(--gold);
  padding: 5px 9px;
  border-radius: 20px;
}
.package-top span { color: var(--gold); font-weight: 900; }
.package-top h3 { font-size: 27px; margin-top: 8px; }
.package-price { font-size: 30px; color: var(--primary); font-weight: 900; margin: 18px 0; }
.package-price small { font-size: 12px; color: var(--muted); font-weight: 600; }
.package-card ul { list-style: none; margin-bottom: 25px; }
.package-card li { padding: 7px 0; color: #514646; font-size: 14px; }
.package-card > a { color: var(--primary); font-weight: 800; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-auto-rows: 190px;
  gap: 14px;
}
.gallery-item {
  border-radius: 13px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(246,217,139,.25), transparent 25%),
    linear-gradient(145deg, #65142e, #2d0716);
  color: white;
  display: grid;
  place-items: center;
}
.gallery-item.large { grid-row: span 2; }
.gallery-item div { text-align: center; font-size: 48px; }
.gallery-item span { display: block; font-size: 14px; margin-top: 7px; color: var(--gold-light); font-weight: 700; }

.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 75px; align-items: center; }
.about-art {
  min-height: 460px;
  border-radius: 25px;
  background:
    radial-gradient(circle, rgba(246,217,139,.25), transparent 28%),
    linear-gradient(145deg, #6e1631, #2f0717);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.about-art::before {
  content: "";
  position: absolute;
  width: 390px; height: 390px;
  border: 1px solid rgba(246,217,139,.35);
  border-radius: 50%;
}
.om { font-family: "Playfair Display"; color: var(--gold-light); font-size: 160px; position: relative; }
.floating-card {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: white;
  color: var(--primary);
  padding: 12px 18px;
  border-radius: 9px;
  font-weight: 900;
  box-shadow: var(--shadow);
}
.about-content p { color: var(--muted); margin-bottom: 20px; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 22px 0 30px; }
.about-points div { font-size: 14px; font-weight: 700; }

.cta {
  background: linear-gradient(110deg, #401020, #8b1e3f);
  color: white;
  padding: 65px 0;
}
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.contact-details { margin-top: 30px; display: grid; gap: 15px; }
.contact-details > * {
  display: flex; flex-direction: column; gap: 2px;
  background: white; border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 18px;
}
.contact-details b { color: var(--primary); font-size: 13px; }
.contact-details span { color: var(--muted); font-size: 14px; }

.booking-form {
  background: white;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(61,25,25,.07);
}
.booking-form label { display: block; font-size: 13px; font-weight: 800; color: #493b3b; margin-bottom: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
input, select, textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid #decfc7;
  border-radius: 7px;
  padding: 13px 12px;
  font: inherit;
  color: var(--text);
  background: #fffdfa;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(139,30,63,.08); }
textarea { resize: vertical; }
.submit-btn { width: 100%; }
.form-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 9px; }

.footer { background: #230710; color: #e9dfe1; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr; gap: 60px; padding-bottom: 45px; }
.footer .brand { color: white; margin-bottom: 18px; }
.footer p { color: #bdaeb1; max-width: 360px; font-size: 14px; }
.footer h4 { color: var(--gold-light); margin-bottom: 14px; }
.footer-grid > div:not(:first-child) a, .footer-grid > div:not(:first-child) span {
  display: block; color: #cbbec1; font-size: 14px; margin: 7px 0;
}
.copyright { text-align: center; border-top: 1px solid rgba(255,255,255,.1); padding: 18px; font-size: 12px; color: #a99a9e; }

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #168a4b;
  color: white;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

@media (max-width: 1000px) {
  nav { gap: 14px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid div:nth-child(2) { border-right: 0; }
  .trust-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 620px); }
  .header { position: sticky; }
  .nav { min-height: 68px; }
  .nav-book { display: none; }
  .menu-toggle { display: block; order: 3; }
  nav {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: white;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  nav.open { display: flex; }
  nav a { padding: 12px 5px; border-bottom: 1px solid #f0e7e2; }

  .hero { min-height: 620px; }
  .hero-content { padding: 70px 0; }
  .hero p { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid div { min-height: 85px; font-size: 12px; padding: 8px; text-align: center; flex-direction: column; gap: 4px; }

  .section { padding: 70px 0; }
  .service-grid, .package-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item.large { grid-row: span 1; }
  .about-art { min-height: 330px; }
  .about-points { grid-template-columns: 1fr; }
  .highlight-inner, .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { gap: 35px; }
}

@media (max-width: 450px) {
  .brand strong { font-size: 17px; }
  .brand-icon { width: 40px; height: 40px; font-size: 23px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid div { border-right: 0 !important; border-bottom: 1px solid var(--border); }
  .trust-grid div:last-child { border-bottom: 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { min-height: 170px; }
}


/* Uploaded poster integration */
.hero-with-poster {
  background: #260510;
  isolation: isolate;
}
.hero-with-poster .hero-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("dhyani-bhai-poster.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(1.03);
}
.hero-with-poster .hero-overlay {
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(35, 4, 13, .82) 0%,
    rgba(35, 4, 13, .48) 45%,
    rgba(35, 4, 13, .25) 100%
  );
}
.hero-with-poster .hero-content { z-index: 2; }
.gallery-photo {
  border-radius: 13px;
  overflow: hidden;
  background: #2f0716;
  min-height: 190px;
}
.gallery-photo.large { grid-row: span 2; }
.gallery-photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 760px) {
  .hero-with-poster .hero-poster {
    background-position: center top;
  }
  .hero-with-poster .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(35, 4, 13, .45),
      rgba(35, 4, 13, .76)
    );
  }
  .gallery-photo.large { grid-row: span 1; }
}
