body {
  margin: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f4b6c2;
  padding: 10px 15px;
  width: 100vw;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}

.menu-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #f4b6c2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.menu-options li {
  width: 100%;
  padding: 16px 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.menu-options.opened {
  opacity: 1;
  transform: scaleY(1);
  pointer-events: auto;
}

.hamburger img {
  width: 30px;
  height: auto;
}

.Pizza-Icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.Pizza-Icon img {
  width: 35px;
  height: auto;
}

.Pizza-Icon p {
  margin: 0;
  font-weight: bold;
  font-size: 1.2rem;
}

.order-online {
  font-weight: bold;
  white-space: nowrap;
}

.hero-section {
  position: relative;
  width: 100vw;
  height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.hero-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section h1 {
  position: relative;
  font-family: 'Oleo Script';
  color: white;
  font-size: 3.5rem;
  font-weight: normal;
  text-align: center;
}

.pepperoni-pizza,
.garlic-bread,
.alfredo {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f4b6c2;
  border-radius: 20px;
  width: 80%;
  margin: 24px auto;
  overflow: hidden;
}

.pepperoni-pizza img,
.garlic-bread img,
.alfredo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.description-1,
.description-2,
.description-3 {
  padding: 30px;
  text-align: center;
}

.description-1 h2,
.description-2 h2,
.description-3 h2 {
  font-family: 'Oleo Script';
  font-size: 2.5rem;
  color: black;
  margin-bottom: 24px;
}

.description-1 p,
.description-2 p,
.description-3 p {
  font-weight: bold;
  font-size: 1.25rem;
  color: black;
  line-height: 1.5rem;
}

.order-now,
.order-now-2,
.order-now-3 {
  margin-top: 24px;
  background-color: #C73939;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: bold;
  font-family: Arial, sans-serif !important;
  text-decoration: none;
  color: black;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.order-now:hover,
.order-now-2:hover,
.order-now-3:hover {
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.5);
  transform: translateY(-1px);
}

.order-online {
  position: relative;
  right: auto;
  top: auto;
  transform: none;
}

@media (min-width: 1024px) {
  header {
    width: 100vw;
  }

  .hero-section {
    width: 100vw;
    height: 600px;
    margin: 0;
  }

  .hero-section h1 {
    font-size: 5rem;
  }

  .menu-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    flex-wrap: nowrap;
    width: 100vw;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 16px;
  }

  .pepperoni-pizza,
  .garlic-bread,
  .alfredo {
    flex-direction: column;
    width: 30%;
    margin: 24px 0;
  }

  .pepperoni-pizza img,
  .garlic-bread img,
  .alfredo img {
    height: 350px;
    object-fit: cover;
  }

  .description-1,
  .description-2,
  .description-3 {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .order-now,
  .order-now-2,
  .order-now-3 {
    margin-top: auto;
    align-self: center;
  }
}

@media (min-width: 1024px) {
  header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100vw;
  }

  .hamburger {
    display: none;
  }

  .menu-options,
  .menu-options.opened {
    display: flex;
    flex-direction: row;
    gap: 20px;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    list-style: none;
    margin: 0;
    padding: 0;
    width: auto;
    background: none;
    box-shadow: none;
    border-top: none;
    opacity: 1;
    pointer-events: auto;
    overflow: visible;
    transition: none;
  }

  .menu-options li {
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 500;
    color: black;
  }

  .Pizza-Icon {
    position: relative;
  }

  .order-online {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
  }
}
