/* General styling for the reservation section */
.reservationsection {
    background-color: #00000033; /* Light gray background for a clean look */
    padding: 20px 0;
  }

  .reservationsection .btn-book {
    font-weight: 200;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    padding: 15px 40px;
    margin: 0px 10px 0 10px;
    border-radius: 4px;
    transition: 0.3s;
    line-height: 1;
    color: #ffffff;
    background: #2fa39c;
    box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
    
  }
  
  .reservationsection .btn-book:hover {
    color: #ffffff;
    background: #98e2dd;
    font: black;
    border: 2px solid #ffffff;
    box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
  }
  
  
  .our-rooms .box:hover {
    background: #2fa39c;
    padding: 30px 30px 70px 30px;
    box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
  }
  
  .limiter {
    max-width: 1200px; /* Limits form width for better readability */
    margin: 0 auto;
    padding: 0 20px; /* Adds horizontal padding */
  }
  
  /* Flexbox for horizontal layout */
  #reservations {
    display: flex;
    align-items: center; /* Vertically centers items */
  }
  
  /* Styling for each form item */
  .form-item {
    flex: 1; /* Allows items to grow equally */
    margin-right: 10px; /* Space between items */
    position: relative; /* For positioning the calendar icon */
  }
  
  .form-item:last-child {
    margin-right: 0; /* Removes margin from the last item */
  }
  
  .form-item.submit {
    flex: 0 0 auto; /* Prevents the button from stretching */
  }
  
  /* Input and select styling */
  input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc; /* Subtle border */
    border-radius: 4px; /* Rounded corners */
    box-sizing: border-box; /* Includes padding in width */
    font-size: 16px; /* Readable text size */
  }
  
  input[type="text"] {
    padding-right: 30px; /* Space for the calendar icon */
  }
  
  select {
    appearance: none; /* Removes default dropdown arrow for custom styling if desired */
    background-color: white;
  }
  
  /* Calendar icon positioning */
  .icon-calendar {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999; /* Gray icon color */
  }
  
  /* Button styling */
  button {
    padding: 10px 20px;
    background-color: #2fa39c; /* Professional blue */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease; /* Smooth hover effect */
  }
  
  button:hover {
    background-color: #2fa39c; /* Darker blue on hover */
  }
  
  /* Placeholder styling */
  ::placeholder {
    color: #999; /* Light gray for placeholders */
  }
  
  /* Focus states for accessibility and interaction */
  input:focus, select:focus {
    border-color: #2fa39c; /* Matches button color */
    outline: none; /* Removes default outline */
  }
  
  /* Media query for responsiveness on smaller screens */
  @media (max-width: 768px) {
    #reservations {
      flex-direction: column;
    }
    .form-item {
      margin-right: 0;
      margin-bottom: 10px;
    }
    .form-item:last-child {
      margin-bottom: 0;
    }
  }

  
  .custom-modal {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  .custom-modal .modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
  }
  .custom-modal .modal-title {
    font-weight: 600;
    color: #343a40;
  }
  .custom-input {
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 10px;
    transition: border-color 0.3s ease;
  }
  .custom-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  }
  .custom-button {
    border-radius: 8px;
    padding: 10px;
    font-weight: 500;
    background-color: #6AAAAA;
    border-color: #005e5e;
    transition: background-color 0.3s ease;
  }
  .custom-button:hover {
    background-color: #6AAAAA;
    border-color: #005e5e;
  }

  .carousel-item img {
    max-height: 395px;
    object-fit: cover;
  }
  /* .room-item-card__inner {
    align-items: center;
  }
  .room-item-card__text-box {
    padding-left: 20px;
  } */

  .custom-room-modal-content {
    background-color: #c7cccce4;
    border: 2px solid #005e5e;
  }
  
  .custom-room-modal-content .modal-header {
    border-bottom: 1px solid #005e5e;
  }

  .room-item-card__amenities {

    color: #005e5e !important;

}

.room-item-card__padding {
    padding: 10px 0px 10px 0px !important;
}

.room-item-card__padding-rooms {
  padding: 20px;
}

#bookingDetails {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}
#bookingDetails h3 {
  color: #005e5e;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
}
.booking-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.booking-card {
  flex: 1;
  min-width: 250px;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #e9ecef;
}
.booking-card h4 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #005e5e;
  padding-bottom: 5px;
}
.booking-card p {
  margin: 8px 0;
  font-size: 0.95rem;
}
.booking-card strong {
  color: #005e5e;
}
.payment-box {
  background: #e9f7ef;
  padding: 20px;
  border-radius: 10px;
  border: 1px dashed #005e5e;
}
.payment-box h5 {
  color: #005e5e;
  font-size: 1.3rem;
  margin-bottom: 15px;
}
.payment-box p {
  margin: 5px 0;
  font-size: 0.9rem;
}
.btn-get-started {
  background: #005e5e;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  transition: background 0.3s;
}
.btn-get-started:hover {
  background: #004848;
  color: #fff;
  
}

.terms-modal .modal-content {
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  font-family: 'Georgia', serif;
  background-color: #ffffff;
}
.terms-modal .modal-header {
  background-color: #005e5e;
  border-bottom: none;
  padding: 1.5rem;
  display: flex;
  align-items: center;
}
.terms-modal .modal-title {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.5rem;
  margin-left: 1rem;
}
.terms-modal .modal-body {
  padding: 2rem;
  color: #000000;
  line-height: 1.6;
}
.terms-modal h5 {
  color: #005e5e;
  margin-top: 1.5rem;
  font-weight: 600;
}
.terms-modal .cancellation-section {
  background-color: #f0f6f6;
  padding: 1rem;
  border-left: 4px solid #6aaaaa;
  margin: 1rem 0;
}
.terms-modal .btn-close {
  filter: invert(1); /* White close button on dark header */
}
.btn-get-started {
  background-color: #6aaaaa;
  color: #ffffff;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.btn-get-started:hover {
  background-color: #005e5e;
  color: #ffffff;
}
.logo-in-modal {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 2px;
  width: 40px;
  height: auto;
}