/*
Theme Name: Banhmigos Cafe Simple
Theme URI: https://banhmigos.com
Author: Banhmigos
Author URI: https://banhmigos.com
Description: A simplified one-page theme for Banhmigos Cafe - easy to customize with a single settings page.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: banhmigos-simple
Tags: one-page, restaurant, food, custom-menu, custom-logo
*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --primary: 14 78% 54%;
  --primary-foreground: 0 0% 100%;
  --secondary: 35 25% 96%;
  --secondary-foreground: 25 30% 25%;
  --background: 40 20% 99%;
  --foreground: 25 30% 15%;
  --muted: 35 15% 92%;
  --muted-foreground: 25 15% 45%;
  --accent: 35 80% 55%;
  --accent-warm: 25 85% 50%;
  --card: 0 0% 100%;
  --border: 35 15% 88%;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.03);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-large: 0 20px 50px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.06);
  --radius: 1rem;
  --radius-lg: 1.5rem;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: hsl(var(--foreground));
}
h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; letter-spacing: -0.02em; }
h3 { font-size: 1.5rem; }
a { color: hsl(var(--primary)); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: hsl(14 78% 44%); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(14 78% 48%));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 4px 15px hsl(var(--primary) / 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px hsl(var(--primary) / 0.45);
}
.btn-secondary {
  background-color: hsl(var(--card));
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-soft);
}
.btn-secondary:hover {
  background-color: hsl(var(--secondary));
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}
.btn-outline {
  background-color: transparent;
  color: hsl(var(--primary-foreground));
  border: 2px solid hsl(var(--primary-foreground) / 0.5);
}
.btn-outline:hover {
  background-color: hsl(var(--primary-foreground) / 0.1);
  border-color: hsl(var(--primary-foreground));
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.3s;
}
.site-header.scrolled {
  background-color: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  padding: 0.75rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo { display: flex; align-items: center; gap: 0.5rem; }
.site-logo .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  transition: color 0.3s;
}
.site-header.scrolled .site-logo .logo-text { color: hsl(var(--primary)); }
.site-logo .logo-subtitle {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--primary-foreground) / 0.7);
}
.site-header.scrolled .site-logo .logo-subtitle { color: hsl(var(--muted-foreground)); }
.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
  font-size: 0.175rem;
  font-weight: 500;
  color: hsl(var(--primary-foreground));
  transition: color 0.3s;
}
.site-header.scrolled .main-nav a { color: hsl(var(--foreground)); }
.main-nav a:hover { color: hsl(var(--primary)); }
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: hsl(var(--primary-foreground));
}
.site-header.scrolled .mobile-menu-toggle { color: hsl(var(--foreground)); }
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 1rem;
  right: 1rem;
  background-color: hsl(var(--background) / 0.98);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-medium);
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  color: hsl(var(--foreground));
  padding: 0.75rem;
  border-radius: calc(var(--radius) - 4px);
}
.mobile-nav a:hover { background-color: hsl(var(--muted)); }
.mobile-nav-info {
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid hsl(var(--border));
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}
.mobile-nav-info p { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* ============================================
   HERO
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.65));
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 2rem;
}
.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: hsl(var(--primary) / 0.9);
  color: hsl(var(--primary-foreground));
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: 4rem;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 2px 4px 20px rgba(0,0,0,0.3);
}
.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.hero-cta {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-cta p { color: rgba(255,255,255,0.95); font-size: 0.95rem; }
.hero-cta strong { color: hsl(var(--accent)); }
@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1rem; }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-badge {
  display: inline-block;
  padding: 0.5rem .25rem;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.1), hsl(var(--accent) / 0.1));
  color: hsl(var(--primary));
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
  border: 1px solid hsl(var(--primary) / 0.15);
}
.section-header h2 { 
  margin-bottom: 0.75rem; 
  background: linear-gradient(135deg, hsl(var(--foreground)), hsl(var(--primary)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header p { 
  color: hsl(var(--muted-foreground)); 
  font-size: 1.125rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   ABOUT
   ============================================ */
