/* ==========================================
   VA BAGEL - Visual Presentation Architecture
   Fancy Restaurant Modern Upgrade & Retouch
   ========================================== */

/* --- Root Design System Tokens --- */
:root {
  /* Brand System Colors */
  --primary: #2D2522;         /* Deep Rich Espresso Slate */
  --accent: #E67E22;          /* Warm Honey Gold */
  --accent-dark: #D35400;     /* Rich Amber Orange */
  --accent-light: #F39C12;    /* Golden Amber */
  --cream-bg: #FFFDF9;        /* Very Soft Cream */
  --white: #FFFFFF;           /* Clean Ice White */
  --surface-cream: #FAF6F0;   /* Muted Cream Card Surface */
  --text-dark: #2D2522;       /* Base Body Text */
  --text-muted: #6B5E59;      /* Muted Subtitle / Secondary Text */
  --border-light: rgba(45, 37, 34, 0.08); /* Subtle Line Divider */
  --border-accent: rgba(230, 126, 34, 0.25);
  --gold-gradient: linear-gradient(135deg, #F39C12 0%, #E67E22 50%, #D35400 100%);

  /* Elevation Shadows */
  --shadow-sm: 0 4px 12px rgba(45, 37, 34, 0.04);
  --shadow-md: 0 10px 25px rgba(45, 37, 34, 0.07);
  --shadow-lg: 0 20px 40px rgba(45, 37, 34, 0.12);
  --shadow-accent: 0 16px 32px rgba(230, 126, 34, 0.22);

  /* Typography Stack */
  --font-fancy: 'Cinzel', serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Global Transitions & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- Global Scroll & Reset --- */
/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  box-sizing: border-box;
}

/* ==========================================
   DYNAMIC SCROLL REVEAL & ANIMATION SYSTEM
   ========================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Delays for Grid Elements */
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* Horizontal Reveal Variations */
.reveal-from-left {
  opacity: 0;
  transform: translateX(-45px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-from-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-from-right {
  opacity: 0;
  transform: translateX(45px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-from-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

/* --- Layout Containers --- */
.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}

/* --- Buttons & Interactive CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-bounce);
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #1f1816;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--gold-gradient);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.35);
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-block {
  display: flex !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

/* --- Section Headings --- */
.section-header {
  text-align: left;
  margin-bottom: 50px;
}

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

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--accent);
  margin-bottom: 8px;
}

.section-tag-gold {
  color: var(--accent-light);
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
}

.center-header .section-subtitle {
  margin: 0 auto;
}

/* --- FIXED GLASSMORPHISM NAVBAR WITH ENLARGED LOGO --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(253, 249, 243, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 126, 34, 0.18);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled {
  background: rgba(253, 249, 243, 0.97);
  box-shadow: 0 6px 24px rgba(45, 37, 34, 0.08);
  border-bottom-color: rgba(230, 126, 34, 0.25);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Ultra-Sharp Original Logo Emblem Styling */
.logo-ring-wrap {
  height: 68px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
  filter: none;
}

.brand-logo-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  background: transparent;
}

.nav-brand:hover .logo-ring-wrap {
  transform: scale(1.06) rotate(3deg);
  filter: none;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--primary);
}

.brand-accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-item {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--primary);
  position: relative;
  padding: 6px 0;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

.nav-item.active {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  padding: 5px;
}

.hamburger-icon {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

/* --- HERO FRAME SECTION WITH ULTRA-SHARP SLIDER --- */
.hero-frame {
  position: relative;
  padding: 175px 0 110px;
  background: linear-gradient(145deg, #FFFFFF 0%, #FFFDF9 50%, #FAF6F0 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  opacity: 0.55;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(230, 126, 34, 0.16);
  top: -60px;
  right: 8%;
}

.shape-2 {
  width: 340px;
  height: 340px;
  background: rgba(243, 156, 18, 0.14);
  bottom: -60px;
  left: 4%;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(230, 126, 34, 0.1);
  color: var(--accent-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  border: 1px solid rgba(230, 126, 34, 0.25);
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.15;
}

.text-highlight {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--border-light);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 38px;
  background-color: var(--border-light);
}

/* Hero Gallery Card Showcase */
.hero-image-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-main-card {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-accent);
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.8s ease;
}

.gallery-main-card:hover .hero-slide-img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 34px 28px 24px;
  background: linear-gradient(to top, rgba(45, 37, 34, 0.92) 0%, rgba(45, 37, 34, 0) 100%);
  color: var(--white);
}

