* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f7f1e8;
  color: #2f241c;
}

a {
  text-decoration: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff8ef;
  border-bottom: 1px solid #e6d7c3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 36px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #7a2f1d;
}

.logo img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 10px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-size: 1.25rem;
  font-weight: 800;
  color: #7a2f1d;
}

.logo-sub {
  font-size: 0.82rem;
  font-weight: 600;
  color: #c79a2b;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navigation-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.navigation-menu a {
  color: #2f241c;
  font-weight: 600;
  font-size: 0.98rem;
  transition: color 0.2s ease;
}

.navigation-menu a:hover {
  color: #7a2f1d;
}

.menu-link {
  background-color: #7a2f1d;
  color: white;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.menu-link:hover {
  background-color: #5f2215;
  transform: translateY(-1px);
}

@media screen and (max-width: 900px) {
  header {
    flex-direction: column;
    gap: 14px;
    padding: 16px 20px;
  }

  .navigation-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .logo {
    justify-content: center;
  }
}

@media screen and (max-width: 600px) {
  .logo img {
    height: 46px;
    width: 46px;
  }

  .logo-main {
    font-size: 1.05rem;
  }

  .logo-sub {
    font-size: 0.72rem;
  }

  .navigation-menu {
    gap: 14px;
  }
}
/* Hero */
.hero {
  min-height: 72vh;
  background-image: linear-gradient(rgba(34, 24, 18, 0.45), rgba(34, 24, 18, 0.55)),
    url("images/menu/page-1.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 60px 40px;
}

.hero-overlay {
  max-width: 650px;
  color: white;
}

.hero-tag {
  display: inline-block;
  background-color: rgba(255, 248, 239, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.1;
  margin: 0 0 14px;
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 26px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btn1,
.hero-btn2 {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
}

.hero-btn1 {
  background-color: #f0c978;
  color: #2f241c;
}

.hero-btn2 {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

/* Info strip */
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background-color: white;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
  margin-top: 0;
  color: #7a2f1d;
}

/* Menu section */
.menu-section {
  padding: 30px 40px 70px;
  max-width: 1300px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 32px;
}

.section-label {
  color: #7a2f1d;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.section-heading h2 {
  margin: 0 0 10px;
  font-size: 2.2rem;
}

.section-heading p {
  margin: 0;
  color: #6a5d52;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 28px;
}

.menu-card {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.16);
}

.menu-card img {
  width: 100%;
  display: block;
}

/* Footer */
footer {
  background-color: #3b241b;
  color: white;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px;
}

.footer-column h2 {
  margin-top: 0;
  color: #f0c978;
}

.footer-column p {
  line-height: 1.7;
  margin-bottom: 0;
}

/* Responsive */
@media screen and (max-width: 900px) {
  header {
    flex-direction: column;
    gap: 16px;
    padding: 18px 20px;
  }

  .navigation-menu {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 50px 20px;
    min-height: 60vh;
  }

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

  .info-strip {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .menu-section {
    padding: 20px 20px 50px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 32px 20px;
  }
}

@media screen and (max-width: 600px) {
  .navigation-menu {
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}