/* ============================================
   Ember & Oak — BBQ & Smokehouse Template CSS
   Prefix: eo-
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --eo-dark: #1C1917;
  --eo-mahogany: #7F1D1D;
  --eo-amber: #D97706;
  --eo-amber-hover: #B45309;
  --eo-cream: #FFF7ED;
  --eo-warm: #FFFBEB;
  --eo-smoke: #44403C;
  --eo-text: #292524;
  --eo-muted: #78716C;
  --eo-border: #D6D3D1;
  --eo-font-heading: 'Teko', 'Impact', sans-serif;
  --eo-font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --eo-container: 1200px;
  --eo-radius: 6px;
  --eo-shadow: 0 4px 20px rgba(28, 25, 23, 0.08);
  --eo-shadow-lg: 0 12px 40px rgba(28, 25, 23, 0.12);
  --eo-transition: 0.3s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: var(--eo-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--eo-text);
  background: var(--eo-cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--eo-amber); text-decoration: none; transition: color var(--eo-transition); }
a:hover { color: var(--eo-amber-hover); }

/* --- Container --- */
.eo-container { max-width: var(--eo-container); margin: 0 auto; padding: 0 24px; }
.eo-container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* --- Demo Banner --- */
.eo-demo-banner {
  background: var(--eo-dark);
  color: #A8A29E;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
}
.eo-demo-banner-inner { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }
.eo-demo-banner-link { color: var(--eo-amber); }

