/* =============================================
   KOVAI ROYAL BIRIYANI — STYLESHEET
   Theme: Bright, Warm Gold + Deep Saffron + Ivory
   ============================================= */

/* ---- CSS VARIABLES ---- */
:root {
  --gold: #D4AF37;
  --gold-light: #F5D06B;
  --gold-dark: #A8860C;
  --saffron: #FF6F00;
  --saffron-light: #FFA040;
  --deep-red: #8B1A1A;
  --cream: #FFF8EE;
  --ivory: #FFFDF7;
  --dark: #1A0A00;
  --dark-card: #2C1A08;
  --text-main: #2C1A08;
  --text-sub: #6B4C2A;
  --white: #FFFFFF;
  --shadow-gold: 0 8px 32px rgba(212,175,55,0.25);
  --shadow-card: 0 16px 48px rgba(44,26,8,0.15);
  --radius: 20px;
  --radius-sm: 12px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--ivory);
  color: var(--text-main);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.gold-text { color: var(--gold); }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5%;
  background: rgba(26, 10, 0, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 5%;
  background: rgba(26, 10, 0, 0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 12px rgba(212,175,55,0.4);
}

.nav-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 6px 0;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- HERO SECTION ---- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('image1.jpg') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,10,0,0.75) 0%,
    rgba(139,26,26,0.45) 50%,
    rgba(212,175,55,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  animation: heroFadeIn 1.2s ease forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.1;
  font-weight: 900;
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0 auto 36px;
  letter-spacing: 0.5px;
}

.find-us-btn {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--dark);
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(212,175,55,0.5), 0 0 0 0 rgba(212,175,55,0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transform: perspective(600px) translateZ(0);
}