.about-section { 
  padding: 8rem 0; 
  background: linear-gradient(180deg, hsl(var(--background)) 0%, hsl(var(--secondary)) 100%);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, hsl(var(--primary) / 0.03) 0%, transparent 70%);
  pointer-events: none;
}
.about-content { 
  max-width: 700px; 
  margin: 0 auto; 
  text-align: center;
  position: relative;
}
.about-logo { 
  width: 240px; 
  height: auto; 
  margin: 0 auto 2.5rem; 
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}
.about-text { 
  color: hsl(var(--muted-foreground)); 
  line-height: 1.9; 
  font-size: 1.1rem;
}
.about-text p { margin-bottom: 1.5rem; }
.about-text strong { 
  color: hsl(var(--primary)); 
  font-weight: 600;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section { 
  padding: 5rem 0; 
  overflow: hidden; 
  background: linear-gradient(180deg, hsl(var(--secondary)) 0%, hsl(var(--muted)) 100%);
}
.gallery-track { 
  display: flex; 
  gap: 1.25rem; 
  animation: scroll 40s linear infinite; 
}
.gallery-track:hover { animation-play-state: paused; }
.gallery-item {
  flex-shrink: 0;
  width: 320px;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-large);
}
.gallery-item img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); 
}
.gallery-item:hover img { transform: scale(1.08); }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   MENU
   ============================================ */
.menu-section { 
  padding: 8rem 0; 
  background: linear-gradient(180deg, hsl(var(--background)) 0%, hsl(var(--secondary) / 0.5) 100%);
  position: relative;
}
.menu-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); 
  gap: 2.5rem; 
}
.menu-card {
  background-color: hsl(var(--card));
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid hsl(var(--border) / 0.5);
}
.menu-card:hover { 
  box-shadow: var(--shadow-large); 
  transform: translateY(-8px); 
  border-color: hsl(var(--primary) / 0.2);
}
.menu-card-image { 
  height: 220px; 
  overflow: hidden; 
  position: relative;
}
.menu-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
}
.menu-card-image img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-card:hover .menu-card-image img { transform: scale(1.08); }
.menu-card-content { padding: 2rem; }
.menu-card-header { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  margin-bottom: 0.75rem; 
}
.menu-card-header h3 { 
  font-size: 1.35rem; 
  color: hsl(var(--foreground));
}
.category-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.1), hsl(var(--accent) / 0.1));
  color: hsl(var(--primary));
  border-radius: 9999px;
  border: 1px solid hsl(var(--primary) / 0.15);
}
.menu-card-desc { 
  color: hsl(var(--muted-foreground)); 
  font-size: 0.9rem; 
  margin-bottom: 1.5rem; 
  line-height: 1.6;
}
.menu-items { list-style: none; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid hsl(var(--border) / 0.7);
  transition: background-color 0.2s;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name { 
  font-weight: 600; 
  color: hsl(var(--foreground)); 
  font-size: 0.95rem;
}
.menu-item-desc { 
  font-size: 0.8rem; 
  color: hsl(var(--muted-foreground)); 
  margin-top: 0.25rem;
  line-height: 1.5;
}
.menu-item-price { 
  font-weight: 700; 
  color: hsl(var(--primary)); 
  white-space: nowrap; 
  font-size: 1rem;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent-warm)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vegetarian-icon { margin-left: 0.35rem; }
.menu-legend { 
  text-align: center; 
  margin-top: 3rem; 
  color: hsl(var(--muted-foreground)); 
  font-size: 0.9rem;
  padding: 1rem;
  background: hsl(var(--secondary) / 0.5);
  border-radius: var(--radius);
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }
}


/* ============================================
   FIX "READY TO ORDER?" CTA SECTION
   ============================================ */

/* Center the CTA section */
.catering-cta {
  text-align: center !important;
  padding: 3rem !important;
  background-color: hsl(var(--card)) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-soft) !important;
  border: 1px solid hsl(var(--border) / 0.5) !important;
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.catering-cta h3 {
  margin-bottom: 0.5rem !important;
  color: hsl(var(--foreground)) !important;
  font-size: 1.75rem !important;
}

.catering-cta > p {
  color: hsl(var(--muted-foreground)) !important;
  margin-bottom: 1rem !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
}

.catering-cta .phone {
  display: inline-block !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: hsl(var(--primary)) !important;
  margin-top: 0.75rem !important;
  transition: all 0.3s !important;
}

