/* Modern CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-brown: #2e4034;
  --warm-cream: #f3ecda;
  --dark-text: #2b2118;
  --accent-gold: #b8860b;
  --accent-red: #8c2f24;
  --soft-white: #fcf8ee;
  --hairline: rgba(43, 33, 24, 0.25);
  --shadow-light: rgba(0, 0, 0, 0.08);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --gradient-overlay: linear-gradient(135deg, rgba(46, 64, 52, 0.78), rgba(43, 33, 24, 0.6));
}

html {
  /* Keep anchor targets clear of the sticky nav */
  scroll-padding-top: 5rem;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  background-color: var(--warm-cream);
  /* Faint tiled noise so the cream reads as paper, not a flat hex value */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  color: var(--dark-text);
  overflow-x: hidden;
}

/* Skip link: offscreen until it takes keyboard focus */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--primary-brown);
  color: var(--soft-white);
  border-radius: 0 0 8px 8px;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

main:focus {
  outline: none;
}

/* Header & Hero Section */
header {
  position: relative;
  height: 100vh;
  min-height: 500px;
  background: var(--gradient-overlay),
              linear-gradient(rgba(43, 30, 18, 0.35), rgba(43, 30, 18, 0.55)),
              url('assets/images/background2.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-content {
  /* Frame must never touch the viewport edge on small screens */
  max-width: min(800px, calc(100% - 2.5rem));
  padding: 2.5rem 2rem;
  /* Thin double frame, like lettering ruled onto shop glass */
  border: 1px solid rgba(243, 236, 218, 0.65);
  outline: 1px solid rgba(243, 236, 218, 0.65);
  outline-offset: 6px;
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  font-family: 'Cinzel', serif;
  /* Floor must keep ZOELSMANN'S (unbreakable in caps) inside a 280px screen */
  font-size: clamp(1.5rem, 7.5vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 4px 8px rgba(0,0,0,0.5);
  letter-spacing: 0.04em;
}

.tagline {
  font-family: 'Yellowtail', cursive;
  font-size: clamp(1.5rem, 3vw, 2rem);
  opacity: 0.95;
  margin-bottom: 2rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  cursor: pointer;
}

.scroll-indicator i {
  font-size: 1.5rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.scroll-indicator:hover i {
  opacity: 1;
}

/* Hero Buttons */
.hero-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 0.8rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-primary {
  background: var(--accent-red);
  color: var(--warm-cream);
  border-color: var(--accent-red);
}

.btn-primary:hover {
  background: #7a281e;
  border-color: #7a281e;
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

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

/* Navigation */
nav {
  background: var(--primary-brown);
  box-shadow: 0 2px 20px var(--shadow-medium);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

/* Awning hem hangs off the home nav only — the menu page's
   .main-nav sits inside .page-header, which has its own. */
nav:not(.main-nav) {
  padding-bottom: 10px;
}

/* Storefront awning: striped band with a scalloped hem.
   Shared by the home nav, menu page header, and footer;
   each selector below only sets where the band hangs. */
nav:not(.main-nav)::after,
.page-header::after,
footer:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 18px;
  background:
    radial-gradient(13px 8px at 13px 0, var(--accent-red) 97%, transparent 100%) 0 100% / 52px 8px repeat-x,
    radial-gradient(13px 8px at 13px 0, var(--soft-white) 97%, transparent 100%) 26px 100% / 52px 8px repeat-x,
    repeating-linear-gradient(90deg, var(--accent-red) 0 26px, var(--soft-white) 26px 52px) 0 0 / 100% 10px no-repeat;
}

nav:not(.main-nav)::after {
  bottom: -8px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

nav a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--warm-cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 1.2rem 0;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.3px;
}

nav a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--accent-gold);
}

nav a:hover:before {
  width: 100%;
}

nav a i {
  font-size: 0.9rem;
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

/* Section Styles */
.section {
  margin-bottom: 6rem;
  background: var(--soft-white);
  border-radius: 2px;
  /* Double rule, like an old printed menu card */
  border: 1px solid var(--hairline);
  outline: 1px solid var(--hairline);
  outline-offset: 4px;
  overflow: hidden;
}

/* Scroll reveal: only hide sections when JS is present to un-hide them. */
.js .section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.js .section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* The footer supplies its own breathing room */
.section:last-child {
  margin-bottom: 2rem;
}

.section-content {
  padding: 3rem;
  position: relative;
}

.section-icon {
  text-align: center;
  margin-bottom: 2rem;
}

.section-icon i {
  font-size: 3rem;
  color: var(--accent-gold);
}

.section h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-brown);
  position: relative;
  padding-bottom: 1rem;
  letter-spacing: 0.06em;
}

.section h2:after {
  content: '— ✦ —';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent-red);
  font-family: serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  white-space: nowrap;
}