.find-us-btn:hover {
  transform: perspective(600px) translateZ(12px) translateY(-3px);
  box-shadow: 0 16px 48px rgba(212,175,55,0.6), 0 0 30px rgba(212,175,55,0.3);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ---- SECTION SHARED STYLES ---- */
.section-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title.center { text-align: center; }

.section-sub {
  color: var(--text-sub);
  font-size: 1rem;
  margin-bottom: 48px;
}
.section-sub.center { text-align: center; }

/* ---- ABOUT SECTION ---- */
.about-section {
  padding: 100px 6%;
  background: linear-gradient(160deg, var(--ivory) 0%, #FFF3E0 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '🍛';
  position: absolute;
  font-size: 260px;
  opacity: 0.04;
  top: -40px; right: -40px;
  pointer-events: none;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-desc {
  color: var(--text-sub);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.badge {
  background: linear-gradient(135deg, var(--gold), var(--saffron-light));
  color: var(--dark);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(212,175,55,0.3);
  transition: transform 0.3s;
}

.badge:hover { transform: translateY(-3px); }

.about-img-3d {
  position: relative;
  border-radius: var(--radius);
  transform: perspective(1000px) rotateY(-6deg) rotateX(3deg);
  transition: transform 0.5s ease;
  box-shadow:
    8px 12px 40px rgba(212,175,55,0.25),
    0 0 0 4px rgba(212,175,55,0.15);
}

.about-img-3d:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.img-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(
    135deg,
    rgba(212,175,55,0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* ---- MENU SECTION ---- */
.menu-section {
  padding: 100px 6%;
  background: linear-gradient(180deg, #FFF8EE 0%, #FFF3DC 100%);
  position: relative;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto 80px;
}

.menu-card {
  perspective: 1200px;
  animation: cardRise 0.6s ease both;
  animation-delay: var(--delay, 0s);
}

@keyframes cardRise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu-card-inner {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(212,175,55,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform: perspective(1000px) translateZ(0);
  position: relative;
  overflow: hidden;
}

.menu-card-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--saffron));
}

.menu-card-inner:hover {
  transform: perspective(1000px) translateZ(20px) translateY(-6px);
  box-shadow: 0 24px 60px rgba(212,175,55,0.25), 0 8px 24px rgba(44,26,8,0.12);
}

.menu-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(212,175,55,0.4);
}

.menu-card-inner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 10px;
}

.menu-card-inner p {
  color: var(--text-sub);
  font-size: 0.9rem;
  line-height: 1.7;
}

.menu-tag {
  display: inline-block;
  margin-top: 16px;
  background: rgba(212,175,55,0.12);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---- ORDER ONLINE ---- */
.order-section {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 20px;
}

.order-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.order-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 36px 24px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.35s ease;
  border: 2px solid transparent;
  box-shadow: var(--shadow-card);
  transform: perspective(800px) translateZ(0);
}

.order-card:hover {
  transform: perspective(800px) translateZ(16px) translateY(-6px);
}

.order-card .fa-arrow-right {
  font-size: 0.85rem;
  opacity: 0.7;
}

.platform-logo {
  height: 36px;
  object-fit: contain;
}

.zomato-card {
  background: #fff5f5;
  border-color: #e23744;
  color: #e23744;
}
.zomato-card:hover { background: #e23744; color: #fff; }

.swiggy-card {
  background: #fff7ee;
  border-color: #fc8019;
  color: #fc8019;
}
.swiggy-card:hover { background: #fc8019; color: #fff; }

.petpooja-card {
  background: linear-gradient(135deg, #FFF8E1, #FFF3C4);
  border-color: var(--gold);
  color: var(--dark);
}
.petpooja-card:hover {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--dark);
}

.petpooja-icon { font-size: 2rem; color: var(--saffron); }
.petpooja-card small { font-size: 0.75rem; color: var(--text-sub); font-weight: 400; }

/* ---- ORDER MODAL ---- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,10,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active { display: flex; }

.modal-box {
  background: var(--ivory);
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 0 2px rgba(212,175,55,0.3);
}

.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--text-sub);
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--saffron); }

.modal-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 6px;
  color: var(--text-main);
}

.modal-sub {
  color: var(--text-sub);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.modal-menu-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.menu-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(212,175,55,0.12);
}

.menu-item-row .item-name { font-weight: 600; }
.menu-item-row .item-price { color: var(--saffron); font-weight: 700; }

.add-btn {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--dark);
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s;
}
.add-btn:hover { transform: scale(1.15); }

.loading-spinner {
  text-align: center;
  padding: 40px;
  color: var(--text-sub);
  font-size: 1rem;
}

.cart-section { margin-top: 24px; }
.cart-section h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(212,175,55,0.2);
  font-size: 0.9rem;
}

.cart-total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--saffron);
  text-align: right;
  margin: 16px 0;
}

.order-input {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 12px;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  background: var(--white);
  outline: none;
  transition: border-color 0.3s;
}
.order-input:focus { border-color: var(--gold); }

.place-order-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--dark);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  margin-top: 8px;
}
.place-order-btn:hover { opacity: 0.9; transform: translateY(-2px); }

.order-status {
  text-align: center;
  padding: 24px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  background: #f0fdf4;
  color: #16a34a;
  font-weight: 600;
  margin-top: 16px;
}

/* ---- REVIEWS SECTION ---- */
.reviews-section {
  padding: 100px 6%;
  background: linear-gradient(135deg, #1A0A00 0%, #2C1A08 100%);
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.reviews-section .section-label { color: var(--gold-light); }

.reviews-section .section-title { color: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.4s ease;
  transform: perspective(1000px) translateZ(0);
}

.review-card:hover {
  transform: perspective(1000px) translateZ(16px) translateY(-6px);
  border-color: var(--gold);
  background: rgba(212,175,55,0.06);
  box-shadow: 0 16px 48px rgba(212,175,55,0.15);
}

.featured-review {
  background: rgba(212,175,55,0.08);
  border-color: var(--gold);
  position: relative;
}

.featured-review::before {
  content: '★ Featured Review';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
  display: flex;
  gap: 4px;
}

.review-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}

.reviewer strong {
  color: var(--white);
  display: block;
  font-size: 0.95rem;
}

.reviewer small {
  color: var(--gold);
  font-size: 0.75rem;
}

/* ---- LOCATION SECTION ---- */
.location-section {
  padding: 100px 6%;
  background: linear-gradient(160deg, #FFF8EE 0%, #FFF3E0 100%);
}

.location-container {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.location-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(212,175,55,0.15);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: perspective(1000px) rotateY(3deg);
  transition: transform 0.4s ease;
}

.location-info-card:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.loc-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.loc-item i {
  color: var(--saffron);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.loc-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.loc-item p {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.5;
}

.directions-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--dark);
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
  margin-top: 8px;
}

.directions-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.4);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 2px solid rgba(212,175,55,0.2);
  height: 350px;
}

.map-embed iframe { height: 100%; }

/* ---- FOOTER SECTION ---- */
.footer-section {
  background: linear-gradient(180deg, #0F0500 0%, #1A0A00 100%);
  color: rgba(255,255,255,0.8);
  padding: 80px 6% 0;
  position: relative;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--saffron), var(--gold));
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}

.footer-logo {
  width: 70px; height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  margin-bottom: 16px;
  box-shadow: 0 0 20px rgba(212,175,55,0.3);
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
}

.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

.footer-nav h4::after,
.footer-contact h4::after,
.footer-social h4::after {
  content: '';
  display: block;
  width: 30px; height: 2px;
  background: var(--saffron);
  border-radius: 2px;
  margin-top: 6px;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }

.footer-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}

.footer-nav a:hover { color: var(--gold); padding-left: 6px; }

.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i { color: var(--gold); width: 16px; }

.social-links { display: flex; flex-direction: column; gap: 12px; }

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.social-btn.instagram {
  background: rgba(228,64,95,0.12);
  border-color: rgba(228,64,95,0.3);
  color: #E4405F;
}
.social-btn.instagram:hover { background: #E4405F; color: #fff; }

.social-btn.facebook {
  background: rgba(24,119,242,0.12);
  border-color: rgba(24,119,242,0.3);
  color: #1877F2;
}
.social-btn.facebook:hover { background: #1877F2; color: #fff; }

.social-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}

/* ---- SCROLL TO TOP BUTTON ---- */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--dark);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 500;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(212,175,55,0.5);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-3d {
    transform: none;
  }

  .location-container {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(26,10,0,0.97);
    flex-direction: column;
    align-items: center;
    padding: 24px 0;
    gap: 20px;
    transform: translateY(-120%);
    transition: transform 0.4s ease;
  }

  .nav-links.open { transform: translateY(0); }

  .hamburger { display: flex; }

  .footer-top { grid-template-columns: 1fr; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .map-embed { height: 250px; }

  .modal-box { padding: 28px 20px; }
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ---- MENU ITEM PHOTOS ---- */
.menu-img-wrap {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
}

.menu-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.menu-card-inner:hover .menu-item-img {
  transform: scale(1.07);
}
/* ---- SWIGGY LOGO FIX ---- */
.swiggy-logo {
  height: 32px;
  width: auto;
  filter: saturate(1.5);
}

/* ---- PETPOOJA CARD — no subtitle ---- */
.petpooja-card small {
  display: none;
}
/* ---- SWIGGY TEXT LOGO ---- */
.swiggy-text-logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fc8019;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -1px;
  line-height: 1;
}

.swiggy-card:hover .swiggy-text-logo {
  color: #fff;
}
/* ---- ORDER MODAL — CATEGORISED MENU ---- */
.modal-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--saffron);
  padding: 14px 0 6px;
  border-bottom: 1px solid rgba(212,175,55,0.2);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.menu-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid rgba(212,175,55,0.1);
  gap: 12px;
}

.item-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
}

.item-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.item-desc {
  font-size: 0.75rem;
  color: var(--text-sub);
  margin-top: 2px;
}

/* Veg / Non-veg indicator dots */
.veg-dot, .nonveg-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  border: 1.5px solid;
}

.veg-dot {
  background: #16a34a;
  border-color: #16a34a;
}

.nonveg-dot {
  background: #dc2626;
  border-color: #dc2626;
}