body {
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #faf3e0;
  color: #3e2723;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Dancing Script", cursive;
  color: #3e2723;
  margin-bottom: 10px;
}

a {
  text-decoration: none;
  color: #3e2723;
  transition: color 0.3s ease;
}

a:hover {
  color: #8d6e63;
}

section {
  padding: 40px 20px;
}

header {
  background-color: #6d4c41;
  color: white;
  padding: 15px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

nav h1 {
  font-size: 2rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: white;
  font-weight: 500;
  font-family: "Lato", sans-serif;
}
nav ul li a:hover,
nav ul li a .active {
  color: #f8bbd0;
}

#hero {
  background: url("../images/alan-scales-1_WMZARl81c-unsplash.jpg") center/cover
    no-repeat;
  text-align: center;
  color: white;
  padding: 100px 20px;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
}

#hero h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

#hero p {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.btn {
  background-color: #f8bbd0;
  color: #3e2723;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  border: none;
  font-family: "lato", sans-serif;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #f48fb1;
  color: white;
}

#gallery-preview .gallery {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
}

#gallery-preview .workshop {
  background: #fffaf3;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 300px;
  padding: 15px;
  transition: transform 0.3s ease;
}

#gallery-preview .workshop:hover {
  transform: scale(1.05);
}

#gallery-preview img {
  width: 100%;
  border-radius: 8px;
}

#booking .workshops {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

#booking .workshop {
  background-color: #fffaf3;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 300px;
  padding: 15px;
}

#booking-form form {
  max-width: 500px;
  margin: 40px auto;
  background: #fffaf3;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

label {
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="date"],
select,
textarea {
  width: 100;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #d7ccc8;
  font-size: 1rem;
  background-color: #fff;
}

button {
  background-color: #6d4c41;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Lato", sans-serif;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #5d4037;
}

#totalPrice {
  font-weight: bold;
  color: #3e2723;
}

#feedback form {
  max-width: 500px;
  margin: 0 auto;
  background-color: #fffaf3;
  padding: 2px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

footer {
  background-color: #6d4c41;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 50px;
}

footer a {
  color: #f8bbd0;
}

footer a:hover {
  color: #f48fb1;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
  }
  #hero {
    padding: 70px 20px;
  }
  #hero h2 {
    font-size: 2.2rem;
  }
}
