/* ============================================================
   SHREE RADHE RADHE – style.css
   Premium Dark-Gold Indian Restaurant Theme
   ============================================================ */

/* ===== DESIGN TOKENS ===== */
:root {
  --gold: #D4A843;
  --gold-light: #F0C96A;
  --gold-dark: #A07820;
  --saffron: #FF8C1A;
  --saffron-light: #FFB347;
  --crimson: #C0392B;
  --bg-dark: #0B0B0E;
  --bg-card: #13131A;
  --bg-card2: #1A1A26;
  --border: rgba(212, 168, 67, 0.15);
  --border-bright: rgba(212, 168, 67, 0.4);
  --text-primary: #F5F0E8;
  --text-muted: #9A9080;
  --text-faint: #5C5550;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --shadow-gold: 0 8px 40px rgba(212, 168, 67, 0.18);
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.5);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', system-ui, sans-serif;
}

/* ===== RESET ===== */

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



html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid var(--border-bright);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1rem;
}

.section-tag.light {
  color: var(--gold-light);
  border-color: rgba(240, 201, 106, 0.35);
  background: rgba(240, 201, 106, 0.08);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-title em {
  color: var(--gold);
  font-style: italic;
}

.section-title.light {
  color: var(--white);
}

.section-title.light em {
  color: var(--gold-light);
}

.section-desc {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-desc.light {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: #1A1000;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-bright);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(212, 168, 67, 0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #1A1000;
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(11, 11, 14, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-om {
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(212, 168, 67, 0.5));
  animation: pulse-glow 3s ease-in-out infinite;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border-bright);
  filter: drop-shadow(0 0 4px rgba(212, 168, 67, 0.3));
  transition: var(--transition);
}

.logo-img:hover {
  transform: scale(1.08);
  border-color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(212, 168, 67, 0.6));
}

@keyframes pulse-glow {

  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(212, 168, 67, 0.5));
  }

  50% {
    filter: drop-shadow(0 0 18px rgba(212, 168, 67, 0.9));
  }
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
}

.logo-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(212, 168, 67, 0.08);
}

.nav-cta {
  padding: 0.55rem 1.4rem;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: #1A1000;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
  transition: var(--transition);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero_food_spread.png') center/cover no-repeat;
  transform: scale(1.05);
  animation: subtle-zoom 20s ease-in-out infinite alternate;
}

@keyframes subtle-zoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(11, 11, 14, 0.88) 0%,
      rgba(11, 11, 14, 0.65) 50%,
      rgba(11, 11, 14, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  max-width: 860px;
  animation: fade-up 0.9s ease forwards;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid var(--border-bright);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--saffron);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.title-line1 {
  display: block;
  color: var(--gold-light);
}

.title-line2 {
  display: block;
  color: var(--text-primary);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(245, 240, 232, 0.75);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(8px);
}

.stars {
  display: flex;
  gap: 3px;
}

.stars i {
  color: var(--gold);
  font-size: 0.9rem;
}

.stars.large i {
  font-size: 1.1rem;
}

.rating-score {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.rating-count {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(4px);
}

.feature-badge i {
  color: var(--gold);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fade-up 1.2s ease 0.5s both;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
  transform: rotate(45deg);
  animation: bounce 1.8s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(6px);
  }
}

/* ===== MARQUEE ===== */
.marquee-section {
  overflow: hidden;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--saffron), var(--gold), var(--gold-dark));
  padding: 0.9rem 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 2.5rem;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-weight: 600;
  font-size: 0.9rem;
  color: #1A1000;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===== ABOUT ===== */
.about {
  padding: 6rem 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.about::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}

.about-img-wrapper:hover .about-img {
  transform: scale(1.04);
}

.about-img-badge {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  border-radius: var(--radius-md);
  padding: 0.75rem 1.1rem;
  text-align: center;
  color: #1A1000;
  box-shadow: var(--shadow-gold);
}

.badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.badge-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-serif);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-content-col {
  padding-top: 1rem;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.about-text strong {
  color: var(--text-primary);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.af-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.af-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}

.af-item strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.af-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.hours-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}

