:root {
  --overlay: rgba(17, 10, 6, 0.5);
  --overlay-strong: rgba(17, 10, 6, 0.72);
  --text: #f8f1e7;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background-color: #140d08;
}

.landing-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, var(--overlay-strong) 0%, var(--overlay) 42%, var(--overlay-strong) 100%),
    url("./assets/restaurante-alfredo-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.landing-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.22));
}

.landing-hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 720px);
  display: grid;
  justify-items: center;
  gap: 20px;
  text-align: center;
}

.landing-hero__logo {
  width: min(440px, 72vw);
  max-height: 58vh;
  object-fit: contain;
  filter: drop-shadow(var(--shadow));
}

.landing-hero__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.landing-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 12px 22px;
  border: 1px solid #e4d4a0;
  border-radius: 18px;
  background: #d4bf7e;
  color: #231f20;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.landing-hero__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

.landing-hero__button:focus-visible {
  outline: 2px solid rgba(248, 241, 231, 0.92);
  outline-offset: 4px;
}

@media (max-width: 640px) {
  .landing-hero__content {
    gap: 14px;
  }

  .landing-hero__logo {
    width: min(320px, 78vw);
  }

  .landing-hero__title {
    font-size: clamp(2rem, 10vw, 3.1rem);
    letter-spacing: 0.05em;
  }

  .landing-hero__button {
    min-width: 200px;
    padding: 11px 18px;
  }
}
