﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
  --color-primary: #0f3320;
  --color-primary-light: #1a5c38;
  --color-accent: #c9973a;
  --color-accent-secondary: #e07a3a;
  --color-accent-light: #f0c87a;
  --color-bg: #faf8f4;
  --color-surface: #f2ede6;
  --color-surface-2: #ede7de;
  --color-text: #1a1a1a;
  --color-muted: #5a5a5a;
  --color-border: #e0d8ce;
  --radius: 16px;
  --radius-lg: 28px;
  --container: 1200px;
  --shadow-sm: 0 2px 12px rgba(15, 51, 32, 0.07);
  --shadow-md: 0 8px 28px rgba(15, 51, 32, 0.1);
  --shadow-lg: 0 20px 50px rgba(15, 51, 32, 0.14);
  --shadow-xl: 0 32px 80px rgba(15, 51, 32, 0.18);
  --gold: #c9973a;
  --gold-light: #e8c06a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.1rem;
}

p {
  color: var(--color-muted);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

/* Utilities */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 4rem 0;
}

.bg-alt {
  background: var(--color-surface);
}

.text-center {
  text-align: center;
}

.muted {
  color: var(--color-muted);
}

.small {
  font-size: 0.9rem;
}

/* Header & Navigation */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(250, 248, 243, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: all 0.3s ease;
}

.main-header.scrolled {
  height: 64px;
  box-shadow: var(--shadow-md);
  background: rgba(250, 248, 243, 0.99);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-link {
  color: var(--color-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
  font-weight: 600;
}

.nav-cta {
  margin-left: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  display: block;
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  left: 0;
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(15, 51, 32, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(15, 51, 32, 0.38);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-weight: 700;
}

.btn-secondary:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
}

/* Hero Section */
.hero {
  padding-top: 100px;
  padding-bottom: 4rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.8;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-media img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(26, 71, 42, 0.15);
}

/* Cards & Features */
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
  /* Center items if they don't fill the row */
}

.menu-item-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  height: 100%;
  /* Ensure cards are full height */
}

.menu-item-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.menu-item-image {
  height: 220px;
  overflow: hidden;
  position: relative;
  background-color: #f0f0f0;
  /* Fallback color */
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
  /* Remove inline-block spacing */
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: white;
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-secondary) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--color-muted);
}

.card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

/* Menu Highlight Section */
.menu-highlight .highlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.menu-highlight h2 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.menu-highlight>.container>div:first-child p {
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.menu-sample img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(26, 71, 42, 0.12);
}

/* Contact CTA */
.contact-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
}

.contact-cta .cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-cta h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.9);
}

