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

/* BASE */
body {
  font-family: 'Inter', sans-serif;
  background: #f3f2ef; /* soft warm grey base */
  color: #333;
  line-height: 1.7;
}

/* =====================
   HERO
===================== */

.hero {
  display: flex;
  background: linear-gradient(180deg, #163a52, #0f2d42);
  color: #ffffff;
  min-height: 420px;
}

/* LEFT LOGO SPINE */
.hero-logo-spine {
  width: 520px;
  display: flex;
  top: 2px;
  left: 2px;
}

.hero-logo-spine img {
  max-width: 90%;
  height: auto;
}

/* HERO CONTENT */
.hero-content {
  flex: 1;
  padding: 40px 40px 40px 50px;
  position: relative;
}

/* QUICK LINKS (DESKTOP ONLY) */
.quick-links {
  position: absolute;
  top: 20px;
  right: 30px;
  display: flex;
  gap: 14px;
}

.quick-links a {
  color: #d6e2ea;
  text-decoration: none;
  font-size: 14px;
}

.quick-links a:hover {
  text-decoration: underline;
}

/* HERO TEXT */
.stars {
  color: gold;
  font-size: 18px;
}

.tagline {
  margin-top: 6px;
}

/* CTA BUTTONS */
.actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  background: #ffffff;
  color: #163a52;
}

/* =====================
   SECTIONS (GLOBAL)
===================== */

section {
  max-width: 1000px;
  margin: 70px auto;
  padding: 55px 45px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Soft neutral sections */
section.soft {
  background: #faf8f5;
}

/* =====================
   SPECIAL MENU + AACHAR
===================== */

.menu-grid,
.achar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
  margin-top: 30px;
}

/* AACHAR – CALM STONE GREY */
.achar-section {
  background: #f1f0ed; /* subtle stone / warm grey */
  border: 1px solid #e4e2dd;
}

/* =====================
   CATERING
===================== */

.catering-section {
  background: #e8eff4; /* muted cool grey-blue */
}

.catering-points {
  list-style: none;
  margin: 20px 0 30px;
}

.catering-points li::before {
  content: "✓ ";
  color: #163a52;
  font-weight: 700;
}

/* =====================
   REVIEWS (MARQUEE)
===================== */

.review-marquee {
  overflow: hidden;
  margin-top: 30px;
}

.review-track {
  display: flex;
  gap: 40px;
  animation: scroll 28s linear infinite;
}

.review {
  white-space: nowrap;
  font-weight: 600;
  color: #163a52;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* =====================
   GOOGLE QR
===================== */

.qr-section {
  text-align: center;
}

.qr-wrap {
  margin-top: 18px;
  padding: 18px;
  display: inline-block;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.qr-wrap img {
  width: 170px;
}

/* =====================
   FOOTER
===================== */

footer {
  background: #163a52;
  color: #d6e2ea;
  text-align: center;
  padding: 30px;
}

/* =====================
   MOBILE
===================== */

.mobile-bar {
  display: none;
}

@media (max-width: 768px) {

  .hero {
    flex-direction: column;
  }

  .hero-logo-spine {
    width: 100%;
    padding: 20px;
  }

  .quick-links {
    display: none;
  }

  .mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: #163a52;
  }

  .mobile-bar a {
    flex: 1;
    padding: 16px 0;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
  }

  body {
    padding-bottom: 90px;
  }
}
