body {
  font-family: "Georgia", serif;
  margin: 0;
  background-color: #fff8f0;
  color: #4b3832;
}
header {
  text-align: center;
  padding: 2rem;
  background-color: #fdf1e7;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
header h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  color: #5d3a00;
}
header p {
  font-size: 1.3rem;
  color: #7a5c3e;
}
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 2rem auto;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #fffdf8;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel-track img {
  min-width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 1rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 245, 230, 0.8);
  border: none;
  font-size: 2rem;
  color: #5d3a00;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background: rgba(255, 240, 210, 1);
}

.prev-btn {
  left: 1rem;
}

.next-btn {
  right: 1rem;
}

@media (max-width: 600px) {
  .carousel-track img {
    height: 250px;
  }
  .carousel-btn {
    font-size: 1.5rem;
    padding: 0.4rem 0.8rem;
  }
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}
.description,
.amenities,
.reviews,
.map,
.price,
.contact-form {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fffefb;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
}
h2 {
  font-size: 1.75rem;
  color: #5d3a00;
  margin-bottom: 1rem;
}
ul {
  padding-left: 1.2rem;
  color: #5e4632;
}
.map iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 0.75rem;
}
.contact-form .contact-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.85rem;
  font-size: 1rem;
  border: 1px solid #d4c2b0;
  border-radius: 0.5rem;
  background: #fdf8f3;
}
.contact-form button {
  padding: 0.85rem;
  background-color: #b6895b;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-form button:hover {
  background-color: #9f7146;
}
@media (max-width: 900px) {
  .carousel img {
    height: 300px;
  }
}
@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }
  header p {
    font-size: 1rem;
  }
}

a {
  color: black;
}
