:root {
  --red: #d32222;
  --dark-red: #b21c1c;
  --text: #222;
  --bg: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */

header {
  border-bottom: 4px solid var(--red);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  height: 100px;
  width: auto;
}

.brand-text {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--red);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 2px solid var(--red);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: 0.15s ease;
  white-space: nowrap;
}

.btn-menu {
  background: var(--red);
  color: #fff;
}

.btn-menu:hover {
  background: var(--dark-red);
  transform: translateY(-1px);
}

.btn-foodora {
  background: #fff;
  color: var(--red);
}

.btn-foodora:hover {
  background: #ffeef0;
  transform: translateY(-1px);
}

.btn-foodora img {
  height: 20px;
  width: auto;
  margin-right: 0.4rem;
}

/* HERO */

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--red);
  margin-bottom: 0.7rem;
}

.hero-text p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.hero-tagline {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.hero-card {
  border-radius: 1.25rem;
  border: 3px dashed var(--red);
  padding: 1rem 1.25rem;
  background: #fff5f5;
  font-size: 0.9rem;
}

.hero-card strong {
  color: var(--red);
}

/* MENU SECTION */

#menu {
  background: #fff;
  border-top: 6px solid var(--red);
  border-bottom: 6px solid var(--red);
  margin-top: 1.5rem;
}

.menu-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.75rem 1.25rem 2.25rem;
}

.menu-inner h2 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.menu-subtitle {
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.menu-image-wrapper {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border: 4px solid var(--red);
  background: #fff;
}

.menu-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

/* FOOTER */

footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2rem;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #555;
}

footer a {
  color: var(--red);
  font-weight: 600;
}

@media (max-width: 720px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  .brand {
    justify-content: center;
  }
  .nav-actions {
    justify-content: center;
  }
  .hero-card {
    text-align: center;
  }
}
