@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700;1,800&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --cream: #f8efe3;
  --cream-soft: #fdf8f2;
  --brown: #2e1a0e;
  --brown-light: #6b4331;
  --orange: #ff6a00;
  --orange-dark: #ea5700;
  --red: #ef2d1a;
  --white: #ffffff;
  --card: #fffaf5;
  --border: rgba(75, 38, 21, 0.08);
  --shadow: 0 20px 60px rgba(75, 38, 21, 0.1);
  --shadow-sm: 0 4px 20px rgba(75, 38, 21, 0.07);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream-soft);
  color: var(--brown);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 248, 242, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: none;
}

.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  height: 76px;
  width: 220px;
  position: relative;
  overflow: visible;
  flex-shrink: 0;
  padding-top: 6px;
}

.logo {
  height: 160px;
  width: auto;
  max-width: none;
  object-fit: contain;
  position: absolute;
  top: 58%;
  left: 0;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateY(-50%) scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 1.08rem; /* increased size */
  font-weight: 700; /* bold */
  color: var(--brown);
  letter-spacing: 0.5px;
  padding: 6px 4px; /* better spacing */
  transition: all 0.25s ease;
}

.nav-links a.active {
  color: var(--orange);
  font-weight: 800;
}

.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--orange);
  transform: translateY(-1px);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -17px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--red));
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
  color: var(--orange-dark);
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  color: var(--brown);
}

/* COMMON TYPOGRAPHY */
.section-tag {
  display: inline-block;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
  padding: 5px 12px;
  background: rgba(255, 106, 0, 0.07);
  border-radius: 999px;
}

.section-heading {
  margin-bottom: 48px;
}

.center {
  text-align: center;
}

.section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-marathi-line {
  color: var(--orange);
  font-weight: 700;
  margin: 12px 0 10px;
}

.contact-marathi-line {
  color: var(--orange);
  font-weight: 700;
  margin-top: 12px;
}

/* HERO */
.hero-section {
  position: relative;
  background: linear-gradient(160deg, #fff9f2 0%, #fdf0e2 60%, #f9e8d4 100%);
  padding: 88px 0 96px;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.13;
  pointer-events: none;
}

.shape-left {
  width: 400px;
  height: 400px;
  background: var(--orange);
  top: -160px;
  left: -120px;
}

.shape-right {
  width: 440px;
  height: 440px;
  background: var(--red);
  right: -140px;
  bottom: -120px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.09);
  border: 1px solid rgba(255, 106, 0, 0.15);
  color: var(--orange-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.8vw, 5.2rem);
  line-height: 1.06;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  max-width: 680px;
  color: var(--brown);
}

.hero-content h1 span {
  color: var(--red);
  font-style: italic;
}

.hero-text {
  max-width: 560px;
  color: var(--brown-light);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.btn {
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.94rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: var(--white);
  box-shadow: 0 10px 32px rgba(239, 45, 26, 0.28);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(239, 45, 26, 0.35);
}

.btn-secondary {
  border: 1.5px solid rgba(255, 106, 0, 0.22);
  background: rgba(255, 255, 255, 0.75);
  color: var(--brown);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: var(--white);
  border-color: rgba(255, 106, 0, 0.4);
  transform: translateY(-2px);
}

.hero-points {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.point {
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(75, 38, 21, 0.07);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--brown);
  box-shadow: var(--shadow-sm);
}

/* HERO IMAGE */
/* HERO IMAGE */
.hero-image-wrap {
  display: flex;
  justify-content: flex-end; /* push to right */
  align-items: center;
  width: 100%;
}

.hero-image-card {
  width: 100%;
  max-width: none; /* removed restriction */
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  overflow: visible;
}

.hero-image {
  width: 140%; /* 🔥 BIG INCREASE */
  max-width: none; /* IMPORTANT */
  height: auto;
  display: block;
  object-fit: contain;
  transform: translateX(80px); /* push right */
  filter: saturate(1.06) contrast(1.06);
}

.hero-image-card::after {
  display: none;
}

/* HOME ABOUT */
.about-section {
  background: #fdf8f2;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  background: linear-gradient(160deg, #fffdf9 0%, #fff0e2 100%);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 180, 100, 0.18);
  transition: transform 0.4s ease;
}

.about-image-wrap:hover {
  transform: translateY(-4px);
}

.about-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 22px;
}

