/* ==========================================================================
   786 KEBAB & CURRY - OUT-OF-THE-BOX ULTRA-LUXURY DESIGN SYSTEM
   Theme: Warm Champagne & Royal Gold Fine-Dining Aesthetic
   Location: Buford, GA | 100% Certified Zabiha Halal
   Fully Mobile & Tablet Optimized (Mobile-First Architecture)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;0,900;1,600&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Warm Champagne Luxury Palette */
  --bg-main: #FDFBF7;
  --bg-card: #FFFFFF;
  --bg-surface: #F5F0E6;
  --bg-surface-dark: #1E1A16;
  --bg-glass: rgba(253, 251, 247, 0.94);
  
  --border-gold: rgba(197, 155, 39, 0.25);
  --border-gold-bright: rgba(197, 155, 39, 0.6);
  
  --gold-primary: #C59B27;
  --gold-dark: #9A771B;
  --gold-light: #F7E8BA;
  --gold-gradient: linear-gradient(135deg, #DFB743 0%, #C59B27 50%, #9A771B 100%);
  --gold-glow: rgba(197, 155, 39, 0.25);
  
  --burgundy-primary: #8A1C1C;
  --burgundy-gradient: linear-gradient(135deg, #A82424 0%, #8A1C1C 50%, #5C1111 100%);
  --burgundy-glow: rgba(138, 28, 28, 0.25);
  
  --emerald-primary: #0F766E;
  
  --text-dark: #111111;
  --text-body: #333333;
  --text-muted: #666666;
  --text-light: #F9FAFB;
  
  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  
  /* Radii & Shadows */
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 16px 36px -8px rgba(30, 20, 10, 0.08);
  --shadow-card-hover: 0 24px 48px -10px rgba(197, 155, 39, 0.22);
  --shadow-burgundy: 0 16px 36px -8px rgba(138, 28, 28, 0.3);
  
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-surface);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: var(--radius-pill);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 16px;
}

body {
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

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

/* Container */
.container {
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
}

/* Top Announcement Bar */
/* Top Announcement Bar */
.top-announcement {
  background: linear-gradient(180deg, #1C160E 0%, #120D08 100%);
  border-bottom: 1px solid rgba(197, 155, 39, 0.4);
  padding: 10px 0;
  font-size: 0.85rem;
  color: #E5DCCB;
  box-shadow: inset 0 -1px 0 rgba(247, 232, 186, 0.1);
}

.top-announcement .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.announcement-item i {
  color: var(--gold-light);
}

.halal-pill {
  background: rgba(15, 118, 110, 0.25);
  border: 1px solid var(--emerald-primary);
  color: #2DD4BF;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.775rem;
  letter-spacing: 0.5px;
  box-shadow: 0 0 10px rgba(45, 212, 191, 0.2);
}

/* ==========================================================
   ANTIQUE ROYAL LUXURY HEADER REDESIGN
   Warm Royal Gold Illumination & 3D Embossed Golden Chips
   ========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: 
    radial-gradient(ellipse at 50% -30%, rgba(197, 155, 39, 0.3) 0%, transparent 70%),
    linear-gradient(180deg, #1D170E 0%, #130F09 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(247, 232, 186, 0.2);
  transition: var(--transition-smooth);
}

/* Glowing Antique Gold Filigree Trim */
.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #9A771B 15%, 
    #C59B27 35%, 
    #F7E8BA 50%, 
    #C59B27 65%, 
    #9A771B 85%, 
    transparent 100%
  );
  box-shadow: 0 0 12px rgba(197, 155, 39, 0.6);
}

