:root {
  --dark: #0b0b0b;
  --light: #ffffff;
  --primary: #e63946;
  --accent: #f4c772;
  --muted: #9b9b9b;
  --soft: #f7f3ef;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: #1c1c1c;
  line-height: 1.7;
  background: #fff;
}

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

/* ===== GLOBAL MOTION ===== */
.float-soft {
  animation: floatSoft 6s ease-in-out infinite;
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes sheen {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

/* =========================
   PREMIUM NAVBAR
========================= */

.navbar-glass {
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(14px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.35s ease;
}

.navbar-glass.scrolled {
  background: rgba(0, 0, 0, 0.92);
  box-shadow: 0 16px 50px rgba(0,0,0,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
/* ===== JUICY CTA BUTTON ===== */

.nav-cta {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

/* CRACK EFFECT */
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 45%,
      rgba(255,255,255,0.4) 50%,
      transparent 55%
    );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  opacity: 0;
  transform: translateX(-120%);
}

/* SAUCE DRIP */
.sauce-drip {
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 14px;
  height: 14px;
  background: #ffb703; /* sauce color */
  border-radius: 50%;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

/* HOVER STATES */
.nav-cta:hover {
  transform: translateY(-2px);
}

.nav-cta:hover::before {
  opacity: 1;
}

.nav-cta:hover .sauce-drip {
  transform: translateX(-50%) scaleY(1.8);
}

.nav-cta:hover::after {
  opacity: 1;
  animation: sheen 1s ease;
}

/* LOGO */
.nav-logo {
  height: 42px;
  width: auto;
  transition: transform 0.4s ease;
}

.navbar-brand:hover .nav-logo {
  transform: scale(1.08) rotate(-2deg);
}

.brand-text {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

/* NAV LINKS */
.nav-link {
  color: #fff !important;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--accent) !important;
}

/* ACTIVE / HOVER LINE */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.active-link::after {
  width: 100%;
}

/* CTA BUTTON */
.nav-cta {
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(230,57,70,0.45);
}

/* MOBILE */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(0,0,0,0.95);
    padding: 20px;
    border-radius: 12px;
    margin-top: 12px;
  }
}


/* HERO */
/* ===== PREMIUM HERO (NEW STYLE) ===== */
.hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(5,5,5,0.92), rgba(5,5,5,0.55)),
    url("images/hero2.jpg") center/cover no-repeat;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: 20%;
  background: radial-gradient(circle, rgba(244,199,114,0.35), transparent 60%);
  filter: blur(10px);
  z-index: 1;
  animation: floatSoft 7s ease-in-out infinite;
}

.hero-premium-content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  animation: fadeIn 0.9s ease forwards;
}

.hero-premium-title {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.05;
  animation: slideUp 0.9s ease forwards;
}

.hero-premium-sub {
  margin-top: 16px;
  max-width: 520px;
  font-size: 1rem;
  opacity: 0.9;
  animation: slideUp 0.9s ease forwards;
  animation-delay: 0.1s;
}

.hero-premium-actions .btn {
  padding: 12px 30px;
  border-radius: 999px;
}

.hero-premium-actions {
  animation: slideUp 0.9s ease forwards;
  animation-delay: 0.2s;
}

.hero-premium-stats {
  margin-top: 26px;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.25s;
}

.hero-premium-stats .stat-value {
  display: block;
  font-weight: 800;
  color: var(--accent);
  font-size: 1.2rem;
}

.hero-premium-stats .stat-text {
  font-size: 0.82rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0.8;
}

.hero-premium-card {
  background: rgba(15,15,15,0.75);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0,0,0,0.45);
  transform: translateY(10px);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-premium-card:hover {
  transform: translateY(0) scale(1.01);
  box-shadow: 0 36px 90px rgba(0,0,0,0.5);
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

.hero-premium-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.hero-card-body {
  padding: 18px 20px 24px;
}

.hero-card-body h5 {
  margin-bottom: 6px;
  font-weight: 700;
}

.hero-card-body p {
  margin-bottom: 12px;
  opacity: 0.8;
}

@media (max-width: 991px) {
  .hero-premium {
    min-height: auto;
  }

  .hero-premium-content {
    padding-top: 120px;
  }
}

@media (max-width: 768px) {
  .hero-premium-title {
    font-size: 38px;
  }

  .hero-premium-sub {
    font-size: 0.95rem;
  }

  .hero-premium-card img {
    height: 240px;
  }
}

/* Page hero spacing */
.menu-hero,
.gallery-hero-premium,
.location-hero,
.about-hero {
  padding-top: 120px;
}

@media (max-width: 768px) {
  .menu-hero,
  .gallery-hero-premium,
  .location-hero,
  .about-hero {
    padding-top: 100px;
  }
}



/* TEXT ANIMATIONS */
.animate-fade {
  animation: fadeIn 1s ease forwards;
}

.animate-slide {
  animation: slideUp 1s ease forwards;
}

.delay-1 { animation-delay: .2s; }
.delay-2 { animation-delay: .4s; }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== REVEAL ON SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }

/* ===== HERO PANEL (INNER GLASS) ===== */
.hero-panel {
  display: inline-block;
  padding: 26px 32px;
  border-radius: 20px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}

/* ===== HIGHLIGHT BAR ===== */
.highlight-bar {
  background: var(--dark);
  color: #fff;
  padding: 36px 0;
}

.highlight-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 22px 24px;
  border-radius: 16px;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.highlight-card h6 {
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.highlight-card p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.85;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

/* BUTTONS */
.btn {
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
}

.btn-danger {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-danger:hover {
  background: #c92e3a;
  border-color: #c92e3a;
}

.btn-outline-light:hover {
  background: #fff;
  color: #000;
}

/* FOOTER */
footer small {
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-modern h1 {
    font-size: 2.4rem;
  }
}

/* ===== BURGER BETWEEN HERO & INTRO ===== */

.between-burger {
  position: relative;
  height: 0;
  z-index: 5;
}

.between-burger img {
  position: absolute;
  right: 5%;
  top: -150px;           /* overlap hero */
  width: 500px;
  pointer-events: none;
  animation:
    burgerFloat 6s ease-in-out infinite,
    burgerRotate 18s linear infinite;
}

/* FLOAT UP-DOWN */
@keyframes burgerFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* SLOW ROTATION */
@keyframes burgerRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 991px) {
  .between-burger img {
    display: block;
    width: 170px;
    right: 25%;
    transform: translateX(50%);
    top: -70px;
    opacity: 0.9;
  }
}
/* ===== PREMIUM INTRO SECTION ===== */

.intro-premium {
  padding: 100px 0 120px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* subtle background shape */
.intro-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top center,
      rgba(230,57,70,0.08),
      transparent 60%
    );
  z-index: 0;
}

.intro-premium .container {
  position: relative;
  z-index: 1;
}

/* tag */
.intro-tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}