.about-content h2,
.contact-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.about-content p {
  color: var(--brown-light);
  margin-bottom: 14px;
  font-size: 1.02rem;
  line-height: 1.78;
}

/* SPECIALITY / WHY US */
.speciality-section {
  background: linear-gradient(180deg, #fff9f1 0%, #f9ebe0 100%);
  position: relative;
  overflow: hidden;
}

.speciality-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.2), transparent);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: 28px;
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 150, 60, 0.1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.04), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 106, 0, 0.14);
}

.feature-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.12), rgba(239, 45, 26, 0.08));
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(239, 45, 26, 0.1);
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
  font-size: 1.28rem;
  letter-spacing: -0.3px;
}

.feature-card p {
  color: var(--brown-light);
  font-size: 0.97rem;
  line-height: 1.7;
}

/* GALLERY */
.gallery-section {
  background: var(--cream-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  border: 1px solid rgba(255, 150, 60, 0.08);
  transition: all 0.35s ease;
}

.gallery-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.gallery-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-grid-single {
  margin-top: 20px;
  grid-template-columns: 1fr;
  justify-items: center;
}

.gallery-grid-single .gallery-card {
  width: 100%;
  max-width: calc((100% - 40px) / 3);
}

/* CONTACT */
.contact-section {
  background: linear-gradient(160deg, #fff9f1 0%, #fdf0e2 100%);
}

.contact-box {
  background: var(--white);
  border: 1px solid rgba(255, 150, 60, 0.12);
  border-radius: 36px;
  padding: 52px 48px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--red));
}

.contact-left h2 {
  margin-bottom: 14px;
}

.contact-left p,
.contact-right p {
  color: var(--brown-light);
  font-size: 1.02rem;
  line-height: 1.72;
}

.contact-right {
  padding: 26px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff7ef, #fff1e5);
  border: 1px solid rgba(255, 150, 60, 0.1);
}

.contact-right p:not(:last-child) {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(75, 38, 21, 0.05);
}

.contact-right strong {
  color: var(--brown);
  font-weight: 700;
}

/* FOOTER */
.site-footer {
  background: var(--brown);
  color: rgba(255, 255, 255, 0.7);
  padding: 28px 0;
}

.footer-inner {
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

/* TABLET */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-points {
    justify-content: center;
  }

  .hero-image-wrap {
    justify-content: center;
    margin-top: 24px;
  }

  .hero-image {
  width: 110%;
  transform: translateX(0);
}

  .cards-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    text-align: center;
  }

  .contact-box {
    padding: 40px 32px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .navbar {
    min-height: 68px;
  }

  .brand {
    height: 68px;
    width: 170px;
    padding-top: 0;
  }

  .logo {
    height: 92px;
    top: 54%;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    right: 4%;
    width: 220px;
    background: rgba(253, 248, 242, 0.98);
    border: 1px solid rgba(255, 106, 0, 0.1);
    box-shadow: var(--shadow);
    border-radius: 20px;
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-links.show {
    display: flex;
  }

  .hero-section {
    padding: 50px 0 64px;
  }

  .section {
    padding: 70px 0;
  }

  .hero-content h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .hero-image-wrap {
    justify-content: center;
    margin-top: 14px;
  }

 .hero-image {
  width: 100%;
  transform: none;
}

  .cards-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-card,
  .about-image-wrap {
    padding: 0;
  }

  .contact-box {
    border-radius: 28px;
    padding: 32px 22px;
  }

  .about-image {
    min-height: 260px;
  }

  .gallery-grid-single .gallery-card {
    max-width: 100%;
  }
}