.catering-cta .phone:hover {
  transform: scale(1.05) !important;
  color: hsl(14 78% 44%) !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Mobile - 1 column */
@media (max-width: 768px) {
  .catering-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .catering-card {
    min-height: auto !important;
    max-height: none !important;
  }
  
  .catering-cta {
    padding: 2rem !important;
  }
  
  .catering-cta h3 {
    font-size: 1.5rem !important;
  }
  
  .catering-cta .phone {
    font-size: 1.5rem !important;
  }
}

/
/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { 
  padding: 8rem 0; 
  background: linear-gradient(180deg, hsl(var(--background)) 0%, hsl(var(--secondary) / 0.3) 100%);
  position: relative;
}
.testimonials-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); 
  gap: 2rem; 
}
.testimonial-card {
  background-color: hsl(var(--card));
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid hsl(var(--border) / 0.5);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}
.quote-icon {
  font-size: 5rem;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.15), hsl(var(--accent) / 0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-text {
  position: relative;
  z-index: 1;
  font-style: italic;
  color: hsl(var(--foreground));
  margin-bottom: 1.25rem;
  line-height: 1.8;
  font-size: 1.05rem;
}
.testimonial-stars { 
  color: #f59e0b; 
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
  padding: 0.35rem 0.75rem;
  background: hsl(var(--muted) / 0.5);
  border-radius: 9999px;
}
.google-badge svg { width: 16px; height: 16px; }
@media (max-width: 480px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

undefined
/* ============================================
   CONTACT
   ============================================ */
.contact-section { 
  padding: 8rem 0; 
  background: linear-gradient(180deg, hsl(var(--background)) 0%, hsl(var(--secondary) / 0.5) 100%);
}
.contact-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 4rem;
  align-items: start;
}
.contact-info { 
  background: hsl(var(--card));
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid hsl(var(--border) / 0.5);
}
.contact-info > h3 { 
  margin-bottom: 2rem;
  font-size: 1.5rem;
  color: hsl(var(--foreground));
}
.contact-item { 
  display: flex; 
  gap: 1.25rem; 
  margin-bottom: 2rem; 
}
.contact-item:last-of-type { margin-bottom: 0; }
.contact-item-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.1), hsl(var(--accent) / 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  border: 1px solid hsl(var(--primary) / 0.15);
}
.contact-item-content h4 { 
  margin-bottom: 0.35rem; 
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: hsl(var(--foreground));
}
.contact-item-content a, .contact-item-content p { 
  color: hsl(var(--muted-foreground)); 
  font-size: 0.95rem; 
}
.contact-item-content a:hover { color: hsl(var(--primary)); }
.order-buttons { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 1rem; 
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
}
.contact-map { 
  border-radius: var(--radius-lg); 
  overflow: hidden; 
  height: 450px;
  box-shadow: var(--shadow-medium);
  border: 1px solid hsl(var(--border) / 0.5);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }
.contact-map > div {
  background: hsl(var(--muted));
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--muted-foreground));
  text-align: center;
  padding: 2rem;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-map { height: 350px; }
  .contact-info { padding: 2rem; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer { 
  background: linear-gradient(180deg, hsl(25 30% 12%) 0%, hsl(25 35% 8%) 100%);
  color: hsl(var(--background)); 
  padding: 4rem 0 2rem; 
}
.footer-content { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  flex-wrap: wrap; 
  gap: 2.5rem; 
  margin-bottom: 2.5rem; 
}
.footer-brand h3 { 
  font-size: 1.75rem; 
  margin-bottom: 0.35rem; 
  color: white; 
}
.footer-brand p { 
  color: hsl(var(--muted-foreground)); 
  font-size: 0.9rem; 
}
.footer-contact p { 
  display: flex; 
  align-items: center; 
  gap: 0.75rem; 
  margin-bottom: 0.75rem; 
  color: hsl(var(--muted)); 
  font-size: 0.9rem; 
}
.footer-contact a { color: hsl(var(--muted)); transition: color 0.3s; }
.footer-contact a:hover { color: white; }
.footer-social { display: flex; gap: 1.25rem; }
.footer-social a { 
  color: hsl(var(--muted)); 
  transition: all 0.3s;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: hsl(var(--muted) / 0.1);
}
.footer-social a:hover { 
  color: white; 
  background: hsl(var(--primary) / 0.8);
  transform: translateY(-3px);
}
.footer-bottom { 
  text-align: center; 
  padding-top: 2rem; 
  border-top: 1px solid hsl(var(--muted) / 0.15); 
}
.footer-bottom p { 
  font-size: 0.875rem; 
  color: hsl(var(--muted-foreground)); 
}
@media (max-width: 768px) {
  .footer-content { flex-direction: column; text-align: center; }
  .footer-social { justify-content: center; }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#about .about-media,
#about .about-image,
#about .about-content{
  padding-top: 0;
  padding-bottom: 0;
}
/* ==================================================
   ABOUT SECTION — LOGO SIZE + TIGHT TOP SPACING
   ================================================== */

/* Force logo size */
.about-section .about-logo{
  width: 350px !important;
  max-width: 90vw !important;
  height: auto !important;
  display: block !important;

  /* remove excess spacing */
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
  padding: 0 !important;
}

/* Reduce padding ABOVE the logo (section spacing) */
.about-section{
  padding-top: 6rem !important;   /* was much larger */
  padding-bottom: 7rem !important;
}

/* Reduce gap between heading and logo */
.about-section .section-header{
  margin-bottom: 1.50rem !important;
}
/* ==================================================
   FONT SIZE FIXES
   ================================================== */

/* Ensure body base font size */
body {
  font-size: 16px !important;
}

/* Menu bar navigation - make it more visible */
.main-nav a {
  font-size: 1rem !important;
  font-weight: 500 !important;
}

.site-header.scrolled .main-nav a {
  font-size: 1rem !important;
}

/* Hero subtitle/tagline - make it more visible */
.hero-subtitle {
  font-size: 1.35rem !important;
  line-height: 1.6 !important;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1.125rem !important;
  }
}
/* Remove hover color change on hero delivery buttons */
.hero-buttons .btn:hover,
.hero-buttons .btn-primary:hover {
  transform: none !important;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(14 78% 48%)) !important;
  color: hsl(var(--primary-foreground)) !important;
  box-shadow: 0 4px 15px hsl(var(--primary) / 0.35) !important;
}

.hero-buttons .btn-secondary:hover {
  transform: none !important;
  background-color: hsl(var(--card)) !important;
  color: hsl(var(--foreground)) !important;
  box-shadow: var(--shadow-soft) !important;
  border: 1px solid hsl(var(--border)) !important;
}

.hero-buttons .btn-outline:hover {
  transform: none !important;
  background-color: transparent !important;
  color: hsl(var(--primary-foreground)) !important;
  border: 2px solid hsl(var(--primary-foreground) / 0.5) !important;
}
/* Center the vegetarian legend under menu section */
.menu-legend {
  text-align: center !important;
  margin: 3rem auto 0 auto !important;
  display: block !important;
  width: fit-content !important;
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
  padding: 1rem;
  background: hsl(var(--secondary) / 0.5);
  border-radius: var(--radius);
}
/* Add cards behind Brooklyn locations */
.locations-grid .location-card {
  background-color: hsl(var(--card)) !important;
  padding: 2rem !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-medium) !important;
  border: 1px solid hsl(var(--border) / 0.5) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  margin-bottom: 1.5rem;
}

/* Enhanced hover effect */
.locations-grid .location-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: var(--shadow-large) !important;
  border-color: hsl(var(--primary) / 0.3) !important;
}

/* Make sure the grid layout displays properly */
.locations-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: 1.75rem !important;
}

/* Card content styling */
.location-card h3 {
  margin-bottom: 1rem !important;
  font-size: 1.35rem !important;
  color: hsl(var(--foreground)) !important;
}

.location-card p {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  color: hsl(var(--muted-foreground)) !important;
  font-size: 0.95rem !important;
  margin-bottom: 0.75rem !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr !important;
  }
  
  .location-card {
    padding: 1.5rem !important;
  }
}
/* ==================================================
   COMPLETE LOCATIONS SECTION - ALL IN ONE
   
   Includes:
   - Featured Dallas Location (Orange Card)
   - 5 Brooklyn Location Cards (Same Size, Bottom 2 Centered)
   ================================================== */