.site-header.scrolled {
  background: 
    radial-gradient(ellipse at 50% -30%, rgba(197, 155, 39, 0.35) 0%, transparent 75%),
    linear-gradient(180deg, #161109 0%, #0E0B06 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.75), 0 0 20px rgba(197, 155, 39, 0.25);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

/* Logo Badge */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo img {
  height: 54px;
  max-width: 210px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  background: #FFFFFF;
  border: 1.5px solid rgba(197, 155, 39, 0.8);
  box-shadow: 
    inset 0 0 6px rgba(197, 155, 39, 0.3),
    0 4px 18px rgba(0, 0, 0, 0.5),
    0 0 12px rgba(197, 155, 39, 0.3);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo:hover img {
  border-color: #F7E8BA;
  box-shadow: 
    inset 0 0 8px rgba(247, 232, 186, 0.5),
    0 8px 26px rgba(197, 155, 39, 0.6);
  transform: translateY(-2px) scale(1.03);
}

/* Navigation Links: 3D Embossed Royal Gold Chips */
.nav-links {
  display: flex;
  align-items: center;
  gap: 7px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.86rem;
  color: #E8DCC4;
  padding: 8px 14px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(45, 36, 24, 0.85) 0%, rgba(20, 16, 10, 0.95) 100%);
  border: 1px solid rgba(197, 155, 39, 0.45);
  box-shadow: 
    inset 0 1px 0 rgba(247, 232, 186, 0.25),
    inset 0 -1px 3px rgba(0, 0, 0, 0.8),
    0 4px 10px rgba(0, 0, 0, 0.35);
  position: relative;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
  color: #FFFFFF;
  border-color: #F7E8BA;
  background: linear-gradient(180deg, rgba(85, 66, 38, 0.95) 0%, rgba(35, 27, 15, 0.98) 100%);
  box-shadow: 
    inset 0 1px 1px rgba(255, 245, 210, 0.4),
    0 0 18px rgba(197, 155, 39, 0.45);
  transform: translateY(-2px);
}

.nav-link.active {
  color: #151008;
  background: linear-gradient(180deg, #F5D98B 0%, #C59B27 65%, #9A771B 100%);
  border-color: #FFECA8;
  font-weight: 800;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 6px 20px rgba(197, 155, 39, 0.55);
  transform: translateY(-1px);
}

.nav-link::after {
  display: none;
}

/* Online Order Button in Nav */
.site-header .btn-gold {
  background: linear-gradient(180deg, #F5D98B 0%, #C59B27 65%, #9A771B 100%);
  color: #151008;
  font-weight: 800;
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  border: 1px solid #FFECA8;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 6px 20px rgba(197, 155, 39, 0.5);
  font-size: 0.875rem;
}

.site-header .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 28px rgba(197, 155, 39, 0.65);
  background: linear-gradient(180deg, #FFF0C2 0%, #F5D98B 60%, #C59B27 100%);
}

/* Luxury Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-weight: 700;
  font-size: 0.925rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.3px;
  touch-action: manipulation;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #111111;
  box-shadow: 0 10px 25px var(--gold-glow);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(197, 155, 39, 0.38);
}

.btn-burgundy {
  background: var(--burgundy-gradient);
  color: #FFFFFF;
  box-shadow: var(--shadow-burgundy);
}

.btn-burgundy:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(138, 28, 28, 0.45);
}

.btn-outline-dark {
  background: transparent;
  border: 1.5px solid var(--text-dark);
  color: var(--text-dark);
}

.btn-outline-dark:hover {
  background: var(--text-dark);
  color: #FFFFFF;
  transform: translateY(-3px);
}

/* Mobile Menu Toggle & Navigation Drawer */
.mobile-toggle {
  display: none;
  background: rgba(197,155,39,0.12);
  border: 1px solid rgba(197,155,39,0.4);
  color: #F7E8BA;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.mobile-toggle:hover {
  background: rgba(197,155,39,0.22);
  color: #FFE066;
}

.mobile-nav-drawer {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #111008 0%, #1A160E 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 20px 24px 28px;
  border-bottom: 2px solid rgba(197,155,39,0.5);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  z-index: 999;
  gap: 4px;
}

.mobile-nav-drawer.open {
  display: flex;
}

.mobile-nav-link {
  padding: 11px 16px;
  font-size: 1rem;
  font-weight: 600;
  color: #D6CCA8;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  letter-spacing: 0.3px;
}

.mobile-nav-link:hover {
  color: #F7E8BA;
  background: rgba(197,155,39,0.12);
  padding-left: 22px;
}

/* Sticky Mobile Bottom Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #181410;
  padding: 10px 16px;
  border-top: 1px solid var(--gold-primary);
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.2);
}

.mobile-bottom-bar .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 991px) {
  .mobile-bottom-bar {
    display: block;
  }
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 70px 0 60px;
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-surface) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 155, 39, 0.12);
  border: 1px solid var(--gold-primary);
  color: var(--gold-dark);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero-title .gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 32px;
  max-width: 600px;
  line-height: 1.7;
}

.hero-btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-delivery-strip {
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.delivery-strip-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

.hero-delivery-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-delivery-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.hero-delivery-pill:hover {
  border-color: var(--gold-primary);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.hero-media-wrapper {
  position: relative;
}

.hero-media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid #FFFFFF;
  box-shadow: 0 25px 50px -15px rgba(30, 20, 10, 0.2);
}

.hero-media-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-media-frame:hover img {
  transform: scale(1.04);
}

.hero-float-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold-bright);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.float-badge-icon {
  width: 46px;
  height: 46px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  font-size: 1.3rem;
}

.float-badge-text h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.float-badge-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ABOUT US SECTION */
.about-section {
  padding: 90px 0;
  background: #FFFFFF;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--border-gold);
}

.about-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-content-wrap h2 {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--text-dark);
  margin-bottom: 18px;
  line-height: 1.2;
}

.about-content-wrap h2 span {
  color: var(--gold-primary);
}

.about-lead-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.6;
}

.about-body-text {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 28px;
  line-height: 1.75;
}

.about-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-highlight-box {
  background: var(--bg-main);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 18px;
}

.about-highlight-box h4 {
  font-size: 1rem;
  color: var(--gold-dark);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-highlight-box p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* REAL RESTAURANT PHOTO GALLERY */
.gallery-section {
  padding: 80px 0;
  background: var(--bg-surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
  box-shadow: var(--shadow-card);
  border: 2px solid #FFFFFF;
}

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

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

.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(17, 17, 17, 0.85) 100%);
  padding: 20px;
  color: #FFFFFF;
}

.gallery-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
}

/* REVIEWS SECTION WITH CUSTOMER FOOD PHOTOS */
.reviews-section {
  padding: 80px 0;
  background: var(--bg-main);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.review-box {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.review-box-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #FFF;
  font-size: 1.1rem;
}

.review-author-meta h4 {
  font-size: 1rem;
  color: var(--text-dark);
}

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

.review-stars {
  color: var(--gold-primary);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.review-quote {
  font-size: 0.9rem;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.review-food-photo-wrap {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 180px;
  border: 1px solid var(--border-gold);
}

.review-food-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.review-box:hover .review-food-photo-wrap img {
  transform: scale(1.06);
}

.photo-caption-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(17, 17, 17, 0.85);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* BUFFET BANNER */
.buffet-section {
  padding: 40px 0 70px;
}

.buffet-banner {
  background: linear-gradient(135deg, #241D17 0%, #15110E 100%);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  color: #FFFFFF;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.buffet-info h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #FFF;
  margin-bottom: 12px;
}

.buffet-info h2 span {
  color: var(--gold-light);
}

.buffet-info p {
  font-size: 1.05rem;
  color: #E5DCCB;
  max-width: 760px;
  margin-bottom: 18px;
}

.buffet-perks {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.buffet-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-light);
}

/* SECTION TITLES */
.section-title-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.section-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* MENU SHOWCASE */
.menu-section {
  padding: 80px 0;
  background: var(--bg-main);
}

.menu-filter-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.menu-search-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.menu-search-wrapper input {
  width: 100%;
  background: #FFFFFF;
  border: 1.5px solid var(--border-gold);
  padding: 14px 20px 14px 48px;
  border-radius: var(--radius-pill);
  color: var(--text-dark);
  font-size: 0.95rem;
  outline: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.menu-search-wrapper input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 18px var(--gold-glow);
}

.menu-search-wrapper i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
  font-size: 1.1rem;
}

.category-tabs-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 992px) {
  .category-tabs-row {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
  }
}

.category-tab {
  flex-shrink: 0;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-body);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.category-tab:hover {
  border-color: var(--gold-primary);
  color: var(--gold-dark);
}

.category-tab.active {
  background: var(--gold-gradient);
  color: #111111;
  font-weight: 800;
  border-color: var(--gold-primary);
  box-shadow: 0 6px 16px var(--gold-glow);
}

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

.dish-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.dish-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold-bright);
  box-shadow: var(--shadow-card-hover);
}

