body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("assets/bg-food.webp") center/cover no-repeat;
  filter: blur(5px);
  opacity: 0.30;
  z-index: -1;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #fafafa;
  color: #111;
}

.screen {
  display: none;              /* important */
  height: 100vh;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1.2s ease, transform 1.2s ease;

  grid-template-rows:
    auto    /* header */
    1fr     /* menu */
    auto;   /* footer */
}

/* Active screen */
.screen.active {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

.header {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: left;
}

.header h1 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 36px;
  font-weight: 600;
  color: crimson;
}

.logo-big {
  height: 70px;
  display: block;
  transform: scale(1.15);
  transform-origin: left center;
  filter:
    brightness(1.25)
    contrast(1.2)
    saturate(1.1)
    drop-shadow(0 0 6px rgba(255, 60, 60, 0.55));
}

.logo-small {
  height: 55px;
  display: block;
  transform: scale(1.12);
  transform-origin: left center;
  filter:
    brightness(1.25)
    contrast(1.2)
    saturate(1.1)
    drop-shadow(0 0 5px rgba(255, 60, 60, 0.45));
}

.menu-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.column-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 800;
  font-family:Verdana, Geneva, Tahoma, sans-serif ;
  color: darkblue;
  font-style: italic;
}

.menu-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 5px;
  column-gap: 12px;
  font-size: 24px;
}

.menu-item {
  font-weight: 500;
  font-family: 'Times New Roman', Times, serif;
  color: black;
}

.price {
  text-align: right;
  font-weight: 500;
  font-family: 'Times New Roman', Times, serif;
  color: black;
}

.additional-grid{
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  row-gap: 5px;
  column-gap: 100px;
  font-size: 24px;
}

.footer {
  margin-top: 40px;
  font-size: 22px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact {
  font-size: 22px;
  font-style: italic;
  color: darkblue;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-info {
  font-size: 22px;
  font-style: italic;
  color: darkgreen;
  font-family: cursive;
}


.thanks {
  text-align: center;
  margin-top: 10px;
  font-style: italic;
  color: red;
  font-weight: 500;
}

body::after {
  content: "";
  position: fixed;
  inset: -40%;
  background:
    linear-gradient(
      120deg,
      rgba(255, 80, 80, 0.06),
      rgba(255, 80, 80, 0.02),
      rgba(255, 255, 255, 0.04)
    );
  animation: slowFlow 30s linear infinite;
  z-index: -1;
}

@keyframes slowFlow {
  0% {
    transform: translateX(-20%) translateY(-20%) rotate(0deg);
  }
  100% {
    transform: translateX(20%) translateY(20%) rotate(360deg);
  }
}