/* --- Navigation --- */
.eo-nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: transparent;
  transition: background var(--eo-transition), box-shadow var(--eo-transition);
}
.eo-nav.eo-scrolled {
  background: rgba(28, 25, 23, 0.96);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.eo-nav-inner {
  max-width: var(--eo-container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.eo-logo {
  font-family: var(--eo-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--eo-cream);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
}
.eo-nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.eo-nav-links a {
  font-family: var(--eo-font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 247, 237, 0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color var(--eo-transition);
}
.eo-nav-links a:hover { color: var(--eo-amber); }
.eo-nav-cta {
  font-family: var(--eo-font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hamburger */
.eo-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 24px;
  position: relative; z-index: 1001;
}
.eo-hamburger-line {
  display: block;
  width: 100%; height: 3px;
  background: var(--eo-cream);
  border-radius: 2px;
  transition: var(--eo-transition);
  position: absolute; left: 0;
}
.eo-hamburger-line:nth-child(1) { top: 0; }
.eo-hamburger-line:nth-child(2) { top: 10px; }
.eo-hamburger-line:nth-child(3) { top: 20px; }
.eo-hamburger.eo-active .eo-hamburger-line:nth-child(1) { top: 10px; transform: rotate(45deg); }
.eo-hamburger.eo-active .eo-hamburger-line:nth-child(2) { opacity: 0; }
.eo-hamburger.eo-active .eo-hamburger-line:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* --- Buttons --- */
.eo-btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--eo-font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--eo-radius);
  text-decoration: none;
  transition: all var(--eo-transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.eo-btn-primary {
  background: var(--eo-amber);
  color: var(--eo-dark);
  border-color: var(--eo-amber);
}
.eo-btn-primary:hover { background: var(--eo-amber-hover); border-color: var(--eo-amber-hover); color: #fff; }
.eo-btn-outline {
  background: transparent;
  color: var(--eo-cream);
  border-color: var(--eo-cream);
}
.eo-btn-outline:hover { background: var(--eo-cream); color: var(--eo-dark); }

/* --- Hero --- */
.eo-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.eo-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.7) 0%, rgba(127, 29, 29, 0.5) 100%);
}
.eo-hero-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 0 24px;
}
.eo-hero-title {
  font-family: var(--eo-font-heading);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  color: var(--eo-cream);
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 16px;
}
.eo-hero-tagline {
  font-family: var(--eo-font-body);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255, 247, 237, 0.85);
  margin-bottom: 32px;
  font-weight: 300;
}
.eo-hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Sections --- */
.eo-section { padding: 100px 0; }
.eo-section-header { text-align: center; margin-bottom: 48px; }
.eo-section-title {
  font-family: var(--eo-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--eo-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.eo-section-subtitle {
  font-size: 1.1rem;
  color: var(--eo-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Menu --- */
.eo-menu-section { background: var(--eo-warm); }
.eo-menu-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.eo-filter-btn {
  padding: 8px 20px;
  font-family: var(--eo-font-heading);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: transparent;
  border: 2px solid var(--eo-border);
  border-radius: 30px;
  cursor: pointer;
  color: var(--eo-muted);
  transition: all var(--eo-transition);
}
.eo-filter-btn:hover, .eo-filter-btn.eo-filter-active {
  background: var(--eo-mahogany);
  border-color: var(--eo-mahogany);
  color: var(--eo-cream);
}
.eo-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.eo-menu-card {
  background: #fff;
  border-radius: var(--eo-radius);
  overflow: hidden;
  box-shadow: var(--eo-shadow);
  transition: transform var(--eo-transition), box-shadow var(--eo-transition);
}
.eo-menu-card:hover { transform: translateY(-4px); box-shadow: var(--eo-shadow-lg); }
.eo-menu-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.eo-menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.eo-menu-card:hover .eo-menu-card-img img { transform: scale(1.05); }
.eo-menu-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--eo-mahogany);
  color: var(--eo-cream);
  padding: 4px 12px;
  font-family: var(--eo-font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}
.eo-menu-card-body { padding: 20px; }
.eo-menu-card-title {
  font-family: var(--eo-font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--eo-dark);
  margin-bottom: 6px;
}
.eo-menu-card-desc {
  font-size: 0.92rem;
  color: var(--eo-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}
.eo-menu-card-price {
  font-family: var(--eo-font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--eo-amber);
}

/* --- Catering --- */
.eo-catering-section { background: var(--eo-dark); color: var(--eo-cream); }
.eo-catering-section .eo-section-title { color: var(--eo-cream); }
.eo-catering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.eo-catering-image img {
  width: 100%; height: 100%; min-height: 400px; object-fit: cover;
  border-radius: var(--eo-radius);
}
.eo-catering-content p { color: rgba(255,247,237,0.8); margin-bottom: 20px; line-height: 1.8; }
.eo-catering-features {
  list-style: none;
  margin-bottom: 28px;
}
.eo-catering-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.eo-catering-icon { font-size: 1.3rem; flex-shrink: 0; }
.eo-catering-features strong {
  display: block;
  font-family: var(--eo-font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.eo-catering-features p { margin-bottom: 0; font-size: 0.92rem; }

/* --- About --- */
.eo-about-section { background: var(--eo-cream); }
.eo-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.eo-about-content p { color: var(--eo-smoke); margin-bottom: 16px; line-height: 1.8; }
.eo-about-image img {
  width: 100%; height: 100%; min-height: 400px; object-fit: cover;
  border-radius: var(--eo-radius);
}
.eo-about-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
}
.eo-stat { text-align: center; }
.eo-stat-number {
  display: block;
  font-family: var(--eo-font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--eo-mahogany);
  text-transform: uppercase;
}
.eo-stat-label {
  font-size: 0.85rem;
  color: var(--eo-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Locations --- */
.eo-locations-section { background: var(--eo-warm); }
.eo-schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.eo-schedule-card {
  background: #fff;
  padding: 24px 20px;
  border-radius: var(--eo-radius);
  text-align: center;
  box-shadow: var(--eo-shadow);
  border-top: 4px solid var(--eo-mahogany);
}
.eo-schedule-day {
  display: block;
  font-family: var(--eo-font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--eo-dark);
  margin-bottom: 8px;
}
.eo-schedule-location { display: block; color: var(--eo-smoke); font-size: 0.95rem; margin-bottom: 4px; }
.eo-schedule-time { display: block; color: var(--eo-amber); font-weight: 600; font-size: 0.9rem; }

/* --- Gallery --- */
.eo-gallery-section { background: var(--eo-cream); }
.eo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.eo-gallery-item {
  border-radius: var(--eo-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.eo-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.eo-gallery-item:hover img { transform: scale(1.08); }

/* --- Reviews --- */
.eo-reviews-section { background: var(--eo-dark); color: var(--eo-cream); }
.eo-reviews-section .eo-section-title { color: var(--eo-cream); }
.eo-reviews-section .eo-section-subtitle { color: rgba(255,247,237,0.7); }
.eo-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.eo-review-card {
  background: var(--eo-smoke);
  padding: 32px;
  border-radius: var(--eo-radius);
  border-left: 4px solid var(--eo-amber);
}
.eo-review-stars { color: var(--eo-amber); font-size: 1.1rem; margin-bottom: 16px; }
.eo-review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,247,237,0.85);
  margin-bottom: 20px;
  font-style: italic;
}
.eo-review-author strong { display: block; color: var(--eo-cream); }
.eo-review-author span { font-size: 0.85rem; color: var(--eo-muted); }

/* --- FAQ --- */
.eo-faq-section { background: var(--eo-warm); }
.eo-faq-list { max-width: 800px; margin: 0 auto; }
.eo-faq-item {
  border-bottom: 1px solid var(--eo-border);
}
.eo-faq-question {
  width: 100%;
  background: none; border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--eo-font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--eo-dark);
  text-align: left;
  transition: color var(--eo-transition);
}
.eo-faq-question:hover { color: var(--eo-amber); }
.eo-faq-icon {
  font-size: 1.4rem;
  color: var(--eo-amber);
  transition: transform var(--eo-transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.eo-faq-item.eo-active .eo-faq-icon { transform: rotate(45deg); }
.eo-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.eo-faq-item.eo-active .eo-faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}
.eo-faq-answer p { color: var(--eo-smoke); line-height: 1.7; }

/* --- Footer --- */
.eo-footer {
  background: var(--eo-dark);
  color: rgba(255,247,237,0.7);
  padding: 64px 0 32px;
}
.eo-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.eo-footer-heading {
  font-family: var(--eo-font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--eo-cream);
  margin-bottom: 16px;
}
.eo-footer ul { list-style: none; }
.eo-footer ul li { margin-bottom: 8px; }
.eo-footer ul a { color: rgba(255,247,237,0.7); }
.eo-footer ul a:hover { color: var(--eo-amber); }
.eo-footer-socials { display: flex; gap: 12px; }
.eo-footer-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--eo-smoke);
  color: var(--eo-cream);
  transition: all var(--eo-transition);
}
.eo-footer-socials a:hover { background: var(--eo-amber); color: var(--eo-dark); }
.eo-footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,247,237,0.1);
  font-size: 0.85rem;
}

/* --- Scroll Reveal --- */
.eo-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.eo-reveal.eo-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .eo-hamburger { display: block; }
  .eo-nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(28, 25, 23, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 999;
  }
  .eo-nav-links.eo-open { display: flex; }
  .eo-nav-links a { font-size: 1.5rem; color: var(--eo-cream); }
  .eo-nav-cta { display: none; }
  .eo-hero-title { font-size: 3rem; }
  .eo-hero-ctas { flex-direction: column; align-items: center; }
  .eo-catering-grid, .eo-about-grid { grid-template-columns: 1fr; }
  .eo-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .eo-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .eo-reviews-grid { grid-template-columns: 1fr; }
  .eo-schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .eo-about-stats { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .eo-gallery-grid { grid-template-columns: 1fr; }
  .eo-footer-grid { grid-template-columns: 1fr; }
  .eo-schedule-grid { grid-template-columns: 1fr; }
  .eo-menu-grid { grid-template-columns: 1fr; }
}
