:root {
  --red: #cc4a39;
  --red-dark: #a8372b;
  --green: #2f7d45;
  --green-dark: #215c31;
  --cream: #f8f2e9;
  --ink: #1c1c1c;
  --white: #ffffff;
  --shadow: 0 16px 35px rgba(28, 28, 28, 0.15);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Nunito", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff8ef 0%, #f8f2e9 35%, #f2eadf 100%);
}

.container {
  width: min(1100px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 72vh;
  display: grid;
  align-items: center;
  padding: 3.5rem 0;
  background:
    linear-gradient(160deg, rgba(47, 125, 69, 0.18), rgba(204, 74, 57, 0.22)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15) 10px, rgba(248, 242, 233, 0.2) 10px, rgba(248, 242, 233, 0.2) 20px);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 18%, rgba(204, 74, 57, 0.25) 0 70px, transparent 70px),
    radial-gradient(circle at 88% 76%, rgba(47, 125, 69, 0.22) 0 85px, transparent 85px);
}

.hero__content {
  text-align: center;
}

.hero__eyebrow {
  display: inline-block;
  margin: 0;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand {
  margin: 1.2rem 0 0.6rem;
  line-height: 0.95;
}

.brand--tomatina {
  display: block;
  font-family: "Pacifico", cursive;
  color: var(--red);
  font-size: clamp(2.6rem, 8vw, 6rem);
}

.brand--pizza {
  display: block;
  font-family: "Pacifico", cursive;
  color: var(--green);
  font-size: clamp(2rem, 6vw, 4.3rem);
}

.hero__subtitle {
  width: min(680px, 100%);
  margin: 1.2rem auto 0;
  font-size: clamp(1.02rem, 2vw, 1.35rem);
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.btn--primary:hover {
  background: var(--red-dark);
}

.btn--secondary {
  border: 2px solid var(--green);
  color: var(--green-dark);
  background: #fff;
}

.btn--secondary:hover {
  background: #edf8f0;
}

.menu {
  padding: 4.6rem 0 3.2rem;
}

.section-title {
  text-align: center;
}

.section-title p {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  font-size: 1.05rem;
}

.section-title h2 {
  margin: 0.35rem 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  color: var(--red);
}

.menu-grid {
  position: relative;
  margin-top: 2rem;
  padding: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  border-radius: 20px;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(18, 18, 18, 0.5), rgba(18, 18, 18, 0.5)),
    url("assets/menu-bg.webp");
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  border: 2px solid #ebdccb;
  padding: 1.2rem;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.07);
}

.card h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.9rem;
  text-transform: uppercase;
  color: var(--green);
}

.card__items {
  margin: 0.55rem 0;
  line-height: 1.4;
}

.card__price {
  margin: 0;
  font-weight: 800;
  color: var(--red-dark);
}

.contact {
  padding: 4rem 0 4.3rem;
  background:
    linear-gradient(170deg, rgba(47, 125, 69, 0.94), rgba(33, 92, 49, 0.96)),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06) 12px, rgba(255, 255, 255, 0) 12px, rgba(255, 255, 255, 0) 24px);
}

.section-title--light p,
.section-title--light h2 {
  color: var(--white);
}

.contact-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.9rem;
}

.contact-card {
  --channel-color: var(--red);
  text-decoration: none;
  color: var(--ink);
  background: var(--cream);
  border-radius: 16px;
  padding: 1rem 1rem 1.1rem;
  display: grid;
  justify-items: center;
  gap: 0.2rem;
  text-align: center;
  border: 2px solid transparent;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--channel-color);
  box-shadow: var(--shadow);
}

.contact-card__icon {
  font-size: 1.9rem;
  line-height: 1;
  color: var(--channel-color);
}

.contact-card__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.65rem;
  color: var(--green-dark);
  text-transform: uppercase;
}

.contact-card__value {
  font-weight: 700;
}

.contact-card--phone {
  --channel-color: #cc4a39;
}

.contact-card--whatsapp {
  --channel-color: #25d366;
}

.contact-card--instagram {
  --channel-color: #e1306c;
}

.contact-card--messenger {
  --channel-color: #0a7cff;
}

.footer {
  text-align: center;
  padding: 1rem;
  background: #fff;
  font-size: 0.95rem;
}

.footer p {
  margin: 0.35rem 0;
}

.footer a {
  color: var(--green-dark);
  font-weight: 700;
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 2.6rem 0;
  }

  .menu {
    padding-top: 3.2rem;
  }
}
