:root {
  --primary-color: rgb(207, 106, 38);
  --secondary-color: rgb(228, 167, 55);
  --text-dark: rgb(33, 33, 33);
  --text-light: rgb(255, 255, 255);
  --bg-light: rgb(255, 255, 255);
}

#hero {
  opacity: 1;
  aspect-ratio: 5 / 2;
  background-image: url("../img/hero.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  border: var(--secondary-color) solid 5px;
  border-radius: 10px;
}
* {
  list-style: none;
  text-decoration: none;
}
.orange {
  background-color: var(--secondary-color);
  border-color: var(--primary-color);
  color: var(--text-dark);
  border-radius: 20px;
}
.background-orange {
  background-color: var(--primary-color);
  color: var(--text-light);
}
.recipe-card-img {
  height: 150px;
  width: 100%;
  object-fit: cover;
}
.typeoffs {
  font-size: 18px;
  font-weight: bold;
  color: var(--text-dark);
}
.typeoff h1 {
  font-size: 32px !important;
  font-weight: bold !important;
  color: var(--text-light) !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  padding: 10px 15px !important;
  border-radius: 5px !important;
}

.typeoff p {
  font-size: 15px;
  font-weight: bold;
  color: var(--text-light);
  background-color: rgba(0, 0, 0, 0.5) !important;
  padding: 8px 12px !important;
  border-radius: 5px !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}
.kits-banner {
  background: url("../img/header.jpg") repeat-x center / cover;
  width: 100%;
  height: 600px;
  border-radius: 25px;
}
.scc {
  width: 32.2%;
  height: 400px;
}
.btn-lite {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.btn-items {
  background-color: var(--primary-color);
  color: black;
  padding: 10px 15px;
  border-radius: 5px;
  border: none;
}
.btn-items:hover {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}
@media (max-width: 768px) {
  .categories-list {
    width: 100% !important;
    flex-wrap: wrap;
  }
}
