@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: rgb(255, 240, 235);
  font-family: "Poppins", sans-serif;
}

.navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px 25px;
  font-size: 0.7em;
  padding: 10px;
  flex-wrap: wrap;
}

.nav-list {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 10px 20px;
  flex-wrap: wrap;
}

.nav-list a {
  text-decoration: none;
  color: black;
}

.nav-list a:active {
  color: rgb(255, 190, 111);
}

.pizza {
  color: red;
  font-size: 16px;
}

.inn {
  color: green;
  font-size: 16px;
}

.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto 10px;
  padding: 5px;
  gap: 20px;
}

.hero-section img {
  max-width: 100%;
  width: 500px;
  height: auto;
}

.hero-section p {
  font-size: 16px;
  font-weight: 400;
}

.deals {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 20px;
}

.deals h2 {
  font-size: 25px;
}

.deals p {
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
}

.one {
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: red;
}

.deals-product {
  justify-content: center;
  margin: 20px auto;
  background-color: bisque;
  border-radius: 20px;
  padding: 15px;
  max-width: 340px;
  width: 100%;
}

.deals-product img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.deals-product p {
  font-size: 21px;
  font-weight: 600;
}

.assurance {
  display: flex;
  flex-direction: column;
}

.assurance-words p {
  margin: 20px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.download-button {
  background-color: bisque;
  border: none;
  border-radius: 20px;
  padding: 20px;
  margin: 0 auto;
}

.assurance a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  font-weight: 700;
}

.assurance a:hover {
  background-color: rgb(255, 190, 111);
  transform: scale(1.03);
  transition: 0.6s;
}

.assurance a:active {
  background-color: rgb(255, 190, 111);
}

.site-footer {
  background-color: black;
  color: white;
  padding: 40px 20px 20px;
  margin-top: 20px;
}

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

.footer-brand p {
  font-size: 14px;
  margin-top: 10px;
  color: rgb(200, 200, 200);
}

.footer-links h3,
.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: rgb(255, 190, 111);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: white;
  font-size: 15px;
}

.footer-links a:hover {
  color: rgb(255, 190, 111);
}

.footer-contact p {
  font-size: 15px;
  margin-bottom: 6px;
  color: rgb(200, 200, 200);
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgb(60, 60, 60);
  color: rgb(150, 150, 150);
}

@media (min-width: 768px) {
  .navbar {
    padding: 10px 20px;
    font-size: 0.85em;
  }

  .hero-section {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }

  .hero-section img {
    width: 350px;
  }

  .hero-section p {
    font-size: 17px;
  }

  .deals-products-prices {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .deals-product {
    width: 45%;
    max-width: 300px;
  }

  .assurance-words p {
    font-size: 17px;
    max-width: 600px;
    margin: 20px auto;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .navbar {
    font-size: 1.03em;
    margin-right: 15px;
  }

  .nav-list a:hover {
    color: rgb(193, 46, 46);
    text-decoration: underline;
    font-weight: 700;
  }

  .nav-list a:active {
    color: rgb(255, 190, 111);
  }

  .pizza,
  .inn {
    font-size: 0.8em;
  }

  .deals-product:hover {
    background-color: rgb(255, 190, 111);
    transition: 0.6s;
    transform: scale(1.03);
  }

  .hero-section {
    flex-direction: row;
  }

  .hero-section p {
    margin: 20px;
    font-size: 20px;
  }

  .hero-section img {
    width: 700px;
  }

  .deals-products-prices {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .deals-product img {
    width: 400px;
    height: 400px;
    object-fit: cover;
  }

  .assurance a {
    font-size: 14px;
  }

  .assurance-words p {
    font-size: 14px;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
  }
}
