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

:root {
  --brown-dark: #3e2723;
  --brown: #5d4037;
  --brown-light: #8d6e63;
  --cream: #efebe9;
  --cream-dark: #d7ccc8;
  --accent: #ff8f00;
  --white: #fff;
  --text: #3e2723;
  --text-light: #6d4c41;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--cream);
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ===== HEADER / NAV ===== */
.header {
  background: var(--brown-dark);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.header__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .5px;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: var(--cream);
  font-size: .95rem;
  padding: .4rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}

.nav a:hover,
.nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 1rem;
}

.hero__content h1 {
  font-size: 2.8rem;
  margin-bottom: .6rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

.hero__content p {
  font-size: 1.15rem;
  margin-bottom: 1.4rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .4);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: .75rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: .95rem;
  transition: background .2s, transform .15s;
  cursor: pointer;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
}

.btn--primary:hover {
  background: #e67e00;
  transform: translateY(-1px);
}

.btn--outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn--outline:hover {
  background: var(--accent);
  color: var(--white);
}

/* ===== SECTION ===== */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
}

.section__title {
  font-size: 2rem;
  margin-bottom: .4rem;
  color: var(--brown-dark);
}

.section__subtitle {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ===== FEATURES GRID ===== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  transition: transform .2s, box-shadow .2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
}

.feature-card__icon {
  font-size: 2.4rem;
  margin-bottom: .8rem;
}

.feature-card h3 {
  margin-bottom: .5rem;
  color: var(--brown);
}

.feature-card p {
  color: var(--text-light);
  font-size: .95rem;
}

/* ===== IMAGE + TEXT BLOCK ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split__img {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}

.split__text h2 {
  font-size: 1.8rem;
  margin-bottom: .6rem;
  color: var(--brown-dark);
}

.split__text p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* ===== MENU GRID ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.menu-item {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-item__name {
  font-weight: 600;
  color: var(--brown);
}

.menu-item__desc {
  font-size: .85rem;
  color: var(--text-light);
  margin-top: .2rem;
}

.menu-item__price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brown-dark);
  color: var(--cream-dark);
  text-align: center;
  padding: 2rem;
  font-size: .9rem;
}

.footer a {
  color: var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { height: 360px; }
  .hero__content h1 { font-size: 2rem; }
  .split { grid-template-columns: 1fr; }
  .header__inner { flex-wrap: wrap; height: auto; padding: .8rem 0; gap: .5rem; }
  .nav { gap: 1rem; }
}
