.home-wrapper {
  background-color: #030303;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.action-btns .button-link {
  padding: 5px 22px;
  background-color: rgba(0, 0, 0, 0.7);
  border: 2px solid white;
  border-radius: 25px;
  text-decoration: none;
}

.action-btns .button-link:hover {
  cursor: pointer;
  color:  orange;
  border: 2px solid orange;
}

.home-wrapper .hero {
  /* background-image: url("../img/pizza_hero.webp"); */
  background-position: center;
  height: auto;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  flex-direction: column;
}

.home-wrapper .main-btns {
  height: fit-content;
}

.home-wrapper .action-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 50px auto;
}

.home-wrapper .action-btns button {
  padding: 5px 10px;
  border-radius: 10px;
  color: var(--color-grey-0);
  background-color: var(--color-red-100);
  border: 2px solid var(--color-grey-50);
  font-size: 2rem;
  transition: all 0.3s;
}

.home-wrapper .action-btns button:hover {
  transform: scale(1.1);
  cursor: pointer;
}

#highlight-username {
  color: var(--color-orange-400);
}

.menu {
  text-align: center;
}

.menu h1 {
  margin: 10px auto 50px;
  text-align: center;
  text-transform: uppercase;
  color: orange;
  text-shadow: 0 0 5px black;
}

.explore_menu {
  position: relative;
  width: 30%;
  height: auto;
  margin: auto;  
}

.explore_menu h5 {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 100;
  margin-bottom: 10px;
}

.explore_menu h5:hover {
  color: orange;
  text-decoration: none;
}

.menu_logo {
  position: relative;
  width: 100%;
  height: auto;
}

.menu_logo:hover {
  opacity: 0.8;
}

.explore_menu::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(235, 8, 8, 0);
}

.explore_menu:hover::after {
  content: "Explore Our Menu";
  color: white;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.8);
}

.about {
  text-align: center;
  width: 80%;
  margin: 30px auto;
}

.about h1 {
  margin: 30px 0;
}

.about-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.about-text img {
  width: 50%;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-title {
  font-weight: bold; 
  text-decoration: underline;
}

@media screen and (max-width: 769px) {
  .home-wrapper {
    text-align: center;
  }

  .home-wrapper .action-btns {
    display: flex;
    flex-direction: column;
  }

  .home-wrapper .action-btns button {
    font-size: 2.2rem;
    padding: 7px 12px;
  }

  .menu h1 {
    margin: 0 10px 5px;
    font-size: larger;
  }

  .explore_menu {
    width: 50%;
  } 

  .about-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .about-text img {
    width: 100% !important;
  }
}
