:root {
  --green: #0b4f2c; /* matched to logo */
  --cream: #faf7f2;
  --text: #2b2b2b;
  --muted: #6b6b6b;
}

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

body {
  font-family: "Libre Baskerville", serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

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

/* Header */
.site-header {
  background: var(--cream);
  border-bottom: 2px solid var(--green);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.logo {
  height: 48px;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: var(--green);
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  background:
    linear-gradient(rgba(11,79,44,.75), rgba(11,79,44,.75)),
    url("images/millys-bagels-photo.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 6rem 0;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section.alt {
  background: #f1ece4;
}

.section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--green);
}

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.menu-item h3 {
  margin-bottom: .5rem;
}

.catering-image {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 0 auto;
  border: 2px solid var(--green);
}

.catering-link {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.1rem;
}

.catering-link a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
}

.catering-link a:hover {
  opacity: 0.8;
}


/* Footer */
.site-footer {
  border-top: 2px solid var(--green);
  padding: 2rem 0;
  text-align: center;
  color: var(--muted);
}

/* Mobile */
@media (max-width: 700px) {
  nav {
    display: none;
  }

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