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

/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
  /* Color Palette (Bright, casual, colorful, no brown/tan) */
  --primary-green: hsl(156, 72%, 38%);      /* Vibrant Cilantro Green */
  --primary-green-hover: hsl(156, 72%, 30%);
  --primary-green-light: hsl(156, 72%, 95%);
  --accent-red: hsl(355, 78%, 56%);        /* Fresh Tomato/Salsa Red */
  --accent-red-hover: hsl(355, 78%, 46%);
  --accent-red-light: hsl(355, 78%, 95%);
  --accent-yellow: hsl(42, 94%, 55%);       /* Warm Corn Yellow */
  --accent-yellow-light: hsl(42, 94%, 93%);
  
  /* Neutral Palette */
  --bg-cream: hsl(40, 24%, 98%);            /* Off-white, bright and clean */
  --bg-white: hsl(0, 0%, 100%);
  --text-dark: hsl(217, 33%, 17%);          /* Dark Slate for legibility */
  --text-muted: hsl(215, 16%, 47%);
  --border-light: hsl(210, 20%, 93%);
  --card-shadow: 0 10px 30px -5px rgba(16, 185, 129, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --hover-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.15), 0 8px 16px -4px rgba(0, 0, 0, 0.04);
  
  /* Fonts */
  --font-headings: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Outfit', sans-serif;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-round: 50px;
  
  /* Layout & Spacing */
  --header-height: 80px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max-width: 1200px;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
}

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

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

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

button, input {
  font-family: inherit;
}

/* ==========================================
   REUSABLE UTILITIES
   ========================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding: 100px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }
}

.section-title {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 15px;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-red);
  border-radius: var(--radius-round);
  margin: 8px auto 0 auto;
}

.section-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 50px auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-round);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

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

.btn-primary:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px -3px rgba(239, 68, 68, 0.3);
}

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

.btn-secondary:hover {
  background-color: var(--primary-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px -3px rgba(16, 185, 129, 0.3);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--bg-white);
  color: var(--bg-white);
}

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

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(252, 251, 247, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px -5px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}

.header.scrolled {
  height: 70px;
  background-color: var(--bg-white);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 55px;
  width: auto;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
  height: 48px;
}

.restaurant-title {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary-green);
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent-red);
  border-radius: var(--radius-round);
  transition: var(--transition-smooth);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--accent-red);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-green);
  margin: 5px 0;
  border-radius: var(--radius-round);
  transition: var(--transition-smooth);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 40px);
  background-image: linear-gradient(
      135deg,
      rgba(27, 94, 32, 0.4) 0%,
      rgba(15, 23, 42, 0.85) 100%
    ),
    url('images/calle-verde-exterior-hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: var(--bg-white);
}

.hero-content {
  max-width: 650px;
  z-index: 10;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 6px 16px;
  border-radius: var(--radius-round);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #10b981;
}

.hero-badge span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-headline {
  font-family: var(--font-headings);
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.8rem;
  }
}

.hero-description {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 35px;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
  background-color: var(--bg-white);
  overflow: hidden;
}

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

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-image-wrapper {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  border: 4px solid var(--bg-cream);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--accent-yellow);
  color: var(--text-dark);
  padding: 20px 25px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.3);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

@media (max-width: 576px) {
  .about-experience-badge {
    bottom: 10px;
    right: 10px;
    padding: 15px;
    font-size: 0.95rem;
  }
}

.about-experience-badge span {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-green);
}

.about-content h2 {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-dark);
  line-height: 1.2;
}

.about-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  position: relative;
}

.about-text p {
  margin-bottom: 15px;
}

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

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--text-dark);
}

.about-highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--primary-green-light);
  border-radius: 50%;
  color: var(--primary-green);
}

/* ==========================================
   MENU SECTION
   ========================================== */
.menu-section {
  background-color: var(--bg-cream);
}

.menu-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border-light);
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-yellow) 50%, var(--accent-red) 100%);
}