.contact-cta .btn-primary {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h1 {
  margin-bottom: 0.5rem;
}

.contact-cards {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Menu Page Grid */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.menu-column img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.menu-header {
  text-align: center;
  margin-bottom: 2rem;
}

.menu-header h1 {
  margin-bottom: 0.5rem;
}

.drinks {
  margin-top: 3rem;
}

.drinks h2 {
  margin-bottom: 1.5rem;
}

/* Footer */
/* Footer */
.site-footer {
  background-color: #0f1c15;
  /* Very dark green/black */
  color: #a0a0a0;
  padding: 5rem 0 2rem;
  font-size: 0.95rem;
  margin-top: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  text-align: left;
  text-align: left;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: start;
}

.footer-col h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
}

.footer-brand p {
  margin-top: 1rem;
  color: #a0a0a0;
  max-width: 300px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links-col a,
.footer-contact li a {
  color: #a0a0a0;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links-col a:hover,
.footer-contact li a:hover {
  color: var(--color-accent);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: #a0a0a0;
}

.footer-contact i {
  color: var(--color-accent);
  font-size: 1.2rem;
  margin-top: 2px;
}

.footer-hours ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.footer-hours span:first-child {
  color: white;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 0;
}

.developer-credit {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #666;
  font-size: 0.85rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.developer-credit:hover {
  opacity: 0.8;
  color: var(--color-accent);
}

.developer-logo {
  height: 24px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.developer-credit:hover .developer-logo {
  opacity: 1;
}

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth transitions for all interactive elements */
button,
a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive */
@media (max-width: 1024px) {

  .hero-inner,
  .menu-highlight .highlight-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 72px;
    right: 0;
    flex-direction: column;
    background: white;
    padding: 1rem;
    border-left: 1px solid var(--color-border);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.open {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-cta {
    margin-left: 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .contact-cta .cta-inner {
    flex-direction: column;
  }

  .contact-cta .cta-inner>div:last-child {
    width: 100%;
  }

  .contact-cta .cta-inner .btn {
    width: 100%;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 80px;
    min-height: auto;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .container {
    padding: 0 0.75rem;
  }

  .section-padding {
    padding: 2rem 0;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
  }
}

.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* Google Review Badge */
.google-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  margin-top: 1rem;
}

.star-rating {
  display: flex;
  gap: 2px;
  color: #FBBF24;
  /* Google Star Yellow */
}

/* Footer Icons override */
.social-icon {
  transition: transform 0.2s;
}

.social-icon:hover {
  transform: scale(1.1);
  color: var(--color-accent);
}

/* Hero Meta Items */
.hero-meta {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.meta-label {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.meta-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Section Title & Subtitle */
.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--color-muted);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

/* Specials Banner */
.specials-banner {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-secondary) 100%);
  color: white;
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.banner-text h2 {
  color: white;
  margin-bottom: 0.5rem;
}

.banner-text p {
  color: rgba(255, 255, 255, 0.95);
  margin: 0.5rem 0;
}

.banner-text .meta-info {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Menu List */
.menu-list {
  list-style: none;
  margin: 1.5rem 0;
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
}

.menu-list li {
  padding: 0.5rem 0;
  color: var(--color-text);
}

/* Testimonials Grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.testimonial:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.stars {
  color: var(--color-accent-secondary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* Location Grid */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.location-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-top: 4px solid var(--color-accent);
}

.location-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.location-card p {
  margin-bottom: 1rem;
  color: var(--color-text);
}

.location-card a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.location-card a:hover {
  color: var(--color-accent);
}

.hours-list {
  list-style: none;
}

.hours-list li {
  padding: 0.5rem 0;
}

.holiday-note {
  font-size: 0.9rem;
  color: var(--color-muted);
  font-style: italic;
}

.btn.small {
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

/* Social Links */
.social-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.social-card {
  background: white;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--color-primary);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}

.social-card:hover {
  background: var(--color-accent);
  color: white;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.social-card:hover .social-icon {
  transform: scale(1.2);
  color: white;
}

@media (max-width: 1024px) {
  .social-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .social-links {
    grid-template-columns: 1fr;
  }
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.value-card h4 {
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.value-card p {
  color: var(--color-muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
  align-items: flex-end;
  pointer-events: none;
  /* Allows clicking through the container */
}

.floating-btn {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn-book-float {
  background: var(--color-primary);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  gap: 0.5rem;
}

.btn-book-float:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  color: white;
}

.btn-top {
  width: 45px;
  height: 45px;
  background: white;
  color: var(--color-primary);
  border-radius: 50%;
  font-size: 1.2rem;
  border: 1px solid var(--color-border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.btn-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-top:hover {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

/* Header Call Button */
.nav-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 1.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-call-btn:hover {
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .nav-call-btn span {
    display: none;
    /* Hide text on mobile, show icon only if needed, or adjust */
  }

  .nav-call-btn {
    margin-right: 0.5rem;
    padding: 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
  }

  .floating-actions {
    bottom: 1.5rem;
    right: 1rem;
  }

  .btn-book-float {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Dynamic Menu Styles */
#dynamic-menu-container {
  min-height: 400px;
}

.loading-spinner {
  text-align: center;
  padding: 3rem;
  color: var(--color-muted);
  font-style: italic;
}

.error-message {
  text-align: center;
  padding: 2rem;
  color: #d32f2f;
  background: #fdecea;
  border-radius: var(--radius);
}

.menu-category {
  margin-bottom: 4rem;
}

.category-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.category-header h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.category-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 0.5rem auto 0;
}

.category-description {
  color: var(--color-muted);
  font-size: 1.1rem;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.menu-item-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.menu-item-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.menu-item-image {
  height: 220px;
  overflow: hidden;
  position: relative;
  background-color: #f0f0f0;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.menu-item-card:hover .menu-item-image img {
  transform: scale(1.05);
}

.menu-item-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  gap: 1rem;
}

.menu-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.3;
}

.menu-item-price {
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1.1rem;
  white-space: nowrap;
}

.menu-item-description {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
  flex-grow: 1;
}

.menu-item-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag-v,
.tag-vege {
  /* Vegetarian */
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.tag-gf,
.tag-glutenfree {
  /* Gluten Free */
  background-color: #fff3e0;
  color: #ef6c00;
  border: 1px solid #ffe0b2;
}

.tag-df,
.tag-dairyfree {
  /* Dairy Free */
  background-color: #e3f2fd;
  color: #1565c0;
  border: 1px solid #bbdefb;
}

@media (max-width: 768px) {
  .menu-items-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .category-header h2 {
    font-size: 1.8rem;
  }
}

/* Image Error Fallback */
.menu-item-image.image-error {
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-item-image.image-error::after {
  content: 'Buzz Cafe';
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--color-muted);
  opacity: 0.5;
  position: absolute;
}

.menu-item-image.image-error img {
  opacity: 0;
}

/* Standardized Card Hover Effects */
.contact-cards-grid .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent) !important;
}

.contact-cards-grid .card:hover i {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* =============================================
   PAGE HERO (inner pages: menu, reservations, contact)
   ============================================= */
.page-hero {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding-top: 72px;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 71, 42, 0.3) 0%,
    rgba(15, 28, 21, 0.75) 100%
  );
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  animation: heroContentFadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.page-hero-content h1 {
  color: white;
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.page-hero-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  margin: 0;
}

@media (max-width: 768px) {
  .page-hero {
    height: 240px;
  }
  .page-hero-content h1 {
    font-size: 2rem;
  }
  .page-hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    height: 200px;
  }
  .page-hero-content h1 {
    font-size: 1.6rem;
  }
}

/* =============================================
   RICH ANIMATIONS
   ============================================= */

@keyframes heroContentFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(32px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(15, 51, 32, 0.28); }
  50% { box-shadow: 0 8px 30px rgba(26, 71, 42, 0.4); }
}

/* Hero section entrance animations */
.hero-text {
  animation: fadeInLeft 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-media {
  animation: fadeInRight 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s both;
}

.hero-title {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s both;
}

.hero-sub {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s both;
}

.hero-actions {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s both;
}

.hero-meta {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s both;
}

/* Hero image subtle float */
.hero-media img {
  animation: floatY 6s ease-in-out infinite;
}

/* Floating book button pulse */
.btn-book-float {
  animation: pulseGlow 3s ease-in-out infinite;
}

/* Stagger delays for scroll animations */
.animate-on-scroll.stagger-1 { transition-delay: 0.1s; }
.animate-on-scroll.stagger-2 { transition-delay: 0.2s; }
.animate-on-scroll.stagger-3 { transition-delay: 0.3s; }
.animate-on-scroll.stagger-4 { transition-delay: 0.4s; }

/* Scroll-triggered scale variant */
.animate-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Scroll-triggered slide-left variant */
.animate-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scroll-triggered slide-right variant */
.animate-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Section title underline animation */
.section-title {
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-secondary));
  margin: 0.6rem auto 0;
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s;
}

.section-title.visible::after {
  width: 60px;
}

/* Nav link hover underline animation */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Card icon bounce on hover */
.card i,
.value-card i,
.location-card i {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover i,
.value-card:hover i,
.location-card:hover i {
  transform: scale(1.2) translateY(-2px);
}

/* Social card icon animation */
.social-card .social-icon i {
  font-size: 2rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-card:hover .social-icon i {
  transform: scale(1.25) rotate(-5deg);
}

/* =============================================
   MOBILE NAV IMPROVEMENTS
   ============================================= */
@media (max-width: 768px) {
  .nav {
    gap: 0.5rem;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(250, 248, 243, 0.98);
    backdrop-filter: blur(12px);
    padding: 0.5rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    gap: 0;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
                opacity 0.3s ease;
    z-index: 999;
    border-left: none;
    min-width: unset;
  }

  .nav-menu.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu li {
    border-bottom: 1px solid var(--color-border);
    width: 100%;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
  }

  .nav-link::after {
    display: none;
  }

  /* Hamburger open state */
  .mobile-toggle.open .hamburger {
    background: transparent;
  }

  .mobile-toggle.open .hamburger::before {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .mobile-toggle.open .hamburger::after {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  /* Hero mobile stacking */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-media img {
    height: 280px;
    animation: none;
  }

  .hero-meta {
    justify-content: center;
  }

  .hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  /* Contact grid mobile */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    min-height: 300px;
  }

  /* Menu highlight mobile */
  .menu-highlight .highlight-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-media img {
    height: 220px;
  }

  .nav-cta {
    display: none;
  }

  .meta-item {
    min-width: 0;
  }
}

/* =============================================
   NAV BOOK NOW BUTTON (leftmost in nav)
   ============================================= */
.nav-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.3rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(15, 51, 32, 0.25);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-decoration: none;
  border: none;
}

.nav-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 51, 32, 0.38);
  color: white;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

.nav-book-btn i {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .nav-book-btn {
    padding: 0.5rem 1rem;
    font-size: 0.78rem;
  }
  .nav-book-btn span {
    display: none;
  }
}

/* =============================================
   PREMIUM SPECIALS BANNER
   ============================================= */
.specials-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--color-accent-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.specials-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  pointer-events: none;
}

/* =============================================
   PREMIUM FOOTER UPGRADE
   ============================================= */
.site-footer {
  background: linear-gradient(160deg, #0a1a10 0%, #0f1c15 60%, #0d1a12 100%);
}

/* =============================================
   PREMIUM SOCIAL CARDS
   ============================================= */
.social-card {
  background: white;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--color-primary);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.social-card:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

/* =============================================
   PREMIUM SECTION TITLES
   ============================================= */
.section-title {
  font-size: 2.4rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   PREMIUM META ITEMS (hero stats)
   ============================================= */
.hero-meta {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

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

.meta-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: 'Playfair Display', serif;
}

/* =============================================
   PREMIUM PAGE HERO UPGRADE
   ============================================= */
.page-hero {
  height: 360px;
}

.page-hero-content h1 {
  font-size: 3.2rem;
  letter-spacing: -0.02em;
}

/* =============================================
   PREMIUM CONTACT CTA
   ============================================= */
.contact-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0a2818 100%);
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(201, 151, 58, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.contact-cta .btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--color-primary);
  box-shadow: 0 4px 20px rgba(201, 151, 58, 0.4);
}

.contact-cta .btn-primary:hover {
  box-shadow: 0 8px 30px rgba(201, 151, 58, 0.5);
  color: var(--color-primary);
}

/* =============================================
   PREMIUM FLOATING BUTTONS
   ============================================= */
.btn-book-float {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(15, 51, 32, 0.35);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn-top {
  background: white;
  border: 1.5px solid var(--color-border);
  box-shadow: 0 4px 16px rgba(15, 51, 32, 0.12);
}

.btn-top:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

/* Hero title italic accent */
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

/* =============================================
   PREMIUM FOOTER — COMPLETE OVERRIDE
   ============================================= */
.site-footer {
  background: linear-gradient(160deg, #080f0b 0%, #0a1510 50%, #0c1a12 100%);
  color: rgba(255, 255, 255, 0.55);
  padding: 0;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 151, 58, 0.5) 30%, rgba(201, 151, 58, 0.8) 50%, rgba(201, 151, 58, 0.5) 70%, transparent 100%);
}

.footer-top {
  padding: 5rem 0 4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 0;
}

/* Brand column */
.footer-brand .logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
  line-height: 1.8;
  font-size: 0.88rem;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: rgba(201, 151, 58, 0.15);
  border-color: rgba(201, 151, 58, 0.5);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Column headings */
.footer-col h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

/* Links column */
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links-col a {
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links-col a::before {
  content: '';
  font-size: 0.75rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s ease;
  color: var(--gold);
}

.footer-links-col a:hover {
  color: white;
  padding-left: 4px;
}

.footer-links-col a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Contact column */
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-contact i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact li a:hover {
  color: white;
}

/* Hours column */
.footer-hours ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.75rem;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
}

.footer-hours li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-hours span:first-child {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.footer-hours span:last-child {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
}

.footer-hours .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.82rem;
  padding: 0.7rem 1.25rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0a1510;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(201, 151, 58, 0.3);
  transition: all 0.3s ease;
}

.footer-hours .btn:hover {
  box-shadow: 0 8px 24px rgba(201, 151, 58, 0.45);
  transform: translateY(-2px);
  color: #0a1510;
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
  margin-bottom: 0;
}

.developer-credit {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.developer-credit:hover {
  color: rgba(255, 255, 255, 0.6);
}

.developer-logo {
  height: 22px;
  width: auto;
  opacity: 0.45;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.developer-credit:hover .developer-logo {
  opacity: 0.7;
}

/* Footer responsive */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

/* Footer — center all content on mobile, text-center on all sizes */
.footer-col {
  text-align: center;
}

.footer-col h4::after {
  left: 50%;
  transform: translateX(-50%);
}

.footer-brand p {
  margin-left: auto;
  margin-right: auto;
}

.footer-social {
  justify-content: center;
}

.footer-links-col {
  align-items: center;
}

.footer-links-col a::before {
  display: none;
}

.footer-links-col a:hover {
  padding-left: 0;
}

.footer-contact li {
  justify-content: center;
  text-align: left;
}

.footer-hours li {
  text-align: center;
}

.footer-hours .btn {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-brand .logo { display: flex; justify-content: center; }
