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

:root {
  /* Primary palette — muted greens from the logo */
  --green-dark: #2E4A3A;
  --green: #4A6E5A;
  --green-light: #6B8E7B;
  --green-pale: #D5DCD3;

  /* Neutrals — warm cream base inspired by WNC farmers market */
  --cream: #FEF3DB;
  --cream-soft: #FDF6E7;
  --off-white: #FBF7EF;
  --white: #FFFFFF;
  --text: #2A2A2A;
  --text-mid: #4A4A40;
  --text-light: #5C5C50;

  /* Accent */
  --gold: #B8923D;
  --gold-light: #E8D9A8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nixie One', cursive;
  color: var(--text);
  background: var(--cream-soft);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Libre Baskerville', serif;
  color: var(--green-dark);
  line-height: 1.3;
}

h5, h6, .subheading {
  font-family: 'Sanchez', serif;
  color: var(--green-dark);
}

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

a {
  color: var(--green-dark);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--green-dark);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER / NAV ===== */
header {
  background: var(--off-white);
  border-bottom: 1px solid var(--green-pale);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
  padding-bottom: 4px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 70px;
  width: auto;
}

.header-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.65rem;
  color: var(--green-dark);
  letter-spacing: 3px;
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

nav a {
  font-family: 'Sanchez', serif;
  font-size: 0.95rem;
  padding: 8px 12px;
  white-space: nowrap;
  border-radius: 4px;
  color: var(--green-dark);
  transition: background 0.2s, color 0.2s;
}

nav a:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}

nav a.btn-order {
  background: var(--green);
  color: var(--white);
  font-family: 'Nixie One', cursive;
  letter-spacing: 0.5px;
}

nav a.btn-order:hover {
  background: var(--green-dark);
}

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle::after {
  content: ' \25BE';
  font-size: 0.75em;
}

.nav-dropdown.open .nav-dropdown-toggle::after {
  content: ' \25B4';
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--off-white);
  border: 1px solid var(--green-pale);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  min-width: 200px;
  padding: 8px 0;
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  font-family: 'Sanchez', serif;
  font-size: 0.92rem;
  padding: 8px 20px;
  color: var(--green-dark);
  border-radius: 0;
  transition: background 0.15s;
}

.nav-dropdown-menu a:hover {
  background: var(--green-pale);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  margin: 5px 0;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1E3328 0%, #2E4A3A 60%, #3A5C48 100%);
  color: var(--white);
  text-align: center;
  padding: 100px 24px 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(197,216,205,0.15) 0%, transparent 60%);
}

.hero h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 8px;
  position: relative;
  text-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

.hero .tagline {
  font-family: 'Sanchez', serif;
  font-size: 1.25rem;
  color: #A8E6C3;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.hero .mission {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.btn {
  display: inline-block;
  font-family: 'Nixie One', cursive;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-1px);
}

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

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

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* ===== HOURS BAR ===== */
.hours-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--green-pale);
  border-top: 1px solid var(--green-pale);
  padding: 20px 24px;
}

.hours-bar .container {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  text-align: center;
}

.hours-item h6 {
  font-family: 'Sanchez', serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.hours-item p {
  font-size: 0.95rem;
  color: var(--text);
}

/* ===== SECTIONS (generic) ===== */
section {
  padding: 80px 0;
}

section:nth-child(even):not(.hero):not(.community-banner):not(.page-hero) {
  background: var(--off-white);
}

section.hero {
  background: linear-gradient(135deg, #1E3328 0%, #2E4A3A 60%, #3A5C48 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.section-header .divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 12px auto 16px;
  border-radius: 2px;
}

.section-header p {
  color: var(--text-mid);
  max-width: 550px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--text-mid);
  line-height: 1.8;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-image {
  background: var(--green-pale);
  border-radius: 8px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-image img {
  width: 65%;
  opacity: 0.7;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--off-white);
  border-radius: 8px;
  border: 1px solid var(--green-pale);
}

.value-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.value-card h5 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
}

/* ===== OFFERINGS ===== */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.offering-card {
  background: var(--cream-soft);
  border-radius: 8px;
  padding: 36px 28px;
  border: 1px solid var(--green-pale);
  transition: box-shadow 0.2s;
}

.offering-card:hover {
  box-shadow: 0 4px 20px rgba(61,90,76,0.08);
}

.offering-card.has-image {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.offering-card.has-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.offering-card-body {
  padding: 24px 28px 36px;
}

.offering-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.offering-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== COMMUNITY BANNER ===== */
.community-banner {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  padding: 64px 24px;
}

.community-banner h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.community-banner p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 24px;
  font-size: 1rem;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-detail .label {
  font-family: 'Sanchez', serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-dark);
  min-width: 80px;
}

.contact-detail .value {
  color: var(--text);
}

.contact-detail .value a {
  color: var(--green-dark);
  text-decoration: underline;
  text-decoration-color: var(--green-light);
  text-underline-offset: 2px;
}

.map-placeholder {
  background: var(--green-pale);
  border-radius: 8px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--green-dark);
  color: var(--green-pale);
  padding: 40px 0 24px;
}

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

