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

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

body {
  font-family: 'Source Sans Pro', sans-serif;
  color: #1b1b1b;
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== Layout ===== */
.wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  text-align: center;
}

.section-alt {
  background: #f7f4f0;
}

/* ===== Typography ===== */
h1, h2 {
  font-family: 'Fjalla One', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1b1b1b;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8b3a2a;
  margin-bottom: 6px;
}

p {
  color: #5e5e5e;
  font-size: 1.05rem;
}

.lead {
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto 20px;
}

.accolade {
  margin-top: 24px;
  font-weight: 600;
  font-style: italic;
  color: #8b3a2a;
}

.divider {
  width: 50px;
  height: 3px;
  background: #8b3a2a;
  margin: 16px auto 32px;
}

/* ===== Nav ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid #eee;
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  height: 60px;
}

.logo {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8b3a2a;
  margin-right: auto;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #5e5e5e;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #8b3a2a;
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-btn span {
  width: 22px;
  height: 2px;
  background: #1b1b1b;
}

/* Order Takeout button */
.nav-order {
  display: inline-block;
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: #8b3a2a;
  padding: 9px 18px;
  white-space: nowrap;
  transition: background 0.2s;
}

.nav-order:hover {
  background: #6e2d20;
}

/* ===== Hero ===== */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #1b1b1b url('images/hero-bg.jpg') center/cover no-repeat;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-text {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.hero-logo {
  max-width: 420px;
  width: 100%;
  height: auto;
  margin: 0 auto 28px;
}

.hero-tagline {
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: rgba(255,255,255,0.8);
}

/* Open/closed status — small indicator in the nav bar */
.nav-status {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4a4a4a;
  white-space: nowrap;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 7px;
  flex-shrink: 0;
}

.nav-status.is-open .status-dot {
  background: #3fa845;
}

.nav-status.is-closed .status-dot {
  background: #c0563f;
}

.status-sub {
  font-weight: 400;
  color: #9a9a9a;
}

.status-sub::before {
  content: '\00b7';
  margin: 0 5px;
  color: #cabfb2;
}

/* ===== Menu Slider ===== */
.slider-container {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.slider-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.slide {
  min-width: 100%;
  padding: 0 20px;
}

.slide-inner {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
  overflow: hidden;
}

.slide-inner img {
  width: 100%;
  height: auto;
  display: block;
}

.slide-label {
  padding: 10px 0;
  text-align: center;
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8b3a2a;
  background: #fff;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ddd;
  color: #1b1b1b;
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  border-color: #8b3a2a;
  color: #8b3a2a;
}

.slider-prev { left: 0; }
.slider-next { right: 0; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  padding-bottom: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #8b3a2a;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.dot.active {
  background: #8b3a2a;
}

/* ===== Patio Banner ===== */
.section-banner {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #2e5c2e url('images/patio.jpg') center/cover no-repeat;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.banner-text {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 0 24px;
  max-width: 600px;
}

.banner-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 12px;
}

.banner-text p {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
}

/* ===== Reviews ===== */
.reviews-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
  text-align: left;
  margin-top: 16px;
}

.review {
  border-left: 3px solid #8b3a2a;
  padding-left: 20px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: #8b3a2a;
  color: #fff;
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1b1b1b;
}

.review-stars {
  color: #d4a017;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.review p {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
}

/* Rating summary */
.rating-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 4px auto 12px;
}

.rating-score {
  font-family: 'Fjalla One', sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  color: #8b3a2a;
}

.rating-stars-wrap {
  text-align: left;
}

.rating-stars {
  position: relative;
  display: inline-block;
  font-size: 1.15rem;
  letter-spacing: 3px;
  color: #d8d0c4;
}

.rating-stars::before {
  content: '\2605\2605\2605\2605\2605';
}

.rating-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  overflow: hidden;
  white-space: nowrap;
  color: #d4a017;
}

.rating-stars-fill::before {
  content: '\2605\2605\2605\2605\2605';
}

.rating-count {
  display: block;
  font-size: 0.85rem;
  color: #5e5e5e;
  margin-top: 3px;
}

.rating-link {
  display: inline-block;
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: #8b3a2a;
  padding: 11px 22px;
  transition: background 0.2s;
}

.rating-link:hover {
  background: #6e2d20;
}

