/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #dbeafe;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  padding: 20px;
  background-color: #3b82f6;
}

.logo {
  max-width: 120px;
  margin-bottom: 10px;
  border-radius: 50%;
  /* Makes the image circular */
}

h1 {
  color: #fbbf24;
}

.about,
.carousel,
.reviews,
.contact {
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
}

h2 {
  color: #3b82f6;
  font-size: 1.8em;
  text-align: center;
}

p {
  font-size: large;
  color: #fbbf24
}

.about p,
.reviews p,
.contact ul {
  color: #555;
}

/* Remove bullets from lists */
.about ul,
.contact ul {
  list-style: none;
  padding-left: 0;
  /* Aligns the text with surrounding elements */
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-slide {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
  /* Ensure width is exactly that of the container */
}

.carousel-slide img {
  flex: 0 0 100%;
  /* Each image takes full container width */
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}


/* Reviews Section */
.reviews {
  background-color: #fef3c7;
  padding: 20px;
  border-radius: 8px;
}

.airbnb-reviews {
  width: 100%;
  height: 400px;
  border: none;
}

.review-card {
  background: #ffffff;
  margin: 10px;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-left: 3px solid #3b82f6;
}

/* Contacts Section */
.contact ul {
  list-style: none;
  padding: 0;
}

.contact li {
  margin: 10px 0;
}

.contact a {
  color: #3b82f6;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* WhatsApp Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  max-width: 80%;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}
