html,
body,
button {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #f5e6cc;
  color: #333;
  font-family: 'Abril Fatface', serif;
  font-weight: 400;
  font-style: normal;
}

img {
  max-width: 100%;
  height: auto;
}

.navbar {
  display: flex;
  align-items: center;
  background-color: #333;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px;
  border-radius: 0 0 10px 10px;
  box-sizing: border-box;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  margin-right: auto;
}

.logo img {
  height: 80px;
  width: 80px;
  border-radius: 10px;
}

.phone {
  color: rgb(244, 105, 6);
  text-decoration: none;
  margin-top: 5px;
}

.nav-links {
  list-style: none;
  display: flex;
  margin-left: auto;
  padding-right: 20px;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 10px;
  border-radius: 10px;
}

.nav-links a:hover {
  background-color: #555;
}

section {
  padding: 20px;
  margin: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
}

.slides {
  display: none;
  width: 100%; /* Added to ensure the slides take full width */
  height: 300px; /* Fixed height for the slideshow */
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #717171;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .nav-links li {
    margin-left: 0;
    margin-top: 10px;
  }

  .logo img {
    height: 60px;
    width: 60px;
  }
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

label {
  margin-top: 10px;
  width: 100%;
  text-align: left;
}

input,
textarea {
  margin-top: 5px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

button {
  margin-top: 20px;
  padding: 10px;
  border: none;
  background-color: #333;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

button:hover {
  background-color: #555;
}

iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 10px;
}

footer {
  padding: 20px;
  text-align: center;
  border-top: 1px solid #ccc;
  margin-top: 20px;
  background-color: #333;
  color: white;
  border-radius: 10px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: transform 0.3s;
}

.social-links img:hover {
  transform: scale(1.1);
}