.section p {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--dark-text);
}

/* About Section with Image */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.about-text {
  text-align: left;
}

.about-text p {
  text-align: left;
  margin-bottom: 2rem;
}

.about-image {
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 2px;
  /* Cream mat + hairline, like a framed print */
  border: 1px solid var(--hairline);
  padding: 6px;
  background: var(--soft-white);
  filter: sepia(0.18) saturate(1.05);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.image-caption {
  margin-top: 1rem;
  font-family: 'Yellowtail', cursive;
  color: var(--primary-brown);
  font-size: 1.1rem;
}

/* Food Gallery */
.food-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 2rem;
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(184, 134, 11, 0.05);
  border-radius: 2px;
}

.food-item {
  text-align: center;
  background: var(--soft-white);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  transition: border-color 0.3s ease;
}

.food-item:hover {
  border-color: var(--accent-gold);
}

.food-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  /* Warm the modern photography so it sits with the vintage frame */
  filter: sepia(0.18) saturate(1.05);
  transition: transform 0.3s ease;
}

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

.food-item h3 {
  padding: 1rem;
  margin: 0;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--primary-brown);
  font-weight: 700;
}

/* Highlights Section */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--warm-cream);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  transition: background 0.3s ease;
}

.highlight-item:hover {
  background: #ece3cc;
}

.highlight-item i {
  font-size: 1.8rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.highlight-item span {
  font-weight: 600;
  color: var(--primary-brown);
}

/* Hours Section */
.hours-container {
  max-width: 460px;
  margin: 0 auto;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.9rem 0.5rem;
  border-bottom: 1px dotted rgba(43, 33, 24, 0.45);
  font-size: 1.1rem;
}

.hours-item .day {
  font-weight: 600;
  color: var(--primary-brown);
}

.hours-item .time {
  white-space: nowrap;
}

/* Closed days: red band so nobody drives over on a Sunday */
.hours-item.closed {
  background: rgba(140, 47, 36, 0.08);
  border-bottom: 1px solid var(--accent-red);
}

.hours-item.closed .day,
.hours-item.closed .time {
  color: var(--accent-red);
  font-weight: 700;
}

.hours-item.closed .time {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}

.hours-note {
  margin-top: 2rem;
  text-align: center;
  font-style: italic;
  font-size: 0.95rem;
}

.hours-note i {
  color: var(--accent-gold);
  margin-right: 0.35rem;
}

/* Comprehensive Menu Styles */
.menu-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--primary-brown);
  font-weight: 600;
  margin-bottom: 3rem;
  padding: 1rem 2rem;
  background: rgba(184, 134, 11, 0.07);
  border-radius: 2px;
  border: 1px solid var(--accent-gold);
}

.menu-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(450px, 100%), 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.menu-category {
  background: var(--soft-white);
  border-radius: 2px;
  padding: 2.5rem;
  border: 1px solid var(--hairline);
  border-top: 4px solid var(--accent-gold);
  margin-bottom: 3rem;
  overflow: hidden;
}

.menu-category h3 {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--primary-brown);
  margin-bottom: 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.menu-category h3 i {
  color: var(--accent-gold);
  font-size: 1.8rem;
}

.menu-subcategory {
  margin-bottom: 2.5rem;
  padding: 2rem;
  border-bottom: 1px solid #eee;
}