.hours-card h4 {
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-open {
  color: #5CBA7A;
  font-weight: 600;
}

/* ===== MENU ===== */
.menu {
  padding: 6rem 0;
  background: var(--bg-card);
  position: relative;
}

.menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center top, rgba(212, 168, 67, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.menu-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.menu-tab {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-xl);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  transition: var(--transition);
  font-family: var(--font-sans);
}

.menu-tab:hover {
  color: var(--text-primary);
  border-color: var(--gold-dark);
  background: rgba(212, 168, 67, 0.06);
}

.menu-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: #1A1000;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(212, 168, 67, 0.3);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.menu-item {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  animation: fade-up 0.5s ease both;
}

.menu-item:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-gold);
}

.menu-item-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-item:hover .menu-item-img {
  transform: scale(1.06);
}

.menu-item-img-wrap {
  overflow: hidden;
  position: relative;
}

.menu-item-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: #1A1000;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-xl);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.menu-item-body {
  padding: 1.1rem 1.25rem 1.25rem;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.menu-item-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-item-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
}

.menu-item-veg {
  width: 18px;
  height: 18px;
  border: 2px solid #2E8B57;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-item-veg::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #2E8B57;
  border-radius: 50%;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 6rem 0;
  background: var(--bg-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item.large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 11, 14, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold-light);
  font-weight: 600;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  max-width: 900px;
  text-align: center;
}

.lightbox-content img {
  max-height: 75vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.lightbox-content p {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--crimson);
}

.lightbox-prev,
.lightbox-next {
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid var(--border-bright);
  color: var(--gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: #1A1000;
}

/* ===== ORDER SECTION ===== */
.order-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.order-bg {
  position: absolute;
  inset: 0;
  background: url('images/sweets_display.png') center/cover no-repeat;
}

.order-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 11, 14, 0.93) 0%, rgba(26, 10, 0, 0.88) 100%);
}

.order-section>.container {
  position: relative;
  z-index: 2;
}

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

.delivery-card {
  display: block;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.delivery-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-dark);
  background: rgba(212, 168, 67, 0.06);
  box-shadow: var(--shadow-gold);
}

.delivery-card.featured {
  border-color: var(--gold-dark);
  background: rgba(212, 168, 67, 0.07);
}

.delivery-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.delivery-logo i {
  font-size: 2rem;
}

.delivery-logo span {
  font-size: 1.25rem;
  font-weight: 700;
}

.swiggy-logo {
  color: #FC8019;
}

.zomato-logo {
  color: #E23744;
}

.magicpin-logo {
  color: #7B2FF7;
}

.gmaps-logo {
  color: #4285F4;
}

.delivery-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.delivery-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
}

.delivery-cta i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.delivery-card:hover .delivery-cta i {
  transform: translateX(5px);
}

/* ===== REVIEWS ===== */
.reviews {
  padding: 6rem 0;
  background: var(--bg-card);
}

.overall-rating {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1rem;
  background: rgba(212, 168, 67, 0.06);
  border: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-xl);
}

.or-score {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-family: var(--font-serif);
}

.or-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 0.25rem 1.5rem;
}

.review-card {
  flex: 0 0 calc(33.33% - 1rem);
  min-width: 280px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
}

.review-header {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1rem;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--saffron));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1A1000;
  flex-shrink: 0;
  font-family: var(--font-serif);
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.review-meta {
  font-size: 0.77rem;
  color: var(--text-muted);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.85rem;
}

.review-stars i {
  color: var(--gold);
  font-size: 0.82rem;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
}

