 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

#logo a {
  color: orange;
  font-size: 32px;
  font-weight: bold;
}

nav ul {
  list-style: none;
}

nav li {
  display: inline-block;
  margin-left: 25px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: orange;
}

header {
  height: 100%;
  width: 100%;
  background-image: url("../Baker/bg_1.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

#layer {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
}

#hcaption {
  width: 50%;
  position: absolute;
  left: 100px;
  top: 40%;
  color: white;
}

#hcaption h1 {
  font-size: 48px;
}

#hcaption .p1 {
  font-size: 16px;
  margin: 20px 0;
}

#bo1 {
  background-color: orange;
  color: white;
  border-radius: 30px;
  padding: 10px 25px;
  font-size: 16px;
  transition: 0.3s;
  text-decoration: none;
}

#bo1:hover {
  background-color: white;
  color: orange;
}

.pro {
  background-color: rgb(250, 238, 224);
  padding: 60px 5%;
  text-align: center;
}

.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.card {
  background-color: white;
  width: 300px;
  border-radius: 10%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  height: 200px;
  border-radius: 10px 10px 0 0;
}

.card .price {
  display: inline-block;
  border: 2px solid rgb(149, 192, 108);
  border-radius: 20px;
  padding: 3px 10px; 
  width: fit-content; 
  margin: 10px auto; 
  font-weight: 500;
}

.team {
  padding: 60px 5%;
  text-align: center;
}

.persons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.persons div {
  background-color: rgb(250, 238, 224);
  width: 200px;
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.3s;
}

.persons div:hover {
  transform: translateY(-8px);
}

.persons img {
  width: 100%;
  border-radius: 10px;
}

footer {
  background-color: rgb(55, 27, 2);
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 40px 5%;
}

footer div {
  flex: 1 1 250px;
  margin: 15px;
}

footer h3 {
  color: orange;
  margin-bottom: 15px;
}

footer p {
  font-size: 15px;
  margin-bottom: 8px;
}

footer .iii i {
  border: 1px solid white;
  border-radius: 50%;
  padding: 8px;
  margin: 5px;
  transition: 0.3s;
}

footer .iii i:hover {
  background-color: orange;
  color: black;
}

footer img {
  border: 1px solid white;
  border-radius: 10px;
  width: 70px;
  height: 70px;
  margin: 5px;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }

  nav ul {
    margin-top: 10px;
  }

  #hcaption {
    width: 90%;
    left: 5%;
    top: 150px;
    text-align: center;
  }

  #hcaption h1 {
    font-size: 36px;
  }

  .products,
  .persons {
    flex-direction: column;
    align-items: center;
  }

  footer {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  footer div {
    width: 100%;
  }
}




