:root {
  --cream: #f7f0e8;
  --sand: #ead6bf;
  --maroon: #7a1f2b;
  --saffron: #d98b2b;
  --deep: #2b1a14;
  --olive: #6c5a40;
  --white: #fffaf3;
  --shadow: 0 30px 60px rgba(43, 26, 20, 0.12);
}

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

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at top, #fff6e8 0%, #f3e4d2 45%, #ead6bf 100%);
  color: var(--deep);
  line-height: 1.6;
}

.page {
  min-height: 100vh;
}

.hero {
  padding: 2.5rem 6vw 4rem;
  position: relative;
  overflow: hidden;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: flex-end;
  font-size: 0.85rem;
  color: var(--olive);
  position: relative;
  z-index: 2;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.02em;
}

.brand__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 250, 243, 0.9);
  box-shadow: 0 10px 20px rgba(43, 26, 20, 0.12);
}

.icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.4rem;
  color: var(--maroon);
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.topbar__item a {
  color: var(--maroon);
  text-decoration: none;
  font-weight: 600;
}

.topbar__item a:hover {
  text-decoration: underline;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 139, 43, 0.35), transparent 70%);
  top: -160px;
  right: -120px;
  z-index: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

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

  

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand__name {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.brand__tag {
  font-size: 0.78rem;
  color: var(--olive);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 1.5rem;
}

.nav__links a {
  text-decoration: none;
  color: var(--deep);
  font-weight: 500;
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--saffron);
  transition: width 0.3s ease;
}

.nav__links a:hover::after {
  width: 100%;
}

.hero__content {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--maroon);
  margin-bottom: 1rem;
}

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

h1 {
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

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

.subtext {
  color: var(--olive);
  max-width: 520px;
  margin-bottom: 1.8rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  border: none;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: var(--maroon);
  color: var(--white);
  box-shadow: 0 14px 25px rgba(122, 31, 43, 0.2);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(122, 31, 43, 0.4);
  color: var(--maroon);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero__stats h3 {
  font-size: 1.6rem;
}

.hero__stats p {
  font-size: 0.85rem;
  color: var(--olive);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  background: var(--white);
  border-radius: 26px;
  overflow: hidden;
  width: min(360px, 90vw);
  box-shadow: var(--shadow);
}

.card__image {
  height: 240px;
  background: linear-gradient(135deg, rgba(122, 31, 43, 0.12), rgba(217, 139, 43, 0.4));
  display: grid;
  place-items: center;
}

.card__logo {
  width: min(200px, 70%);
  height: auto;
  background: rgba(255, 250, 243, 0.9);
  padding: 0.8rem 1.2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.card__content {
  padding: 1.6rem;
}

.card__title {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.card__desc {
  color: var(--olive);
  font-size: 0.9rem;
}

.hero__accent {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 2px dashed rgba(122, 31, 43, 0.3);
  top: -40px;
  right: -20px;
  z-index: -1;
}


.menu,
.story,
.visit {
  padding: 4.5rem 6vw;
}

.section__header {
  text-align: left;
  margin-bottom: 2.5rem;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.menu__item {
  padding: 1.5rem;
  background: rgba(255, 250, 243, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(122, 31, 43, 0.08);
  box-shadow: 0 18px 35px rgba(43, 26, 20, 0.08);
  display: grid;
  gap: 0.9rem;
}

.menu__image {
  height: 150px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.menu__image--ladoo {
  background-image: url("images/boondi-ladoo.jpg");
}

.menu__image--kaju-katli {
  background-image: url("images/kaju-katli.jpg");
}

.menu__image--gulab-jamun {
  background-image: url("images/gulab-jamun.jpg");
}

.menu__image--lassi {
  background-image: url("images/sweet-lassi.jpg");
}

.menu__image--rasmalai {
  background-image: url("images/rasmalai.jpg");
}

.menu__image--jalebi {
  background-image: url("images/jalebi.jpg");
}

.menu__image--barfi {
  background-image: url("images/barfi.jpg");
}

.menu__image--peda {
  background-image: url("images/peda.jpg");
}

.menu__item h3 {
  margin-bottom: 0.3rem;
}

.menu__item p {
  color: var(--olive);
  font-size: 0.92rem;
}

.story {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.story__panel {
  background: var(--white);
  padding: 2.6rem;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.story__highlights {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.story__highlights h4 {
  margin-bottom: 0.3rem;
}

.story__highlights p {
  color: var(--olive);
  font-size: 0.9rem;
}

.story__image {
  min-height: 380px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(217, 139, 43, 0.25), rgba(122, 31, 43, 0.45)),
    url("images/story.jpg") center/cover;
  box-shadow: var(--shadow);
}

.visit {
  display: flex;
  justify-content: center;
}

.visit__card {
  background: var(--maroon);
  color: var(--white);
  padding: 3rem;
  border-radius: 30px;
  max-width: 980px;
  width: 100%;
  display: grid;
  gap: 2rem;
  box-shadow: var(--shadow);
}

.visit__card p {
  color: rgba(255, 250, 243, 0.85);
}

.visit__details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.visit__details h4 {
  margin-bottom: 0.35rem;
}

.footer {
  padding: 2.5rem 6vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid rgba(43, 26, 20, 0.1);
  background: rgba(255, 250, 243, 0.7);
}

.footer h3 {
  margin-bottom: 0.4rem;
}

.footer p {
  color: var(--olive);
}

.footer__links {
  display: grid;
  gap: 0.6rem;
}

.footer__link-row,
.footer__social-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.footer__link-row a {
  color: var(--deep);
  text-decoration: none;
  font-weight: 500;
}

.footer__social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(122, 31, 43, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer__social-row a:hover {
  transform: translateY(-2px);
  background: rgba(122, 31, 43, 0.2);
}

.footer__social-row svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__links a {
  color: var(--deep);
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav__links {
    flex-wrap: wrap;
  }

  .hero__stats {
    gap: 1.5rem;
  }

  .visit__card {
    padding: 2rem;
  }

  .topbar {
    justify-content: flex-start;
  }
}
