@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}
/*Stylings for whole site*/
header {
  box-shadow: 0px 15px 10px -15px #111;
}
a {
  text-decoration: none;
}
.danger {
  background: rgb(244, 208, 208);
  border: 1px solid rgb(246, 51, 51);
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
  padding: 0.5rem;
}
.success {
  background: rgb(213, 244, 208);
  border: 1px solid rgb(38, 172, 47);
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
  padding: 0.5rem;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}
img {
  width: 100%;
}
.container {
  width: 1300px;
  max-width: 95%;
  margin: 0 auto;
}
.spacer {
  padding: 5rem 0;
}
.row {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 0 auto;
}
.col {
  flex: 1 250px;
}
.value {
  font-weight: 900;
  color: rgb(120, 62, 0);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
/*navbar*/
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
}

.navbar .nav-menu {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  list-style: none;
}

.navbar .nav-menu .nav-item a {
  color: rgb(120, 62, 0);
  transition: 0.5s;
  font-size: 1.1rem;
  font-weight: 600;
}

.navbar .nav-menu .nav-item a:hover {
  color: rgb(255, 149, 0);
}

.navbar .nav-menu .nav-item:last-child {
  background: rgb(255, 149, 0);
  padding: 10px 18px;
  border-radius: 0.5rem;
  color: white;
  transition: 0.5s;
}

.navbar .nav-menu .nav-item:last-child:hover {
  background: rgb(120, 62, 0);
}

.navbar .nav-menu .nav-item:last-child a {
  color: white;
}