/* ============================================
   FEATURED DALLAS LOCATION (Orange Card)
   ============================================ */

.featured-location {
  text-align: center !important;
  padding: 4rem 3rem !important;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(14 78% 42%)) !important;
  color: white !important;
  border-radius: var(--radius-lg) !important;
  margin-bottom: 2.5rem !important;
  box-shadow: 0 15px 50px hsl(var(--primary) / 0.3) !important;
  position: relative !important;
  overflow: hidden !important;
}

.featured-location::before {
  content: '' !important;
  position: absolute !important;
  top: -50% !important;
  right: -25% !important;
  width: 80% !important;
  height: 200% !important;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 50%) !important;
  pointer-events: none !important;
}

.featured-location .badge {
  display: inline-block !important;
  padding: 0.4rem 1rem !important;
  background-color: rgba(255,255,255,0.2) !important;
  border-radius: 9999px !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  margin-bottom: 1.25rem !important;
  backdrop-filter: blur(4px) !important;
  position: relative !important;
}

.featured-location h3 {
  font-size: 2.25rem !important;
  margin-bottom: 1.25rem !important;
  position: relative !important;
  color: white !important;
  font-weight: 700 !important;
}

.featured-location p {
  margin-bottom: 0.5rem !important;
  opacity: 0.95 !important;
  font-size: 1.05rem !important;
  position: relative !important;
  color: white !important;
}

.featured-location a {
  color: white !important;
  text-decoration: none !important;
  transition: opacity 0.3s !important;
}

.featured-location a:hover {
  opacity: 0.8 !important;
  text-decoration: underline !important;
}

/* ============================================
   5 BROOKLYN LOCATION CARDS (Bottom 2 Centered)
   ============================================ */

/* Desktop - 6-column grid to center bottom 2 cards */
@media (min-width: 1025px) {
  .locations-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 1.5rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
  }
  
  /* Top 3 cards - each spans 2 columns */
  .locations-grid .location-card:nth-child(1) {
    grid-column: 1 / 3 !important;
  }
  
  .locations-grid .location-card:nth-child(2) {
    grid-column: 3 / 5 !important;
  }
  
  .locations-grid .location-card:nth-child(3) {
    grid-column: 5 / 7 !important;
  }
  
  /* Bottom 2 cards - CENTERED */
  .locations-grid .location-card:nth-child(4) {
    grid-column: 2 / 4 !important;
  }
  
  .locations-grid .location-card:nth-child(5) {
    grid-column: 4 / 6 !important;
  }
}

/* Tablet - 2 columns */
@media (min-width: 769px) and (max-width: 1024px) {
  .locations-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
  }
  
  .locations-grid .location-card:nth-child(1),
  .locations-grid .location-card:nth-child(2),
  .locations-grid .location-card:nth-child(3),
  .locations-grid .location-card:nth-child(4),
  .locations-grid .location-card:nth-child(5) {
    grid-column: auto !important;
  }
}

/* Mobile - 1 column */
@media (max-width: 768px) {
  .locations-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
  }
  
  .locations-grid .location-card:nth-child(1),
  .locations-grid .location-card:nth-child(2),
  .locations-grid .location-card:nth-child(3),
  .locations-grid .location-card:nth-child(4),
  .locations-grid .location-card:nth-child(5) {
    grid-column: auto !important;
  }
  
  .featured-location {
    padding: 3rem 2rem !important;
  }
  
  .featured-location h3 {
    font-size: 1.75rem !important;
  }
  
  .featured-location p {
    font-size: 0.95rem !important;
  }
}