.menu-icon-header {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.menu-card-title {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.menu-card-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 35px;
}

/* Quick Food Category Badges */
.menu-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

@media (min-width: 769px) {
  .menu-categories {
    flex-wrap: nowrap;
  }
}

.menu-cat-badge {
  background-color: var(--primary-green-light);
  color: var(--primary-green);
  padding: 8px 20px;
  border-radius: var(--radius-round);
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.menu-cat-badge:nth-child(2n) {
  background-color: var(--accent-yellow-light);
  color: hsl(42, 94%, 35%);
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.menu-cat-badge:nth-child(3n) {
  background-color: var(--accent-red-light);
  color: var(--accent-red);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

/* ==========================================
   FOOD GALLERY
   ========================================== */
.gallery-section {
  background-color: var(--bg-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 577px) and (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery-item {
    grid-column: span 2;
  }
  .gallery-item:nth-child(5) {
    grid-column: 2 / span 2;
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
  }
  .gallery-item {
    grid-column: span 2;
  }
  .gallery-item:nth-child(4) {
    grid-column: 2 / span 2;
  }
  .gallery-item:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  border: 4px solid var(--bg-cream);
  transition: var(--transition-smooth);
  aspect-ratio: 4/3;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.9) 0%,
    rgba(15, 23, 42, 0.4) 60%,
    rgba(15, 23, 42, 0.1) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow);
  border-color: var(--primary-green-light);
}

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

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

.gallery-item-title {
  color: var(--bg-white);
  font-family: var(--font-headings);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.gallery-item-desc {
  color: var(--accent-yellow);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================
   SPECIALS SECTION
   ========================================== */
.specials-section {
  background-color: var(--bg-cream);
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .specials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.special-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  box-shadow: var(--card-shadow);
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.special-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow);
}

/* Colored themes for specials */
.special-card.theme-green {
  border-color: rgba(16, 185, 129, 0.1);
}
.special-card.theme-green:hover {
  border-color: var(--primary-green);
}
.special-card.theme-green .special-icon-wrapper {
  background-color: var(--primary-green-light);
  color: var(--primary-green);
}

.special-card.theme-yellow {
  border-color: rgba(245, 158, 11, 0.1);
}
.special-card.theme-yellow:hover {
  border-color: var(--accent-yellow);
}
.special-card.theme-yellow .special-icon-wrapper {
  background-color: var(--accent-yellow-light);
  color: hsl(42, 94%, 35%);
}

.special-card.theme-red {
  border-color: rgba(239, 68, 68, 0.1);
}
.special-card.theme-red:hover {
  border-color: var(--accent-red);
}
.special-card.theme-red .special-icon-wrapper {
  background-color: var(--accent-red-light);
  color: var(--accent-red);
}

.special-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}

.special-card:hover .special-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.special-title {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.special-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================
   ONLINE ORDERING
   ========================================== */
.order-section {
  background-color: var(--bg-white);
  position: relative;
}

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

@media (max-width: 992px) {
  .order-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.order-content {
  background-color: var(--primary-green-light);
  border-radius: var(--radius-lg);
  padding: 50px;
  border: 1px solid rgba(16, 185, 129, 0.1);
  position: relative;
  overflow: hidden;
}

.order-content::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background-color: rgba(16, 185, 129, 0.05);
  border-radius: 50%;
}

.order-title {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.order-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 500px;
}

.order-steps {
  margin-bottom: 35px;
}

.order-step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.order-step-num {
  background-color: var(--primary-green);
  color: var(--bg-white);
  font-weight: 800;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.order-step-text {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
}

.order-step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
}

.order-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 4px solid var(--bg-cream);
  aspect-ratio: 4/3;
}

.order-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================
   HOURS SECTION
   ========================================== */
.hours-section {
  background-color: var(--bg-cream);
}

.hours-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
}

.hours-table {
  width: 100%;
  margin-bottom: 30px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border-light);
  font-weight: 600;
}

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

.hours-day {
  color: var(--text-dark);
}

.hours-time {
  color: var(--primary-green);
}

.hours-row.closed .hours-time {
  color: var(--accent-red);
}

.hours-note-box {
  background-color: var(--accent-yellow-light);
  border-left: 4px solid var(--accent-yellow);
  padding: 15px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  display: flex;
  gap: 12px;
  align-items: center;
}

.hours-note-icon {
  font-size: 1.3rem;
}

/* ==========================================
   LOCATION AND CONTACT
   ========================================== */
.contact-section {
  background-color: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.contact-card {
  background-color: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-light);
}

.contact-card:hover {
  transform: translateY(-5px);
  background-color: var(--bg-white);
  border-color: rgba(16, 185, 129, 0.15);
  box-shadow: var(--card-shadow);
}

.contact-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--bg-white);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.contact-card:hover .contact-icon-wrapper {
  background-color: var(--primary-green);
  color: var(--bg-white);
}

