body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #d3d3d3; /* Light grey background */
  padding: 0px;
}


h2,h3{
  font-size: 24px;
  margin-bottom: 1rem;
  font-family: "Avenir-Next-LT", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
}

p{
  font-size: 16px;
  margin-bottom: 1rem;
  font-family: "Avenir-Next-LT", sans-serif;
  margin: 10px 0;
  line-height: 1.25;
}


.section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: transparent; /* No background color for sections */
  margin: 30px;
  border-radius: 0px;
  overflow: hidden;
}

.section-content, .section-image {
  flex: 1 1 50%;
  padding: 20px;
  box-sizing: border-box;
}

.section-image img {
  width: 100%;
  height: auto;
  border-radius: 0px;
}

.read-more-btn {
  background: #a99c8c;
  color: #fff;
  padding: 10px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Prevent background scroll */
body.modal-open {
  overflow: hidden;
}

.modal-content {
  background-color: #fff;
  position: relative;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  max-width: 900px;
  width: 90%;
  height: 600px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-header {
  width: 100%;
  height: 50%;
  position: relative;
  flex: 1;
}

.modal-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-header .close {
  position: absolute;
  top: 10px;
  left: 16px; /* changed from right to left */
  font-size: 28px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  text-align: center;
  cursor: pointer;
  line-height: 36px;
  z-index: 10000;
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
  height: 50%;
  width: 100%;
  box-sizing: border-box;
}

.modal-body h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #958a76;
}

.modal-body p {
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive Layout for large screens */
@media (min-width: 768px) {
  .modal-content {
    flex-direction: row;
    height: 600px;
  }

  .modal-header,
  .modal-body {
    width: 50%;
    height: 100%;
  }

  .modal-body {
    padding: 24px;
    overflow-y: auto;
  }

  .modal-header img {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .modal-content {
    flex-direction: column;
    height: 90%; /* use more of the screen height */
  }

  .modal-header {
    height: 200px; /* reduce image height on mobile */
  }

  .modal-header img {
    height: 100%;
  }

  .modal-body {
    height: calc(100% - 200px); /* remaining space after image */
    overflow-y: auto;
  }
}


@media (max-width: 767px) {
  .section {
    display: block;
    margin: 16px; /* optionally reduce margin on mobile */
  }
}


/* banner styles */

.slider-container {
  
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 1s ease-in-out;
}

.slider-item {
  min-width: 100%;
  position: relative;
}

.slider-item img {
  width: 100%;
  
  object-fit: fill;
}

.slider-text {
  position: absolute;
  top: 6%;
  left: 12%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-size: 2rem;
  padding: 1rem;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  font-family: Avenir-Next-LT sans-serif;
}

.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 2;
}
.slider-prev { left: 10px; }
.slider-next { right: 10px; }

.slider-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
}
.slider-indicator {
  width: 20px;
  height: 5px;
  background-color: gray;
  border-radius: 1%;
  cursor: pointer;
  display: inline-block;
}
.slider-indicator.active {
  background-color: white;
}

/* @media (max-width: 768px) {
  .slider-text {
      font-size: 1.2rem;
      padding: 1.5rem;
      width: 90%;
      top: 1%;
      left: 24%;
  }
  
} */
@media (max-width: 768px) {
.slider-container {
    max-width: 100%;
}

.slider-track {
    flex-direction: row;
}

.slider-item {
    min-width: 100%;
}

.slider-item img {
    object-fit: cover; /* Better appearance on small screens */
    height: auto;
}

.slider-text {
    font-size: 1rem;
    padding: 0.8rem 1rem;
    width: 90%;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.6); /* Improve text visibility */
}

.slider-prev,
.slider-next {
    font-size: 1.2rem;
    padding: 6px 10px;
}

.slider-indicator {
    width: 14px;
    height: 4px;
}
}




   


   /* Container */
    .booking-container {
        display: flex;
        flex-wrap: wrap;
        background-color: white;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        /* border-radius: 8px; */
        overflow: hidden;
        width: 94%;
        position: relative; /* Enables z-index */
        z-index: 10; /* Ensures it slightly overlaps the banner */
        margin: -5px 40px; /* Adjusts overlap */
        margin-top: -50px;
    }
    
    /* Left Section */
    .booking-header {
        background-color: #ffffff;
        color: rgb(16, 15, 15);
        padding: 15px;
        text-align: center;
       
        font-family: "Avenir-Next-LT", sans-serif;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        /* max-width: 100px; */
        width:100%;
        text-transform: uppercase;
        font-size: 32px;
    }
    
    .booking-header1{
        background-color: #ffffff;
        color: rgb(16, 15, 15);
        padding: 15px;
        text-align: center;
        flex: 0.8; /* Reduced width */
    
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        /* max-width: 100px; */
        width:100%;
        text-transform: uppercase;
        font-size: 32px;
        font-weight: normal;
    }
    
   
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .booking-container {
            
    
            flex-direction: column;
            margin-top: 0;
            align-items: center;
            margin: 0px 0px;
            width: 100%;
            position: relative;
        }
    
        .booking-header {
            width: 100%;
            align-items: center;
            padding: 1px;
        }
    
        .form-row {
            flex-direction: column;
            display: flex
    ;
        align-items: center;
        gap: 0px;
        flex-wrap: wrap;
        }
    
        .form-group {
            width: 100%;
        }
    
        .form-button{
            background-color: #958a76;
        color: white;
        /* padding: 12px 14px; */
        border: none;
        border-radius: 30px;
        font-size: 14px;
        cursor: pointer;
        transition: background 0.3s;
        width: 80%;
        /* max-width: 200px; */
        margin-top: 0px;
        }
    }
    