.dish-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.dish-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dish-card:hover .dish-card-img-wrap img {
  transform: scale(1.08);
}

.dish-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(17, 17, 17, 0.9);
  color: var(--gold-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
}

.dish-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dish-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.dish-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

.dish-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-dark);
}

.dish-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.5;
  flex-grow: 1;
}

.dish-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.dish-rating {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.825rem;
}

.btn-order-dish {
  background: rgba(197, 155, 39, 0.12);
  border: 1px solid var(--gold-primary);
  color: var(--gold-dark);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.825rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-order-dish:hover {
  background: var(--gold-gradient);
  color: #111111;
}

/* DELIVERY HUB */
.delivery-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.delivery-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.delivery-hub-card {
  background: var(--bg-main);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.delivery-hub-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.delivery-hub-card.pos-card {
  border-color: var(--gold-primary);
  background: #FFFDF8;
}

.delivery-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.pos-card .delivery-icon-circle { background: rgba(197, 155, 39, 0.15); color: var(--gold-dark); }
.ubereats-card .delivery-icon-circle { background: rgba(6, 193, 103, 0.12); color: #06C167; }
.doordash-card .delivery-icon-circle { background: rgba(255, 48, 8, 0.12); color: #FF3008; }
.grubhub-card .delivery-icon-circle { background: rgba(246, 52, 64, 0.12); color: #F63440; }

.delivery-hub-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.delivery-hub-desc {
  font-size: 0.875rem;
  color: var(--text-body);
  margin-bottom: 24px;
  flex-grow: 1;
  line-height: 1.5;
}

/* LOCATION & HOURS SECTION */
.location-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.location-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hours-card {
  background: var(--bg-main);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.hours-card-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hours-info-group {
  margin-bottom: 20px;
}

.hours-info-group h4 {
  font-size: 1.05rem;
  color: var(--gold-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hours-info-group p {
  color: var(--text-body);
  font-size: 0.925rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
  color: var(--text-body);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--text-dark);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================
   ANTIQUE ROYAL LUXURY FOOTER REDESIGN
   Deep Mahogany Gold Glow & Embossed Framed Cards
   ========================================================== */
.site-footer {
  background: 
    radial-gradient(ellipse at 50% -20%, rgba(197, 155, 39, 0.25) 0%, transparent 65%),
    linear-gradient(180deg, #1A140D 0%, #0D0A06 100%);
  border-top: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
  padding: 72px 0 36px;
  color: #C5BBAA;
  font-size: 0.9rem;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(247, 232, 186, 0.25);
}

/* Glowing Top Filigree Border Line */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #9A771B 15%, 
    #C59B27 35%, 
    #F7E8BA 50%, 
    #C59B27 65%, 
    #9A771B 85%, 
    transparent 100%
  );
  box-shadow: 0 0 14px rgba(197, 155, 39, 0.7);
}

.footer-columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

/* Embossed 3D Royal Framed Cards for Footer Columns */
.footer-brand, .footer-col {
  background: linear-gradient(180deg, rgba(38, 30, 19, 0.85) 0%, rgba(16, 12, 8, 0.95) 100%);
  border: 1px solid rgba(197, 155, 39, 0.4);
  border-radius: 16px;
  padding: 30px 28px;
  box-shadow: 
    inset 0 1px 0 rgba(247, 232, 186, 0.2),
    inset 0 -1px 3px rgba(0, 0, 0, 0.8),
    0 12px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.35s ease;
}

.footer-brand:hover, .footer-col:hover {
  border-color: rgba(247, 232, 186, 0.6);
  box-shadow: 
    inset 0 1px 1px rgba(255, 245, 210, 0.3),
    0 16px 40px rgba(0, 0, 0, 0.65),
    0 0 20px rgba(197, 155, 39, 0.25);
  transform: translateY(-3px);
}

/* Footer logo image */
.footer-brand-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand-logo img {
  height: 60px !important;
  max-width: 230px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  background: #FFFFFF;
  border: 1.5px solid rgba(197, 155, 39, 0.7);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.35s ease;
}

.footer-brand-logo:hover img {
  border-color: #F7E8BA;
  box-shadow: 0 8px 26px rgba(197, 155, 39, 0.6);
}

.footer-brand > p {
  color: #D4C9B5;
  line-height: 1.8;
  font-size: 0.9rem;
}

.footer-col h4 {
  font-family: var(--font-serif);
  color: #F5D98B;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, #C59B27, transparent);
  border-radius: var(--radius-pill);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #B8AC96;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.footer-links a::before {
  content: '›';
  color: #C59B27;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.footer-links a:hover {
  color: #F7E8BA;
  padding-left: 4px;
}

.footer-links a:hover::before {
  transform: translateX(4px);
  color: #F7E8BA;
}

/* Social icons in footer */
.footer-links .fab,
.footer-links .fas {
  color: #C59B27;
  width: 14px;
}

.footer-bottom {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid rgba(197, 155, 39, 0.2);
  position: relative;
  z-index: 1;
  color: #9C8E77;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.designer-credit {
  color: #F5D98B;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.designer-credit stroke, .designer-credit strong {
  color: #FFECA8;
  text-shadow: 0 0 10px rgba(197, 155, 39, 0.4);
}

/* RESPONSIVE DESIGN - MOBILE & TABLET FIRST */
@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .buffet-banner { grid-template-columns: 1fr; text-align: center; }
  .buffet-perks { justify-content: center; }
  .location-grid-layout { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: 1fr; gap: 30px; }
  .hero-title { font-size: 2.6rem; }
  .section-heading { font-size: 2.1rem; }
  .about-content-wrap h2 { font-size: 2.2rem; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
}

@media (max-width: 576px) {
  .container { width: 94%; }
  .hero-section { padding: 40px 0; }
  .hero-title { font-size: 2.1rem; }
  .hero-desc { font-size: 1rem; }
  .section-heading { font-size: 1.8rem; }
  .about-content-wrap h2 { font-size: 1.8rem; }
  .buffet-banner { padding: 28px 20px; }
  .buffet-info h2 { font-size: 1.8rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .about-highlights-grid { grid-template-columns: 1fr; }
  .hours-card { padding: 24px; }
}