.menu-subcategory:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.menu-subcategory h4 {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--primary-brown);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-gold);
  font-weight: 700;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

/* Printed-menu lines: dotted leaders instead of cards */
.menu-items span {
  background: transparent;
  padding: 0.6rem 0.25rem;
  border-bottom: 1px dotted rgba(43, 33, 24, 0.45);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark-text);
  transition: background 0.3s ease;
}

.menu-items span:hover {
  background: rgba(184, 134, 11, 0.07);
}

/* Testimonials Section */
.testimonials-section {
  background: var(--warm-cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-item {
  background: var(--soft-white);
  padding: 3rem 1.75rem 1.75rem;
  border-radius: 2px;
  border: 1px solid var(--hairline);
  position: relative;
}

/* Slight alternating tilt, like clippings pinned to a corkboard */
.testimonial-item:nth-child(odd) {
  transform: rotate(-0.6deg);
}

.testimonial-item:nth-child(even) {
  transform: rotate(0.5deg);
}

/* Curly opening quote inside the card's top-left corner */
.testimonial-item::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-size: 3.5rem;
  color: var(--accent-red);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--dark-text);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-brown);
  margin-bottom: 0.5rem;
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 0.9rem;
}

/* Directions Link */
.directions-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.directions-link:hover {
  color: var(--primary-brown);
}

/* Footer */
footer {
  background: var(--primary-brown);
  color: var(--warm-cream);
  margin-top: 2rem;
  position: relative;
}

footer:before {
  top: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 2rem;
}

.footer-section h4 {
  color: var(--accent-gold);
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--warm-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--accent-gold);
}

.footer-section p {
  margin: 0.5rem 0;
  line-height: 1.6;
}

.footer-section a {
  color: var(--warm-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(201, 183, 156, 0.2);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent-gold);
  color: var(--primary-brown);
  transform: translateY(-2px);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(201, 183, 156, 0.2);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--accent-gold);
  border: none;
  border-radius: 50%;
  color: var(--primary-brown);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px var(--shadow-medium);
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #9a7009;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Menu Page Specific Styles */
.menu-page {
  padding-top: 0;
}

.page-header {
  background: linear-gradient(rgba(46, 64, 52, 0.92), rgba(46, 64, 52, 0.92)), url('assets/images/background2.jpg') center/cover;
  color: white;
  padding: 1rem 0 4rem 0;
  position: relative;
}

.page-header::after {
  bottom: -8px;
}

.main-nav {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links a:hover,
.nav-links a.active {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
  text-align: center;
  padding: 3rem 2rem 1rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 8vw, 3rem);
  margin-bottom: 1rem;
  font-family: 'Cinzel', serif;
}

.page-subtitle {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.pricing-note {
  font-size: 1rem;
  margin-bottom: 0;
}

.pricing-note a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.menu-main {
  padding: 2rem 0;
}

.menu-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.menu-category h2 {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.06em;
  background: var(--primary-brown);
  color: white;
  padding: 1.5rem 2rem;
  margin: 0;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-subcategory h3 {
  color: var(--primary-brown);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-gold);
}

/* Menu Highlights Section for Main Page */
.menu-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.highlight-category {
  background: var(--soft-white);
  padding: 1.5rem;
  border-radius: 2px;
  border: 1px solid var(--hairline);
  border-top: 4px solid var(--accent-gold);
}

.highlight-category h3 {
  color: var(--primary-brown);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.2rem;
}

.highlight-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-category li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  color: var(--dark-text);
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.highlight-category li:before {
  content: '•';
  color: var(--accent-gold);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2rem;
}

.highlight-category li:last-child {
  border-bottom: none;
}

.menu-cta-section {
  text-align: center;
  margin: 3rem 0;
  padding: 2rem;
  background: var(--warm-cream);
  border-radius: 2px;
  border: 1px solid var(--hairline);
  border-top: 4px solid var(--accent-gold);
}

.btn-primary.large {
  font-size: 1.2rem;
  padding: 1rem 2rem;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Section Divider Styles */
.section-divider {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--primary-brown);
  color: white;
  margin: 3rem 0 2rem 0;
  border-radius: 2px;
}

.section-divider h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  margin: 0;
  opacity: 0.9;
  font-style: italic;
}