.navbar .nav-menu .nav-item:last-child a:hover {
  color: rgb(120, 62, 0);
  font-weight: 600;
}
.nav-logo {
  width: 120px;
}
/*hero*/
.hero {
  height: calc(100vh - 140.23px);
  background: radial-gradient(circle, orange, brown);
  /*background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../images/hero.jpg");*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
h1 {
  font-size: 3rem;
  font-weight: 900;
  color: white;
}

.hero-text span {
  color: white;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.primary-button {
  background: rgb(255, 149, 0);
  padding: 1rem 2rem;
  color: white;
  font-size: 1.1rem;
  border-radius: 0.5rem;
  border: 2px solid rgb(255, 149, 0);
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
  transition: 0.5s;
}
.primary-button:hover {
  background: rgb(120, 62, 0);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 0.5rem;
  border: 2px solid rgb(120, 62, 0);
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}
.inverted-button {
  border: 2px solid white;
  background: none;
  padding: 1rem 2rem;
  color: white;
  font-size: 1.1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: 0.5s;
}

.inverted-button:hover {
  border: 2px solid rgb(255, 149, 0);
  background: rgb(255, 149, 0);
  padding: 1rem 2rem;
  color: white;
  font-size: 1.1rem;
  border-radius: 0.5rem;
  font-weight: 600;
}
.central {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}
.hero-content img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 900px;
  max-width: 100%;
}
.hero-content p {
  color: white;
  width: 35%;
  font-weight: 600;
  margin: 1rem 0;
  font-size: 1.1rem;
}
/*food packages*/
.title {
  color: rgb(120, 62, 0);
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 5rem;
}

.title::after {
  content: "";
  background: rgb(255, 149, 0);
  width: 5%;
  height: 4px;
  display: block;
  margin: auto;
}
.wrap {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.wrap-item {
  flex: 1 250px;
  background: rgb(250, 240, 225);
  border-radius: 0.5rem;
}
.wrap-header {
  padding: 0.5rem;
  color: brown;
}
.wrap-header h2 {
  font-size: 1.1rem;
  text-align: center;
  font-weight: 400;
}
.wrap-price {
  text-align: center;
  margin: 0.5rem 0;
  font-size: 1.5rem;
  font-weight: 900;
  color: #333;
}
.wrap-price span {
  margin-right: 0.25rem;
  font-size: 1.5rem;
}
.wrap-image {
  background: url("../images/wrap1.jpg");
  width: 100%;
  height: 100px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.5rem 0.5rem 0 0;
}

.wrap-image2 {
  background: url("../images/wrap2.jpg");
  width: 100%;
  height: 100px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.5rem 0.5rem 0 0;
}

.wrap-image3 {
  background: url("../images/wrap3.jpg");
  width: 100%;
  height: 100px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.5rem 0.5rem 0 0;
}

.wrap-image4 {
  background: url("../images/wrap4.jpg");
  width: 100%;
  height: 100px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.5rem 0.5rem 0 0;
}
.wrap-text {
  padding: 0.5rem;
  text-align: center;
  color: #555;
}
/*tagline*/
.tagline {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../images/tagline.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 300px;
}
.tagline p {
  font-size: 2rem;
  font-weight: 900;
  margin: 0 auto;
  text-align: center;
  color: white;
}
.write {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-shadow: 0 0 10px black;
}
/*marquee*/
.marquee {
  background: radial-gradient(circle, rgb(120, 62, 0), #333);
  color: white;
  padding: 1.5rem;
}
.marquee p {
  font-weight: 600;
}
/*surprise Bag*/
.order {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 1rem;
}
.cat-item {
  background: rgb(255, 149, 0, 0.1);
  border-radius: 0 0.5rem 0.5rem 0;
  box-shadow: 0px 15px 10px -15px #111;
}
.cat-item-header {
  color: white;
  padding: 1rem;
  background: rgb(120, 62, 0);
  font-weight: 600;
  font-size: larger;
}
.cat-item-list {
  padding: 1rem 0 1rem 3rem;
}
.cat-item-image {
  height: 200px;
}
.cat-list-item ul {
  list-style: circle;
  list-style-position: inside;
}
.cat-item-list li {
  margin-bottom: 0.5rem;
}

.cat-item-list li::marker {
  color: rgb(120, 62, 0);
  font-size: 1.5rem;
  line-height: 1.5rem;
}
.sweet {
  background: url("../images/choco.png");
  background-size: cover;
  background-position: center;
}
.jollof {
  background: url("../images/jollof.png");
  background-size: cover;
  background-position: center;
}

.groceries {
  background: url("../images/groceries.jpg");
  background-size: cover;
  background-position: center;
}
/*how it works*/
.how {
  background: #f2f2f2;
}
.how-it-works {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
}
.text-header {
  color: #333;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-align: center;
}
.text-body {
  text-align: center;
}
.icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, orange, rgb(246, 188, 105));
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.icon ion-icon {
  color: white;
  font-size: 2rem;
  font-weight: 900;
}
/*login*/
.login {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.form-group {
  width: 100%;
  height: 2.5rem;
  padding: 1rem;
  margin-bottom: 0.5rem;
}
.login-image {
  width: 150px;
  margin: 0 auto;
}
.login-wrapper {
  border-radius: 0.5rem;
  padding: 2rem;
  max-width: 400px;
  width: 95%;
  background: linear-gradient(white, rgb(238, 216, 174));
  border: 2px solid rgb(248, 225, 192);
}

.login-wrapper h2 {
  color: rgb(120, 62, 0);
  margin-bottom: 1rem;
  text-align: center;
}
.push {
  background: linear-gradient(rgb(120, 62, 0), brown);
  border: none;
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.new-user {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}
.new-user p a {
  color: brown;
  font-weight: 600;
}

.new-user p a:hover {
  color: orange;
  font-weight: 600;
}
/*footer*/
footer {
  background: #583726;
}
.footer-logo {
  width: 75px;
  float: left;
  background: white;
  margin-right: 0.5rem;
}
.footer-col {
  color: white;
  text-align: justify;
  line-height: 1.5;
}
.footer-col h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: rgb(246, 188, 105);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li a {
  color: white;
  font-size: 0.9rem;
  transition: 0.5s;
}

.footer-col ul li a:hover {
  color: rgb(255, 149, 0);
}

.copyright-row {
  margin-top: 2rem;
  color: white;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 1rem;
}
.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/*main*/
.main {
  min-height: calc(100vh - 509.23px);
}
.food1 {
  font-weight: 800;
  color: rgb(120, 62, 0);
}

.food2 {
  font-weight: 800;
  color: rgb(255, 149, 0);
}
/*why*/
.why {
  background: #fff5ee;
}
.why-list {
  width: 90%;
  margin: 0 auto;
}
.why-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  width: 100%;
}
.number {
  color: rgb(120, 62, 0);
  font-size: 1.5rem;
  font-weight: 900;
  padding: 0.5rem;
  width: 10%;
  text-align: right;
}
.words {
  border: 2px solid rgb(255, 149, 0);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.5rem;
  border-radius: 0.25rem;
  background: rgba(255, 149, 0, 0.1);
  width: 90%;
}
/*how to*/
.how-to {
  background: linear-gradient(rgb(246, 218, 167), rgb(246, 230, 202));
  padding: 2rem;
  border-radius: 0.5rem;
}
.col-item-text {
  font-weight: 400;
  font-size: 1rem;
  padding: 1rem;
  background: white;
  margin-bottom: 1rem;
  border-left: 8px solid rgb(120, 62, 0);
}
