/* ===== 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: 10px;
}

nav a {
  font-family: 'Sanchez', serif;
  font-size: 1.05rem;
  padding: 8px 16px;
  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);
}

/* 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) {
  background: var(--off-white);
}

.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);
}

/* ===== 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;
  }

  .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;
  }
}