/* Catering Menu Container */
.catering-menu {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.catering-category {
  background: var(--soft-white);
  border-radius: 2px;
  border: 1px solid var(--hairline);
  overflow: hidden;
  border-top: 6px solid var(--accent-gold);
}

.catering-note {
  background: var(--primary-brown);
  color: var(--warm-cream);
  padding: 1.5rem 2rem;
  margin: 0;
  text-align: center;
  font-size: 1.2rem;
}

.catering-note a {
  color: var(--warm-cream);
  text-decoration: underline;
}

.catering-note a:hover {
  text-decoration: none;
}

/* Improved catering layout */
.catering-category .menu-subcategory {
  padding: 2rem;
  border-bottom: 2px solid #f0f0f0;
}

.catering-category .menu-subcategory:last-of-type {
  border-bottom: none;
}

.catering-category .menu-subcategory h3 {
  background: var(--primary-brown);
  color: white;
  margin: -2rem -2rem 1.5rem -2rem;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.catering-sides {
  padding: 2rem;
  background: var(--warm-cream);
  margin: 1.5rem -2rem -2rem -2rem;
  border-top: 3px solid var(--accent-gold);
}

.sides-header h3 {
  color: var(--primary-brown);
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.sides-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 1.5rem;
}

.sides-column h4 {
  color: var(--primary-brown);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-gold);
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-divider {
    padding: 2rem 1rem;
  }
  
  .section-divider h2 {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .catering-menu {
    padding: 0 1rem;
  }
  
  .catering-note {
    font-size: 1rem;
    padding: 1rem;
  }

  .nav-container {
    gap: 1.5rem;
    padding: 0 1rem;
    justify-content: space-around;
  }
  
  nav a {
    font-size: 0.9rem;
    padding: 1rem 0;
  }
  
  nav a span {
    display: none;
  }

  .nav-links {
    gap: 0.5rem;
  }

  .nav-links a {
    padding: 0.5rem;
  }
  
  main {
    padding: 2rem 1rem 1rem;
  }
  
  .section-content {
    padding: 2rem 1.5rem;
  }
  
  .section h2 {
    font-size: 2rem;
  }
  
  .highlights {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-text {
    text-align: center;
  }
  
  .about-text p {
    text-align: center;
  }
  
  .menu-sections {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .menu-category {
    padding: 1.5rem;
  }
  
  .menu-items {
    grid-template-columns: 1fr;
  }
  
  .food-gallery {
    grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
    gap: 1rem;
    padding: 1rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 2rem 1.25rem;
  }

  .section h2 {
    font-size: 1.6rem;
  }
  
  .section {
    margin-bottom: 4rem;
  }
  
  .section-content {
    padding: 1.5rem 1rem;
  }
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2.5rem 2rem;
  background: var(--warm-cream);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  transition: background 0.3s ease;
  border-left: 4px solid var(--accent-gold);
}

.contact-item:hover {
  background: #ece3cc;
}

.contact-item i {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: center;
}

.contact-item div {
  flex: 1;
}

.contact-item h3 {
  font-family: 'Cinzel', serif;
  color: var(--primary-brown);
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.contact-item p {
  margin: 0;
  text-align: left;
  line-height: 1.6;
  font-size: 1.05rem;
}

.contact-item a {
  color: var(--primary-brown);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--accent-gold);
}

/* Menu Gallery at Top Styles */
.menu-gallery-top {
  margin: 2rem 0 4rem 0;
  text-align: center;
}

.menu-gallery-top h2 {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.06em;
  color: var(--primary-brown);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 2rem;
}

/* Stacked contact cards: center everything as a unit */
@media (max-width: 768px) {
  .contact-item {
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
  }

  .contact-item i {
    margin-top: 0;
  }

  .contact-item div {
    width: 100%;
  }

  .contact-item h3,
  .contact-item p {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .section {
    opacity: 1;
    transform: none;
    transition: box-shadow 0.3s ease;
  }
}