/* title */
.intro-title {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 22px;
}

/* paragraph */
.intro-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
  max-width: 620px;
  margin: 0 auto;
}

/* responsive */
@media (max-width: 768px) {
  .intro-premium {
    padding: 70px 0 90px;
  }

  .intro-title {
    font-size: 2.1rem;
  }
}

/* ===== SIGNATURE ITEMS ===== */

.signature-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #f7f3ef, #ffffff);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.section-sub {
  max-width: 520px;
  margin: 14px auto 0;
  color: #0e0d0d;
}

/* CARD */
.signature-card {
  background: #fffefe;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.signature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.signature-card .card-body {
  padding: 22px;
}

.signature-card h5 {
  font-weight: 600;
  margin-bottom: 6px;
}

.signature-card p {
  font-size: 0.9rem;
  color: #030303;
  margin-bottom: 14px;
}

.signature-card .price {
  font-weight: 700;
  color: var(--primary);
}

/* HOVER EFFECT */
.signature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(121, 116, 116, 0.15);
}

.signature-card img {
  transition: transform 0.6s ease;
}

.signature-card:hover img {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .signature-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.1rem;
  }
}

/* ===== CHEF PROMISE ===== */
.promise-section {
  padding: 110px 0;
  background: #fff;
}

.promise-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 28px 26px;
  height: 100%;
  box-shadow: 0 14px 40px rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.promise-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.promise-card p {
  margin: 0;
  color: #444;
}

.promise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
  .promise-section {
    padding: 80px 0;
  }
}
/* ===== WHY GRILL INN ===== */
.why-section {
  padding: 110px 0;
  background: #fff;
}

.why-text {
  margin-top: 18px;
  font-size: 1.05rem;
  color: #555;
  max-width: 520px;
}

/* ===== WHY SECTION IMAGE ===== */
.why-image-wrapper {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Image */
.why-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Hover effect */
.why-image-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.28);
}

.why-image-wrapper:hover img {
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 991px) {
  .why-image-wrapper img {
    height: 300px;
  }
}
/* ===== TRANSPARENT BURGER IMAGE ===== */
.why-burger-img {
  max-width: 100%;
  width: 480px;
  height: auto;

  /* soft natural shadow (no box) */
  filter: drop-shadow(0 18px 35px rgba(0,0,0,0.25));

  transition: transform 0.6s ease, filter 0.6s ease;
}

/* Hover */
.why-burger-img:hover {
  transform: translateY(-12px) scale(1.05);
  filter: drop-shadow(0 30px 55px rgba(0,0,0,0.35));
}

/* Responsive */
@media (max-width: 991px) {
  .why-burger-img {
    width: 320px;
    margin-top: 20px;
  }
}

/* ===== AMBIENCE / EXPERIENCE ===== */

.ambience-section {
  padding: 110px 0;
  background: #fafafa;
}

.ambience-text {
  margin-top: 18px;
  font-size: 1.05rem;
  color: #555;
  max-width: 460px;
}

.ambience-points {
  list-style: none;
  padding: 0;
  margin-top: 22px;
}

.ambience-points li {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #444;
}