.overlay-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent-light);
}

.overlay-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.thumb-img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-md);
  cursor: pointer;
  opacity: 0.65;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumb-img:hover, .thumb-img.active {
  opacity: 1;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* --- FANCY RESTAURANT RETOUCHED MENU SECTION --- */
.menu-display {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream-bg) 50%, var(--white) 100%);
}

/* Fancy Category Filter Nav Tabs */
.fancy-category-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  padding: 10px;
  background: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.category-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background-color: transparent;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-tab:hover {
  background-color: var(--cream-bg);
  color: var(--accent);
  transform: translateY(-2px);
}

.category-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

/* Fancy Menu Layout Architecture */
.fancy-menu-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.fancy-menu-section {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.fancy-menu-section.hidden-section {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

.fancy-section-heading {
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 2px dashed var(--border-accent);
}

.fancy-section-heading h3 {
  font-family: var(--font-fancy);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--primary);
}

.heading-gold {
  color: var(--accent);
  font-style: italic;
  margin-right: 8px;
}

.fancy-section-heading p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 4px;
}

.fancy-price-header {
  display: inline-block;
  margin-top: 12px;
  background-color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  color: var(--primary);
  border: 1px solid var(--border-accent);
  box-shadow: var(--shadow-sm);
}

/* Bagel Item Chips Grid */
.fancy-grid-bagels {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}

.bagel-item-chip {
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--accent);
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(230, 126, 34, 0.1);
}

.bagel-item-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(230, 126, 34, 0.22);
  border-color: var(--accent-hover);
}

.chip-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--primary);
}

.chip-dot.gold { background-color: var(--accent); }
.chip-dot.red { background-color: #C0392B; }

.mini-star {
  color: var(--accent);
  margin-left: auto;
  font-size: 0.85rem;
}

.chip-tag-seasonal {
  color: var(--accent);
  margin-left: auto;
  font-size: 0.82rem;
  font-weight: 600;
  font-style: italic;
  opacity: 0.9;
}

/* Fancy Menu Grid & Ultra-Sharp Cards */
.fancy-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
}

.fancy-menu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  gap: 20px;
  border: 2px solid var(--accent);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.12);
}

.fancy-menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(230, 126, 34, 0.25);
  border-color: var(--accent-hover);
}

.fancy-menu-card.featured-card {
  border: 2px solid var(--accent);
}

.fancy-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold-gradient);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(230, 126, 34, 0.3);
}

.card-thumb {
  width: 95px;
  height: 95px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream-bg);
  border: 1px solid var(--border-light);
}

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

.fancy-menu-card:hover .card-thumb img {
  transform: scale(1.12);
}

.card-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}

.card-item-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}

.card-item-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--accent-dark);
  white-space: nowrap;
}

.card-item-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Full Width Featured Spotlight Card */
.full-width-card {
  grid-column: 1 / -1;
  padding: 32px;
  align-items: center;
  background: linear-gradient(135deg, var(--white) 0%, var(--cream-bg) 100%);
}

.card-thumb-large {
  width: 220px;
  height: 150px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.card-thumb-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- CATERING SECTION WITH ELEVATED CARDS --- */
.catering-section {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--cream-bg) 0%, var(--white) 100%);
}

.catering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 40px;
}

.catering-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--accent);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}

.catering-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(230, 126, 34, 0.25);
  border-color: var(--accent-hover);
}

.catering-img-wrap {
  width: 100%;
  height: 230px;
  overflow: hidden;
}

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

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

.catering-card-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  box-sizing: border-box;
  align-items: stretch;
  width: 100%;
  min-width: 0;
}

