* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

body {
  font-family: "Poppins", sans-serif;
  background-color: #e6e6f0;
  margin: 0 20px;
  background: linear-gradient(#362101, #885303);
  background: url(../images/barbcuy-img/back1.png) no-repeat;
  background-size: cover;
  scroll-behavior: smooth;
  background-attachment: fixed;
}
.barb > h2 {
  font-size: 35px;
  font-weight: 900;
  text-align: center;
  padding: 12px;
  margin-bottom: 15px;
  color: #e6e6f0;
}
.barb .cards {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
}
.barb .cards .card {
  width: 21em;
  box-shadow: rgb(255 255 255 / 10%) 0px 1px 1px 0px inset,
    rgb(50 50 93 / 25%) 0px 50px 100px -20px,
    rgb(0 0 0 / 30%) 0px 30px 60px -30px;
  border-radius: 18px;
  margin: 12px 13px;
  padding: 15px;
  background-color: #563401;
  transition: 0.5s ease;
  opacity: 0.9;
}
.barb .cards .card:hover {
  background-color: #bd7202;
  cursor: pointer;
  transform: scale(1.05);
  opacity: 1;
}
.barb .cards .card img {
  border-radius: 50%;
  text-align: center;
  margin-top: 15px;
  height: 300px;
  width: 250px;
  background-size: cover;
  margin-left: 25px;
}
.barb .cards .card .inf h2 {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  margin-top: 15px;
  color: #e6e6f0;
}
.barb .cards .card .inf h3 {
  margin-top: 15px;
  font-size: 25px;
  font-weight: 900;
  text-align: center;
  color: #e6e6f0;
}
.barb .cards .card .inf h3 span {
  font-size: 20px;
  font-weight: 900;
  color: #b3c326;
}
.barb .cards .card .inf .price {
  display: block;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  padding: 10px 12px;
  margin: 12px;
  color: #e6e6f0;
}
.barb .cards .card .inf .price > span {
  font-size: 27px;
  font-weight: 700;
  opacity: 0.7;
  color: #b3c326;
}
.barb .cards .card .btn a {
  display: block;
  font-size: 23px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 12px;
  background-color: #bd7202;
  color: #e6e6f0;
  border-radius: 18px;
  transition: 0.5s ease;
}
.barb .cards .card .btn a:hover {
  opacity: 0.7;
  transform: scale(1.09);
  background-color: #563401;
}
@media screen and (max-width: 700px) {
  .barb > h2 {
    font-size: 25px;
  }
  .barb .cards .card {
    width: 18em;
  }
  .barb .cards .card img {
    width: 150px;
    height: 170px;
    margin-left: 50px;
  }
  .barb .cards .card .inf h2 {
    font-size: 23px;
  }
  .barb .cards .card .inf h3 {
    font-size: 20px;
  }
  .barb .cards .card .inf .price {
    font-size: 18px;
  }
  .barb .cards .card .inf .price > span {
    font-size: 20px;
  }
  .barb .cards .card .btn a {
    font-size: 15px;
  }
}
/* =========================================== */
/* Nav-Bar */
.main-head {
  width: 100%;
}
.main-head .nav-pizaa {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background-color: #121520;
  /* opacity: 0.7; */
  height: 15%;
  border-radius: 0 0 100px 100px;
  transition: 1s ease;
  position: fixed;
  top: -10px;
  left: 0px;
  z-index: 3;
  cursor: pointer;
}
.main-head .nav-pizaa:hover {
  opacity: 1;
  cursor: pointer;
}
.main-head .nav-pizaa .logo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 10px 200px;
}
.main-head .nav-pizaa .nav-link {
  display: flex;
  justify-content: space-between;
}
.main-head .nav-pizaa .nav-link ul {
  display: flex;
  justify-content: space-evenly;
}
.main-head .nav-pizaa .nav-link ul a {
  display: block;
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none;
  color: #e6e6f0;
  margin-left: 12px;
  margin-top: 50px;
  margin-right: 50px;
  transition: 1s ease;
}
.main-head .nav-pizaa .nav-link ul a:hover {
  color: #193aa7;
}
@media screen and (max-width: 700px) {
  .main-head .nav-pizaa {
    border-radius: 0;
    height: 70px;
  }
  .main-head .nav-pizaa .logo img {
    width: 50px;
    height: 50px;
    margin: 20px 20px;
  }
  .main-head .nav-pizaa .nav-link ul a {
    margin-top: 40px;
    margin-right: 7px;
    font-size: 12px;
    margin-left: 10px;
  }
}