/* ===== Menu Lightbox ===== */
.slide-inner {
  cursor: zoom-in;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: zoom-out;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-hint {
  font-size: 0.8rem;
  color: #999;
  margin-top: 6px;
  text-align: center;
}

.menu-fulllink {
  display: inline-block;
  margin-top: 22px;
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: #8b3a2a;
  padding: 14px 34px;
  transition: background 0.2s;
}

.menu-fulllink:hover {
  background: #6e2d20;
}

/* ===== Catering ===== */
.catering-banner {
  background: #1b1b1b;
  min-height: auto;
  padding: 64px 0;
}

.catering-phone {
  display: inline-block;
  margin-top: 20px;
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: #e0c9a8;
  border-bottom: 2px solid #e0c9a8;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.catering-phone:hover {
  color: #fff;
  border-color: #fff;
}

/* ===== Visit ===== */
.visit-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  margin-top: 16px;
}

.visit-item a {
  color: #8b3a2a;
  font-weight: 600;
  transition: color 0.2s;
}

.visit-item a:hover {
  color: #6e2d20;
  text-decoration: underline;
}

.hours-note {
  font-size: 0.9rem !important;
  font-style: italic;
  margin-top: 4px;
}

/* Schedule */
.schedule {
  margin-top: 48px;
  text-align: center;
}

.schedule > h3 {
  margin-bottom: 4px;
}

.schedule-note {
  font-size: 0.85rem !important;
  font-style: italic;
  margin-bottom: 20px;
}

.schedule-grid {
  max-width: 680px;
  margin: 0 auto;
  border-top: 1px solid #e0d8d0;
}

.schedule-day {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 14px 16px;
  border-bottom: 1px solid #e0d8d0;
  text-align: left;
}

.schedule-day.highlight {
  background: #faf5ef;
}

.day-label {
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8b3a2a;
  min-width: 40px;
  flex-shrink: 0;
}

.day-special {
  font-size: 0.95rem;
  color: #5e5e5e;
}

.seasonal {
  font-size: 0.8rem;
  font-style: italic;
  color: #999;
}

.schedule-footer {
  margin-top: 16px;
  font-size: 0.9rem !important;
  font-weight: 600;
  color: #8b3a2a;
}

/* Map */
.visit-map {
  margin-top: 48px;
}

.visit-map iframe {
  width: 100%;
  display: block;
}

.visit-cta {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.visit-cta a {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: #8b3a2a;
  transition: background 0.2s;
}

.visit-cta a:hover {
  background: #6e2d20;
}

/* ===== Footer ===== */
footer {
  background: #1b1b1b;
  color: #cfcfcf;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 52px 24px 36px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 12px;
}

.footer-col h4 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #e0c9a8;
  margin-bottom: 14px;
}

.footer-text {
  font-size: 0.92rem;
  color: #a8a8a8;
  margin-bottom: 10px;
}

.footer-text a {
  color: #a8a8a8;
  transition: color 0.2s;
}

.footer-text a:hover {
  color: #fff;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.92rem;
  color: #a8a8a8;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social {
  margin-top: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: #8b3a2a;
  border-radius: 50%;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: #6e2d20;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #777;
}

/* ===== What's Happening This Week ===== */
.events-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
  text-align: left;
}

.event-card {
  background: #fff;
  border: 1px solid #e6ddd3;
  border-top: 4px solid #8b3a2a;
  padding: 24px 22px;
}

.event-card.is-today {
  background: #faf5ef;
  box-shadow: 0 6px 24px rgba(139,58,42,0.13);
}

.event-card-day {
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8b3a2a;
  margin-bottom: 4px;
}

.event-today-tag {
  display: inline-block;
  background: #8b3a2a;
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  margin-left: 4px;
  vertical-align: middle;
}

.event-card-title {
  font-size: 1.2rem;
  color: #1b1b1b;
  margin-bottom: 8px;
}

.event-card-detail {
  font-size: 0.95rem;
  color: #5e5e5e;
  margin-bottom: 14px;
}

.event-card-specials {
  margin: 0;
  padding: 0;
}

.event-card-specials li {
  position: relative;
  font-size: 0.9rem;
  color: #5e5e5e;
  padding: 6px 0 6px 16px;
  border-top: 1px solid #f0eae3;
}

