main {
  padding-top: 70px;
  padding-bottom: 40px;
  max-width: 500px;
  margin: auto;
  position: relative;
}



main h1 {
font-size: 40px;
font-weight: lighter;
padding-top: 70px;
text-align: center;
font-style: italic;
}

.slideshow-container {
max-width: 100%;
overflow: hidden;

}

.mySlidesfade img {
  max-height: 500px;
  object-fit: cover; 
}

.mySlidesfade img.landscape {
  height: 500px;
  width: auto;
}

.mySlidesfade img.portrait {
  height: 500px;
  width: auto;
  object-fit: cover;
}

#imageOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

#imageOverlay.show {
  opacity: 1;
  visibility: visible;
}

#overlayImg {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.overlay-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: white;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.231);
  padding: 8px 8px;
  border-radius: 5px;
  user-select: none;
}

.overlay-nav.left {
  left: 10px;
}

.overlay-nav.right {
  right: 10px;
}

.overlay-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 820px) {

.slideshow-container {
  padding: 0;
}
.mySlides fade{
  max-width: 100%;
}
}

.mySlides {
display: block;
}

/* Next & previous buttons */
.prev, .next {
cursor: pointer;
position: absolute;
width: auto;
padding: 16px;
color: rgb(0, 0, 0);
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
}

/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
background-color: rgba(228, 228, 228, 0.8);
}

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

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

@keyframes fade {
from {opacity: .4}
to {opacity: 1}
}

section {
  margin: 20px 0;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
}

h2 {
font-size: 20px;
padding: 10px;
font-weight: 100;

}
p {
padding: 10px;
text-align: justify;
font-size: 15px;
font-weight: lighter;
}

.van-gallery {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.van-gallery img {
  width: 32%;
  border-radius: 10px;
}

.van-description,
.van-amenities {
  padding: 10px;
}

.van-amenities h2 {
margin-bottom: 1rem;

}

.amenities-list {
list-style: none;
padding: 0;
margin: 0;
}

.amenities-list li {
padding-left: 10px;
display: flex;
align-items: flex-start; /* Vertically align icon and text */
gap: 10px; /* Space between icon and text */
margin-bottom: 15px; /* Space between each line */
}

.amenities-list i {
font-size: 15px; /* Adjust icon size */
color: #000; /* Optional: change icon color */
line-height: 1; /* Reset line height to align better with text */
margin-top: 1.5px;
}

.amenities-list span {
font-size: 14px;
line-height: 1.5; /* Improve text readability */
}

.seasonal-prices {
padding: 10px;
}
.seasonal-prices h2 {
font-size: 15px;
margin-bottom: 3px;
}
.seasonal-prices p {
font-size: 12px;
line-height: 0px;
}

.extra-fees {
  padding: 10px;
}

.extra-fees h2 {
  font-size: 15px;
  margin-bottom: 3px;
}

.extra-fees p {
  font-size: 12px;
  line-height: 0px;
}

.prices {
padding: 0;
}

.book-now-bt a{
display: block;
margin: auto;
height: 51px; 
width: 200px; 
background: #000000; 
color: #ffffff; 
  text-align: center;  
  font-size: 20px; 
  line-height: 50px; 
  font-family: Arial, Helvetica, sans-serif; 
  border-radius: 50px; 
  text-decoration: none;
}

.book-now-bt a:hover{
background-color: #ffffff;
color: #000000;
}

.technical-info li {
    font-size: 12px;
    list-style-type: circle;
    margin-bottom: 3px;
}