/* IMAGE GRID */
.ambience-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.ambience-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ambience-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ambience-img.large {
  grid-row: span 2;
}

.ambience-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .ambience-section {
    padding: 80px 0;
  }

  .ambience-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .ambience-img.large {
    grid-row: auto;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 110px 0;
  background: var(--soft);
}

.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  height: 100%;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card p {
  font-size: 0.98rem;
  color: #333;
  margin-bottom: 16px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

.testimonial-meta .rating {
  color: var(--accent);
  letter-spacing: 1px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.14);
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 0;
  }
}

/* ===== CTA PREMIUM ===== */
.cta-premium {
  padding: 90px 0;
  background: #0b0b0b;
  color: #fff;
}

.cta-box {
  background: linear-gradient(120deg, rgba(230,57,70,0.95), rgba(244,199,114,0.7));
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.25);
}

.cta-box h3 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.cta-box p {
  margin: 0;
  opacity: 0.95;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-actions .btn {
  border-radius: 999px;
}

@media (max-width: 991px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
  }
}
/* ===== FOOTER ===== */

.footer-premium {
  background: #0b0b0b;
  color: #bdbdbd;
  padding: 90px 0 30px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-logo {
  height: 48px;
  width: auto;
}

/* TITLES */
.footer-title {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

/* LINKS */
.footer-links,
.footer-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-info li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-links a {
  color: #bdbdbd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

/* SOCIAL */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social a {
  color: #bdbdbd;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--primary);
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.footer-bottom small {
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-premium {
    padding: 70px 0 30px;
    text-align: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    align-items: center;
  }
}
/* ===== GALLERY PAGE ===== */

/* ===== GALLERY HERO PREMIUM ===== */
.gallery-hero-premium {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;

  background-image: url("https://images.pexels.com/photos/887723/pexels-photo-887723.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark premium overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.75)
  );
  z-index: 1;
}

/* Content */
.gallery-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 20px;
}

/* Tag */
.gallery-content .section-tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  opacity: 0.9;
}

/* Title */
.gallery-title {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Subtitle */
.gallery-sub {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 38px;
  }

  .gallery-sub {
    font-size: 16px;
  }
}

.gallery-section {
  padding: 110px 0;
  background: #fafafa;
}

/* CARD */
.gallery-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gallery-hero {
    min-height: 45vh;
  }

  .gallery-card img {
    height: 240px;
  }
}
/* ===== MENU PAGE ===== */

.menu-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,0.85),
      rgba(0,0,0,0.45)
    ),
    url("https://images.pexels.com/photos/958545/pexels-photo-958545.jpeg") center/cover no-repeat;
}

.menu-section-premium {
  padding: 80px 0;
  background: #f7f5f2;
}

.menu-category {
  margin-bottom: 60px;
}

.menu-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

/* Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card */
.menu-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.menu-card img {
  transition: transform 0.6s ease;
}

.menu-card:hover img {
  transform: scale(1.06);
}

/* Image */
.menu-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Body */
.menu-card-body {
  padding: 20px;
}

.menu-card-body h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.menu-card-body p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 12px;
}

/* Price */
.price {
  font-size: 16px;
  font-weight: 600;
  color: #6f4e37;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-title {
    font-size: 24px;
  }
}

/* ===== LOCATION PAGE ===== */

.location-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,0.85),
      rgba(0,0,0,0.45)
    ),
    url("https://images.pexels.com/photos/687824/pexels-photo-687824.jpeg") center/cover no-repeat;
}

.location-section {
  padding: 110px 0;
  background: #fafafa;
}

.location-text {
  margin-top: 18px;
  font-size: 1.05rem;
  color: #555;
  max-width: 460px;
}

.location-info {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.location-info li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #444;
}

/* MAP */
.map-box {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.map-box iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .location-hero {
    min-height: 40vh;
  }

  .map-box iframe {
    height: 300px;
  }
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,0.85),
      rgba(0,0,0,0.45)
    ),
    url("images/hero2.jpg") center/cover no-repeat;
}

.about-section {
  padding: 110px 0;
  background: #fff;
}

.about-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 16px 45px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(0,0,0,0.14);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.about-stat {
  background: var(--soft);
  border-radius: 16px;
  padding: 18px 20px;
  text-align: center;
}

.about-stat h4 {
  margin: 0;
  font-weight: 800;
  color: var(--primary);
}

.about-stat span {
  font-size: 0.9rem;
  opacity: 0.75;
}

.about-timeline {
  margin-top: 40px;
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

.timeline-item span {
  font-weight: 700;
  color: var(--primary);
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 0;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}
/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 10px;

  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);

  animation: wa-float 2.8s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Icon */
.whatsapp-float img {
  width: 28px;
  height: 28px;
}

/* Hover */
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.6);
}

/* Jump animation (soft) */
@keyframes wa-float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Mobile text hide (sirf icon dikhe) */
@media (max-width: 576px) {
  .wa-text {
    display: none;
  }

  .whatsapp-float {
    padding: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