.event-card-specials li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 5px;
  height: 5px;
  background: #8b3a2a;
  border-radius: 50%;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid #eee;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-btn {
    display: flex;
  }

  .reviews-list {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .events-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .visit-top {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .slider-container {
    max-width: 100%;
  }

  h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .visit-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .schedule-day {
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px;
  }

  .nav-inner {
    gap: 10px;
    padding: 0 16px;
  }

  .logo {
    font-size: 1rem;
  }

  .nav-order {
    font-size: 0.68rem;
    padding: 7px 9px;
  }

  .nav-status {
    font-size: 0.72rem;
  }

  .status-sub {
    display: none;
  }
}

/* ===== Daily Event Popup ===== */
.event-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.event-popup-overlay.open {
  display: flex;
}

.event-popup {
  position: relative;
  background: #fff;
  border-top: 5px solid #8b3a2a;
  width: 100%;
  max-width: 420px;
  padding: 38px 34px 32px;
  text-align: center;
  box-shadow: 0 16px 50px rgba(0,0,0,0.35);
  animation: popupIn 0.3s ease;
}

@keyframes popupIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.event-popup-close {
  position: absolute;
  top: 8px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.9rem;
  line-height: 1;
  color: #b0a596;
  cursor: pointer;
}

.event-popup-close:hover {
  color: #1b1b1b;
}

.popup-eyebrow {
  display: inline-block;
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: #8b3a2a;
  padding: 5px 14px;
  margin-bottom: 14px;
}

.popup-title {
  font-size: 1.7rem;
  color: #1b1b1b;
  margin-bottom: 8px;
}

.popup-detail {
  font-size: 1rem;
  color: #5e5e5e;
  margin: 0;
}

.event-popup-btn {
  margin-top: 20px;
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: #8b3a2a;
  border: none;
  padding: 12px 30px;
  cursor: pointer;
  transition: background 0.2s;
}

.event-popup-btn:hover {
  background: #6e2d20;
}

.event-popup-specials {
  display: none;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e6ddd3;
  text-align: left;
}

.event-popup-specials.open {
  display: block;
}

.popup-specials-label {
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8b3a2a;
  text-align: center;
  margin-bottom: 10px;
}

.popup-specials-list {
  margin: 0;
  padding: 0;
}

.popup-specials-list li {
  position: relative;
  font-size: 0.98rem;
  color: #5e5e5e;
  padding: 8px 0 8px 22px;
  border-bottom: 1px solid #f0eae3;
}

.popup-specials-list li:last-child {
  border-bottom: none;
}

.popup-specials-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 16px;
  width: 6px;
  height: 6px;
  background: #8b3a2a;
  border-radius: 50%;
}

/* ===== Sign Up (MailerLite embedded form, restyled to match the site) ===== */
#signup .ml-form-embedContainer {
  max-width: 440px;
  margin: 8px auto 0;
}

#signup .ml-form-fieldRow {
  margin-bottom: 12px;
}

#signup .ml-form-embedBody input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  color: #1b1b1b;
  background: #fff;
  border: 1px solid #d8cfc4;
}

#signup .ml-form-embedBody input[type="email"]:focus {
  outline: none;
  border-color: #8b3a2a;
}

#signup .ml-form-embedSubmit button {
  width: 100%;
  padding: 14px 24px;
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: #8b3a2a;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

#signup .ml-form-embedSubmit button:hover {
  background: #6e2d20;
}

#signup .ml-form-successContent h4 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8b3a2a;
  margin-bottom: 8px;
}

#signup .ml-form-successContent p {
  font-size: 1.05rem;
  color: #5e5e5e;
}

#signup .ml-error input {
  border-color: #c0392b !important;
}

/* MailerLite submit-loading spinner */
.ml-form-embedSubmitLoad {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.ml-form-embedSubmitLoad:after {
  content: " ";
  display: block;
  width: 11px;
  height: 11px;
  margin: 1px;
  border-radius: 50%;
  border: 4px solid #fff;
  border-color: #ffffff #ffffff #ffffff transparent;
  animation: ml-form-embedSubmitLoad 1.2s linear infinite;
}

@keyframes ml-form-embedSubmitLoad {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.signup-note {
  font-size: 0.85rem !important;
  font-style: italic;
  color: #999;
  margin-top: 14px;
}

@media (max-width: 480px) {
  .event-popup {
    padding: 32px 24px 28px;
  }

  .popup-title {
    font-size: 1.45rem;
  }
}
