/* =========================
   COLORS
========================= */
:root {
  --flour: #FAF7F2;
  --charcoal: #2B2B2B;
  --olive: #6B7A4E;
}

/* =========================
   GLOBAL
========================= */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--flour);
  color: var(--charcoal);
}

h1, h2 {
  font-family: 'Schoolbell', 'Playfair Display', serif;
  font-weight: 400;
  margin: 0.5rem 0;
}

a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.9rem;
  margin: 0 0.5rem;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--olive);
}

/* =========================
   NAVIGATION
========================= */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(250, 247, 242, 0.95);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center; /* center all buttons */
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(250, 247, 242, 0.95);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav-center {
  display: flex;
  gap: 1.5rem; /* space between buttons */
}

.nav-center a {
  font-family: 'Schoolbell', 'Playfair Display', serif;
  font-weight: 400;
  text-decoration: none;
  color: var(--charcoal);
  font-size: 1rem;
  transition: color 0.2s ease;
}

.nav-center a:hover {
  color: var(--olive);
}

/* =========================
   RESPONSIVE NAV
========================= */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    padding: 1rem;
  }

  .nav-center {
    flex-direction: column;
    gap: 0.8rem;
  }

}

/* =========================
   RESPONSIVE NAV
========================= */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    padding: 1rem;
  }

  .nav-left, .nav-right {
    justify-content: center;
    margin: 0.5rem 0;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}


/* =========================
   HERO SECTION
========================= */
.hero {
  height: 80vh;
  background-image: url("https://raw.githubusercontent.com/epitomeedu/epitomeeatery/a75482e377952dfcc8dcf14656c77d20b1687f6c/20211101_133136-01.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(43, 43, 43, 0.35);
  z-index: 1;
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  color: var(--flour);
}

.hero-content .hero-logo {
  max-height: 200px;
  width: auto;
  margin-bottom: 1rem;
}

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

.hero-content p {
  font-size: .9rem;
  letter-spacing: 1px;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 4rem 2rem;
  text-align: center;
}

.section.light {
  background-color: white;
}

/* =========================
   MENU / SHOP
========================= */
.menu-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.menu-list li {
  margin: 0.75rem 0;
  font-size: 1.1rem;
}

/* =========================
   FOOTER
========================= */
.footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    padding: 1rem;
  }

  .nav-left, .nav-right {
    justify-content: center;
    margin: 0.5rem 0;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .hero-content .hero-logo {
    max-height: 100px;
  }

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

  .hero-content p {
    font-size: 1rem;
  }

  .section {
    padding: 2rem 1rem;
  }

  .menu-list li {
    font-size: 1rem;
  }
}