.review-quote {
  color: var(--gold-dark);
  font-size: 2rem;
  line-height: 0.5;
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid var(--border-bright);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.carousel-btn:hover {
  background: var(--gold);
  color: #1A1000;
}

.carousel-dots {
  display: flex;
  gap: 6px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.review-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ===== CONTACT ===== */
.contact {
  padding: 6rem 0;
  background: var(--bg-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--gold-dark);
  transform: translateX(6px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}

.contact-card h4 {
  color: var(--text-primary);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.contact-card p,
.contact-card a {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-card a {
  color: var(--gold);
  font-weight: 600;
}

.contact-card a:hover {
  color: var(--gold-light);
}

.map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: var(--radius-lg);
  display: block;
  filter: grayscale(0.3) brightness(0.85);
}

.map-directions-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.85rem;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-md);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.map-directions-btn:hover {
  background: var(--gold);
  color: #1A1000;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 4rem 0 1.5rem;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: #1A1000;
  transform: translateY(-3px);
}

.footer-links-col h4 {
  color: var(--text-primary);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links-col li a,
.footer-links-col li span {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.footer-links-col li a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-faint);
}

.heart {
  color: var(--crimson);
  font-size: 1rem;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 900;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.call-btn {
  background: #25D366;
  color: white;
}

.order-btn {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: #1A1000;
}

.float-btn:hover {
  transform: scale(1.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-img {
    height: 320px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 11, 14, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    position: relative;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.large {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .review-card {
    flex: 0 0 85%;
  }

  .delivery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large {
    grid-column: span 1;
  }

  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .hero-badges-row {
    gap: 0.5rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .review-card {
    flex: 0 0 92%;
  }
}

/* ===== INTERACTIVE CARD FOR RESERVATION ===== */
#aboutReservationsBtn {
  cursor: pointer;
  transition: var(--transition);
}

#aboutReservationsBtn:hover .af-icon {
  background: var(--gold);
  color: #1A1000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.4);
}

#footerReservationsBtn {
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  cursor: pointer;
  padding: 0;
}

#footerReservationsBtn:hover {
  color: var(--gold);
  transform: translateX(4px);
}

/* ===== MENU SEARCH BAR ===== */
.menu-search-container {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  padding: 0 1.5rem;
}

.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 0.2rem 1.25rem;
  transition: var(--transition);
}

.search-wrapper:focus-within {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.search-icon {
  color: var(--gold-dark);
  font-size: 1rem;
  margin-right: 0.75rem;
}

#menuSearch {
  width: 100%;
  padding: 0.65rem 0;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

#menuSearch::placeholder {
  color: var(--text-faint);
}

.clear-search-btn {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.4rem;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
}

.clear-search-btn:hover {
  color: var(--gold);
}

.menu-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.menu-no-results i {
  display: block;
  font-size: 2.5rem;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

/* ===== MODAL GENERAL STYLING ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 14, 0.85);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  padding: 2.25rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
}

.modal-close:hover {
  background: var(--crimson);
  color: var(--white);
}

.modal-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.modal-header h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-top: 0.5rem;
  margin-bottom: 0.35rem;
}

.modal-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== CALL TO BOOK POPUP STYLING ===== */
.call-to-book-container {
  max-width: 440px;
  text-align: center;
}

.call-to-book-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
}

.phone-icon-glow {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2.2rem;
  animation: phone-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(212, 168, 67, 0.15);
}

@keyframes phone-pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(212, 168, 67, 0.15);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(212, 168, 67, 0.35);
  }
}

.call-instruction {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.call-now-link {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  gap: 0.75rem;
  box-shadow: var(--shadow-gold);
}

.call-meta {
  font-size: 0.82rem;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.call-meta i {
  color: var(--gold-dark);
}

/* ===== FOOTER CREATOR CREDIT ===== */
.credit-link {
  color: var(--gold);
  font-weight: 600;
  transition: var(--transition);
}

.credit-link:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.credit-contact-link {
  color: var(--gold-light);
  text-decoration: underline;
  font-weight: 500;
  transition: var(--transition);
}

.credit-contact-link:hover {
  color: var(--white);
}

/* ===== CREATOR WHATSAPP FLOATING BADGE ===== */
.creator-whatsapp-tag {
  position: fixed;
  bottom: 2rem;
  left: 1.5rem;
  background: rgba(19, 19, 26, 0.85);
  border: 1px solid var(--border-bright);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  z-index: 950;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.creator-whatsapp-tag i {
  color: #25D366;
  font-size: 1.05rem;
}

.creator-whatsapp-tag:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}