.footer-col h6 {
  font-family: 'Sanchez', serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-col p,
.footer-col a {
  font-size: 0.9rem;
  color: var(--green-pale);
  line-height: 1.8;
}

.footer-col a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: var(--green-pale);
  transition: color 0.2s, transform 0.15s;
}

.social-links a:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: var(--green-light);
}

/* ===== MENU PAGES ===== */
.page-hero {
  background: linear-gradient(135deg, #1E3328 0%, #2E4A3A 60%, #3A5C48 100%);
  color: var(--white);
  text-align: center;
  padding: 48px 24px 40px;
}

.page-hero h1 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

section.page-hero {
  background: linear-gradient(135deg, #1E3328 0%, #2E4A3A 60%, #3A5C48 100%);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Sanchez', serif;
  font-size: 0.82rem;
  color: var(--white);
  background: var(--green);
  padding: 10px 20px 10px 16px;
  border-radius: 0 6px 6px 0;
  position: relative;
  top: 0;
  margin-top: 0;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.back-link:hover {
  background: var(--green-dark);
  color: var(--white);
}

.menu-section {
  padding: 48px 0;
}

.menu-section + .menu-section {
  padding-top: 0;
}

.menu-category {
  margin-bottom: 40px;
}

.menu-category h2 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.menu-category > .divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 20px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.menu-item {
  background: var(--off-white);
  border: 1px solid var(--green-pale);
  border-radius: 8px;
  padding: 20px 24px;
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s;
  position: relative;
}

.menu-item:hover {
  box-shadow: 0 4px 16px rgba(61,90,76,0.1);
  border-color: var(--green-light);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 4px;
}

.menu-item h4 {
  font-size: 1.05rem;
  margin: 0;
}

.menu-item .price {
  font-family: 'Sanchez', serif;
  font-size: 0.95rem;
  color: var(--green-dark);
  font-weight: 700;
  white-space: nowrap;
}

.menu-item .description {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.menu-item .order-toast {
  display: none;
  margin-top: 12px;
}

.menu-item.active .order-toast {
  display: block;
}

.menu-item .order-toast a {
  display: inline-block;
  font-family: 'Nixie One', cursive;
  font-size: 0.85rem;
  padding: 8px 20px;
  background: var(--gold);
  color: var(--white);
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.menu-item .order-toast a:hover {
  background: #a3832f;
  color: var(--white);
}

.offering-card .see-more {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Sanchez', serif;
  font-size: 0.9rem;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.offering-card .see-more:hover {
  border-bottom-color: var(--gold);
}

.catering-card {
  background: var(--off-white);
  border: 1px solid var(--green-pale);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
}

.catering-card h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.catering-card .price {
  font-family: 'Sanchez', serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.catering-card .serves {
  font-family: 'Sanchez', serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.catering-card p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.7;
}

.catering-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.menu-note {
  background: var(--cream);
  border: 1px solid var(--green-pale);
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-mid);
  text-align: center;
}

/* ===== VENDORS PAGE ===== */
.vendors-section {
  padding: 48px 0;
}

.vendors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.vendor-item {
  background: var(--off-white);
  border: 1px solid var(--green-pale);
  border-radius: 6px;
  padding: 14px 18px;
  font-family: 'Sanchez', serif;
  font-size: 0.92rem;
  color: var(--text);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.vendor-item:hover {
  border-color: var(--green-light);
  box-shadow: 0 2px 10px rgba(61,90,76,0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-title {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--off-white);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--green-pale);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }

  nav.open {
    display: flex;
  }

  nav a {
    width: 100%;
    text-align: center;
  }

  .nav-dropdown {
    width: 100%;
    text-align: center;
  }

  .nav-dropdown-toggle {
    display: block;
    width: 100%;
    text-align: center;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    background: var(--green-dark);
    border-radius: 6px;
    min-width: 0;
    padding: 8px 0;
    margin-top: 6px;
  }

  .nav-dropdown-menu a {
    text-align: center;
    font-size: 0.9rem;
    color: var(--white);
    padding: 10px 20px;
  }

  .nav-dropdown-menu a:hover {
    background: rgba(255,255,255,0.1);
  }

  .hero {
    padding: 64px 24px 56px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .hours-bar .container {
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

  .vendors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catering-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 1.6rem;
  }

  .back-link {
    font-size: 0.78rem;
    padding: 8px 16px 8px 12px;
  }
}