.contact-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.contact-detail {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  word-break: break-word;
}

.contact-link {
  color: var(--primary-green);
  font-weight: 700;
}

.contact-link:hover {
  color: var(--accent-red);
}

/* ==========================================
   PARKING SECTION
   ========================================== */
.parking-section {
  background-color: var(--bg-cream);
}

.parking-card {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
}

.parking-content {
  display: flex;
  gap: 30px;
  align-items: center;
}

@media (max-width: 768px) {
  .parking-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

.parking-icon-side {
  font-size: 4rem;
  flex-shrink: 0;
}

.parking-title {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.parking-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: hsl(217, 33%, 12%);     /* Rich charcoal */
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px 0;
  border-top: 4px solid var(--primary-green);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo-area {
  align-items: flex-start;
}

@media (max-width: 992px) {
  .footer-logo-area {
    align-items: center;
  }
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 60px;
  border-radius: var(--radius-sm);
}

.footer-restaurant-title {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--bg-white);
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-subtitle {
  color: var(--bg-white);
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: var(--accent-yellow);
  border-radius: var(--radius-round);
}

@media (max-width: 992px) {
  .footer-subtitle::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.footer-info-item {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer-info-item.highlight {
  font-weight: 700;
  color: var(--accent-yellow);
}

.footer-social-links {
  display: flex;
  gap: 12px;
  list-style: none;
}

@media (max-width: 992px) {
  .footer-social-links {
    justify-content: center;
  }
}

.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--bg-white);
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.footer-social-btn:hover {
  background-color: var(--primary-green);
  color: var(--bg-white);
  transform: translateY(-3px);
}

.footer-social-btn.facebook:hover {
  background-color: #1877f2;
}

.footer-social-btn.yelp:hover {
  background-color: #d32323;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.4);
}

/* ==========================================
   MOBILE NAV OVERLAY
   ========================================== */
@media (max-width: 768px) {
  body.no-scroll {
    overflow: hidden;
  }

  .mobile-toggle {
    display: block;
    position: relative;
    z-index: 1100;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-white);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    z-index: 1050;
    padding: 40px;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .mobile-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}

/* --- RVA Sites Notice Bar --- */
.rva-notice-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background-color: var(--primary-green, #1e4d2b);
  color: var(--bg-white, #ffffff);
  border-bottom: 2px solid var(--accent-yellow, #ffc72c);
  font-size: 0.85rem;
  padding: 8px 16px;
  text-align: center;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.rva-notice-bar a {
  color: var(--accent-yellow, #ffc72c);
  text-decoration: underline;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition-smooth, 0.3s ease);
}

.rva-notice-bar a:hover {
  color: var(--bg-white);
}

/* Adjust header to sit below fixed notice bar */
.header {
  top: 36px !important;
}

@media (max-width: 768px) {
  .header {
    top: 56px !important;
  }
}

@media (max-width: 480px) {
  .header {
    top: 76px !important;
  }
}