.catering-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.catering-card-body p {
  color: var(--text-muted);
  font-size: 0.925rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.catering-card-body .btn {
  margin-top: auto;
  border-color: var(--accent);
  background-color: var(--cream-bg);
  color: var(--primary);
}

.catering-card-body .btn:hover {
  background-color: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* --- ABOUT US STORY SECTION WITH DRAMATIC DARK ESPRESSO BACKDROP --- */
.about-us {
  padding: 110px 0;
  background: var(--primary); /* Deep Espresso Slate */
  color: var(--white);
  position: relative;
  overflow: hidden;
}

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

.text-light {
  color: var(--white) !important;
}

.text-light-muted {
  color: rgba(255, 255, 255, 0.75) !important;
}

.about-paragraph {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.feature-item.dark-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gold-icon {
  background-color: var(--accent) !important;
  color: var(--white) !important;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.feature-text h5 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 0.875rem;
}

.about-photo-showcase {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-accent);
}

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

.showcase-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(45, 37, 34, 0.92);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 18px 28px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent);
}

.badge-big {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.badge-sub {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- LOCATION & CONTACT HUB SECTION --- */
.location-hub {
  padding: 110px 0;
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
  align-items: start;
}

.info-card-block {
  background-color: var(--cream-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
}

.info-block-title, .form-block-title {
  font-size: 1.6rem;
  margin-bottom: 28px;
}

.info-list-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.info-list-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--white);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.info-details h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.info-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.highlight-time {
  font-weight: 600;
  color: var(--primary) !important;
}

.phone-link {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
}

.phone-link:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.map-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
}

.map-link:hover {
  color: var(--accent-dark);
  transform: translateX(4px);
}

/* Modern Floating Label Form */
.form-card-block {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.modern-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  min-width: 0;
}

.floating-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 18px 16px 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--primary);
  background-color: var(--cream-bg);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.floating-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.95rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.25s ease;
}

/* Floating Label Active Behavior */
.form-input:focus ~ .floating-label,
.form-input:not(:placeholder-shown) ~ .floating-label {
  top: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.14);
  background-color: var(--white);
}

.cf-turnstile-wrapper {
  margin-top: 4px;
  margin-bottom: 4px;
  display: flex;
  justify-content: flex-start;
}

.form-status-msg {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
}

.form-status-msg.success {
  background-color: #E8F8F5;
  color: #117A65;
  border: 1px solid #A3E4D7;
}

.form-status-msg.error {
  background-color: #FDEDEC;
  color: #C0392B;
  border: 1px solid #F9EBEA;
}

/* --- FOOTER ARCHITECTURE --- */
.site-footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 80px 0 0;
  border-top: 3px solid var(--accent);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 120px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 420px;
}

.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 22px;
  position: relative;
}

.footer-links h4::after, .footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--accent);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-link-gold {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
}

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

.footer-hours-badge {
  display: inline-block;
  background: rgba(230, 126, 34, 0.15);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  background: rgba(0, 0, 0, 0.2);
}

.bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES (@media (max-width: 768px))
   ========================================== */
@media (max-width: 768px) {
  .reveal-from-left,
  .reveal-from-right {
    transform: translateY(25px);
  }

  .reveal-from-left.is-visible,
  .reveal-from-right.is-visible {
    transform: translateY(0);
  }

  .mobile-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 92px;
    left: 0;
    width: 100%;
    background: rgba(253, 249, 243, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--border-light);
    display: none;
  }

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

  .hero-frame {
    padding: 120px 0 50px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

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

  .hero-subtitle {
    margin: 0 auto 24px;
  }

  .hero-cta-group {
    justify-content: center;
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
    padding: 12px 18px;
    font-size: 0.92rem;
  }

  .btn {
    padding: 11px 16px;
    font-size: 0.88rem;
  }

  .form-card-block,
  .info-card-block {
    padding: 24px 16px;
  }

  .catering-card-body {
    padding: 20px 16px;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .fancy-category-nav {
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .category-tab {
    flex-shrink: 0;
  }

  .about-grid,
  .contact-grid,
  .catering-grid,
  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .fancy-menu-grid {
    grid-template-columns: 1fr;
  }

  .fancy-menu-card {
    flex-direction: row;
    align-items: center;
  }

  .full-width-card {
    flex-direction: column;
    text-align: center;
  }

  .card-thumb-large {
    width: 100%;
    height: 180px;
  }

  .bottom-flex {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .fancy-menu-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-thumb {
    width: 100%;
    height: 180px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .brand-text {
    font-size: 1.4rem;
  }

  .form-card-block,
  .info-card-block {
    padding: 20px 14px;
  }

  .catering-card-body {
    padding: 18px 14px;
  }

  .btn-lg {
    padding: 11px 16px;
    font-size: 0.88rem;
  }

  .btn {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
}