/* Card Styling - ALL SIZES */
.locations-grid .location-card {
  background-color: #ffffff !important;
  padding: 1.5rem !important;
  border-radius: 16px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid #e5e5e5 !important;
  transition: all 0.3s ease !important;
  
  /* Fixed height - not tall and skinny */
  min-height: 180px !important;
  max-height: 200px !important;
  height: auto !important;
  
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.locations-grid .location-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

.location-card h3 {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.5rem !important;
  line-height: 1.2 !important;
  color: #2c2c2c !important;
}

.location-card p {
  font-size: 0.875rem !important;
  line-height: 1.4 !important;
  margin-bottom: 0.35rem !important;
  color: #666666 !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.4rem !important;
}

.location-card .note {
  font-size: 0.75rem !important;
  color: #e85d3f !important;
  margin-top: 0.5rem !important;
  padding-top: 0.5rem !important;
  border-top: 1px solid #eeeeee !important;
}

.location-card a {
  color: #e85d3f !important;
  text-decoration: none !important;
}

.location-card a:hover {
  text-decoration: underline !important;
}

/* Mobile - Remove fixed heights */
@media (max-width: 768px) {
  .locations-grid .location-card {
    min-height: auto !important;
    max-height: none !important;
  }
}

/* ==================================================
   END OF COMPLETE LOCATIONS SECTION
   ================================================== */
.locations-grid {
  margin-bottom: 4rem !important;
}
/* ==================================================
   FIX CATERING CARDS
   ================================================== */

/* Catering grid - FULL WIDTH, 2 cards per row */
.catering-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 2rem !important;
  margin-bottom: 3rem !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 1.5rem !important;
}

/* Catering cards - WIDER */
.catering-card {
  background-color: hsl(var(--card)) !important;
  padding: 2rem !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-soft) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border: 1px solid hsl(var(--border) / 0.5) !important;
  position: relative !important;
  overflow: hidden !important;
  
  /* Fixed height */
  min-height: 240px !important;
  max-height: 240px !important;
  
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

/* Top gradient bar on hover */
.catering-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 4px !important;
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent))) !important;
  opacity: 0 !important;
  transition: opacity 0.3s !important;
}

.catering-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-medium) !important;
}

.catering-card:hover::before {
  opacity: 1 !important;
}

/* Catering card content */
.catering-card h3 {
  margin-bottom: 0.75rem !important;
  font-size: 1.25rem !important;
  color: hsl(var(--foreground)) !important;
  line-height: 1.3 !important;
}

.catering-card p {
  color: hsl(var(--muted-foreground)) !important;
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
  flex-grow: 1 !important;
}

.catering-card-meta {
  display: flex !important;
  gap: 1.25rem !important;
  margin-top: 1.25rem !important;
  font-size: 0.875rem !important;
  color: hsl(var(--muted-foreground)) !important;
  padding-top: 1rem !important;
  border-top: 1px solid hsl(var(--border) / 0.5) !important;
  flex-shrink: 0 !important;
}

/* Mobile - 1 column */
@media (max-width: 768px) {
  .catering-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .catering-card {
    min-height: auto !important;
    max-height: none !important;
  }
}
/* Add padding above Catering Services header */
.catering-section .section-header {
  padding-top: 2rem !important;
}
/* Fix Catering Banner - Orange card, centered */
.catering-banner {
  text-align: center !important;
  padding: 3rem 2rem !important;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(14 78% 42%)) !important;
  color: white !important;
  border-radius: var(--radius-lg) !important;
  margin-bottom: 2.5rem !important;
  box-shadow: 0 10px 40px hsl(var(--primary) / 0.3) !important;
  position: relative !important;
  overflow: hidden !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.catering-banner::before {
  content: '' !important;
  position: absolute !important;
  top: -50% !important;
  left: -50% !important;
  width: 100% !important;
  height: 200% !important;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%) !important;
}

.catering-banner h3 {
  font-size: 1.75rem !important;
  margin-bottom: 0.5rem !important;
  position: relative !important;
  color: white !important;
}

.catering-banner p {
  opacity: 0.95 !important;
  font-size: 1.05rem !important;
  position: relative !important;
  color: white !important;
}
/* Add padding between catering CTA and reviews section */
.catering-cta {
  margin-bottom: 4rem !important;
}
/* Add padding after testimonial cards, before Find Us header */
.testimonials-section {
  padding-bottom: 10rem !important;
}
/* Reduce padding around About section logo - logo size stays the same */
.about-section .about-logo {
  margin-top: 0 !important;
  margin-bottom: 1.5rem !important;
}

/* Reduce section padding above logo */
.about-section {
  padding-top: 4rem !important;
  padding-bottom: 6rem !important;
}

/* Reduce gap between section header and logo */
.about-section .section-header {
  margin-bottom: 2rem !important;
}


