.accordion-header .accordion-button {
    font-size: 20px;
    font-weight: bold;
}

.accordion {
    margin-bottom: 20px;  /* Space between accordion items */
  }
  
  .accordion-toggle {
    display: block;  /* Hide the checkbox */
  }
  
  .accordion-header {
    display: flex;
    align-items: center;
    padding: 10px;
   
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  
  
  .accordion-title {
    flex-grow: 1;
  }
  .accordion-item {
    border:none !important;
  }
  .accordion-arrow {
    transition: transform 0.3s ease-in-out;
    margin-left: 10px;
  }
  .accordion-header .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
    margin-left: auto; /* This pushes the arrow to the right */
  }
  
  .accordion-content {
    display: none;  /* Hidden by default */
    padding: 10px;
    
  }
  
  .accordion-toggle:checked + .accordion-header + .accordion-content {
    display: block;  /* Show content when checked */
  }
  
  /* Rotate the arrow when the accordion is open */
  .accordion-toggle:checked + .accordion-header .accordion-arrow {
    transform: rotate(180deg);  /* Rotate the arrow */
  }

  .amenities-wrapper {
    background-color: #fff;
    position: relative;
    display: flex;
    min-height: 260px;
    align-items: flex-start;
    gap: 10px;
    overflow: hidden;
    justify-content: start;
    padding: 63px 10px;
  }
  .amenities-content {
    z-index: 0;
    display: flex;
    min-width: 240px;
    width: 300px;
    padding-right: 16px;
    flex-direction: column;
    color: #000;
    margin: auto 0;
    font: 600 14px/2 Poppins, sans-serif;
  }
  .front-desk-container {
    align-self: start;
    display: flex;
    align-items: start;
    gap: 10px;
  }
  .icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 18px;
  }
  .front-desk-text {
    align-self: stretch;
    flex-basis: auto;
  }
  .wifi-container {
    display: flex;
    gap: 8px;
    white-space: nowrap;
  }
  .wifi-icon {
    aspect-ratio: 1.47;
    object-fit: contain;
    object-position: center;
    width: 22px;
    align-self: start;
    margin-top: 4px;
  }
  .features-grid {
    display: flex;
    margin-top: 23px;
    gap: 38px;
  }
  .features-column {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .parking-container {
    display: flex;
    gap: 10px;
  }
  .parking-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 22px;
  }
  .pool-container {
    align-self: start;
    display: flex;
    margin-top: 21px;
    align-items: start;
    gap: 5px;
    white-space: nowrap;
  }
  .pool-icon {
    aspect-ratio: 1.42;
    object-fit: contain;
    object-position: center;
    width: 27px;
  }
  .pool-hours {
    color: #676666;
    font-size: 13px;
    line-height: 24px;
  }
  .amenities-column {
    display: flex;
    flex-direction: column;
    align-items: start;
    flex: 1;
  }
  .pet-friendly-container {
    display: flex;
    gap: 10px;
  }
  .pet-icon {
    aspect-ratio: 1.12;
    object-fit: contain;
    object-position: center;
    width: 18px;
    align-self: start;
  }
  .fitness-text {
    align-self: end;
    margin-top: 26px;
  }
  .fitness-hours {
    color: #676666;
    font-size: 13px;
    line-height: 24px;
    margin-top: 9px;
  }
 /* Container for all amenities */
.amenities-container {
  max-height: 400px; /* Optional, you can limit the height */
  overflow-y: auto; /* Enable scrolling if content overflows */
}

/* Each individual amenity item */
.amenity {
  display: flex;
  flex-direction: column; /* Stack the whole item vertically */
  align-items: flex-start; /* Align items to the start */
  gap: 5px;
  padding: 10px;
  border-radius: 5px;
}

/* Container for the image and name, keeps them on the same line */
.amenity-info {
  display: flex;
  align-items: center; /* Align image and name horizontally */
  gap: 10px; /* Space between image and name */
}

/* Styling for the amenity image */
.amenity-image {
  width: 50px; /* Fixed width for the image */
  height: 50px; /* Fixed height for the image */
  object-fit: contain; /* Ensure image fits without distortion */
  border-radius: 5px; /* Optional: rounded corners for the image */
}

/* Styling for the amenity name */
.amenity-name {
  font-size: 16px; /* Set font size for the name */
  white-space: nowrap; /* Prevent the name from wrapping */
}

/* Styling for the amenity description */
.amenity-description {
  font-size: 13px; /* Set font size for the description */
  color: #676666; /* Optional: color for description */
  font-weight: 600;
  margin-top: 5px;
  text-align: left; /* Align description to the left */
  line-height: 1.4;
}

.welcome-text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; 
  color: rgba(0, 0, 0, 0.5); 
  font-size: 18px; 
  font-weight: 400; 
  text-align: center; 
  margin-top: 16px;
}

.centered-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 600;  /* Semibold weight */
  font-size: 24px;  /* Reduced font size for mobile */
  text-align: center; 
  margin-bottom: 20px;  /* Add some space below */
}

.onsite-text {
  font-size: 16px;  /* Slightly smaller text on mobile */
  text-align: center;  /* Center-align the text */
  justify-content: center;
  align-items: center;
  width: 100%;  /* Ensure it takes up the full width of its container */
  display: flex;  /* Use flexbox to align the text */
  flex-direction: column;  /* Ensures content is stacked vertically */
  margin-bottom: 20px;  /* Optional: Add some space below */
}

.rectangle-container {
   width: 100%;  /* Full width on mobile */
   max-width: 100%;  /* Max width for responsiveness */
   height: auto;
   border: 1px solid #808080;  /* Border color for the rectangle */
   border-radius: 8px;  
   padding: 10px;
   display: flex;
   flex-direction: column;  
   justify-content: center; 
   margin: 10px 0 0 0;  /* Adjust margin to fit mobile screen */
}

.location-name {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;  /* Adjust text size for mobile */
  color: #3C4043;  
  margin-bottom: 15px;  
  font-weight: 600; 
  text-decoration: underline;
}

.welcome-image {
  width: 100%;  
  max-width: 100%;  /* Responsive to the container size */
  height: auto;
  object-fit: cover;    
}

/* Desktop-Specific Adjustments */
@media (min-width: 768px) {
    .centered-heading {
        font-size: 40px;  /* Larger font size for desktop */
        margin-bottom: 30px;  /* More space below the heading */
    }

    .onsite-text {
        font-size: 20px;  /* Larger text for desktop */
    }

    .location-name {
        font-size: 20px;  /* Larger text for desktop */
    }

    .welcome-image {
        max-width: 355px;  /* Optional: Ensure image width stays within limits */
    }
}

/* Large Desktop / Extra Large screens */
@media (min-width: 1200px) {

    .location-name {
        font-size: 22px;  /* Even larger font size */
    }
}
  
#explorechannelModalSmall .modal-fullscreen .modal-body {
    overflow: unset;
    height: auto;
} 
#explorechannelModalSmall .modal-fullscreen{
    height: auto;
}

#explorehotelModalSmall .modal-fullscreen .modal-body {
    overflow: unset;
    height: 100%;
} 
#explorehotelModalSmall .modal-fullscreen{
    height: 100%;
}

#explorehotelModalSmall .modal-fullscreen .modal-body {
    overflow: unset;
    height: 100%;
} 
#explorehotelModalSmall .modal-fullscreen{
    height: 100%;
}

.hotelinfo .btn-primary {
  font-family: inter;
  height: 54px;
  width: 78%; 
  background-color: #049E9A;
  color: white;
  border: none;
  border-radius: 5px;
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

@media (min-width: 768px) { 
.hotelinfo .btn-primary {
    width: 35%; 
}
}

@media (min-width: 1200px) {
.hotelinfo .btn-primary {
    width: 25%; 
}
}

@media (min-width: 768px) { 
.hotelinfo .btn-primary {
    width: 35%; 
}
}

@media (min-width: 1200px) {
.hotelinfo .btn-primary {
    width: 25%; 
}
}


.hotelinfo{
    text-align: center;
}

.hotelpopup img {
   max-width: 100%;
}

.contact-info {
    font-size: 14px;
}
.extendstay{
    background-color: #049E9A;
    border-radius: 5px;
    border: none;
    padding: 5px 16px;
    letter-spacing: -1px;
    font-family: var(--paragraph-font);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    position: absolute;
    right: 1rem;
    z-index: 110;
    bottom: -3px
}

.extendstay-desktop{
    background-color: #049E9A;
    border-radius: 5px;
    border: none;
    padding: 5px 16px;
    letter-spacing: -1px;
    font-family: var(--paragraph-font);
    color: #ffffff;
    font-size: 35px;
    font-weight: 600;
    position: absolute;
    right: 1rem;
    z-index: 110;
    bottom: -15px
}


.contact-section {
    background-color: #f5f5f5;
    padding: 6px 0;
    display: flex;
    justify-content: center;
    align-items: center; /* Ensure items are aligned vertically */
}


/* Mobile Version (Default) */
.mobile-contact {
    display: block;
    text-align: center;
}

.mobile-contact a {
    color: #049E9A;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 16px;
}

.bellimage {
    margin: 3px 7px 6px 5px;
}

/* Desktop Version (Min-width: 992px) */
.desktop-contact {
    display: none; /* Hide by default */
    text-align: left;
}

.desktop-contact a {
    color: #049E9A;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 25px; /* Larger font for desktop */
}

.bellimage-large {
    margin: 3px 7px 6px 5px;
    width: 25px;
}

/* Media Query for Desktop */
@media (min-width: 992px) {
    .mobile-contact {
        display: none;  /* Hide mobile version on desktop */
    }

    .desktop-contact {
        display: block;  /* Show desktop version on larger screens */
    }
}

.hotelinfo.border-bottom-line {
    padding-bottom: 2rem !important;
}

.diningpopup-text{
  font-family: Playfair Display;
  font-weight: 600;
  font-size: 22px;
  color: #FFFFFF;
  text-align: center;  /* Center-align the text */
  justify-content: center;
  align-items: center;  
  width: 100%; 
  display: flex;
}
.diningpopup-discounttext{
  font-family: Poppins;
  font-weight: bold;
  font-size: 24px;  /* Slightly smaller text on mobile */
  color:#8FEDED;
  text-align: center;  /* Center-align the text */
  justify-content: center;
  align-items: center;
  width: 100%;  /* Ensure it takes up the full width of its container */
  display: flex;  /* Use flexbox to align the text */
  text-transform: uppercase;
  margin: 15px 0 0 0;
}
.diningoffercode-text{
  font-family: Poppins;
  font-weight: 600;
  font-size: 12px;  /* Slightly smaller text on mobile */
  color:#FFFFFF;
  text-align: center;  /* Center-align the text */
  justify-content: center;
  align-items: center;
  width: 100%;  /* Ensure it takes up the full width of its container */
  display: flex;  /* Use flexbox to align the text */
  margin-bottom: 20px; 

}
.diningorderbtn {
  width:auto;
  height: 35px;
  background-color: #049E9A;
  color: white;
  border: none;
  border-radius: 10px;
  letter-spacing: -1px;
  font-family: Poppins;
  font-weight: bold;
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  text-align: center;  /* Center-align the text */
  justify-content: center;
  align-items: center;
  display: block;    /* Make sure the button is treated as a block element */
  margin: 0 auto;
  text-decoration: none;
  text-wrap: nowrap;
}
.popup-bottom-right-image {
  position: absolute;
  right: 0;
  bottom: 0;
}



.fa-window-close {
  font-size:30px; 
  color: #707070;
}
.hotelclose {
  color: #C4C4C4;
}
.modal-close-btn {
  position: absolute;
  top: 0px;
  right: 1px;
  cursor: pointer;
  z-index: 2;
}
.orderbtn {
  width: 249;
  height: 54px;
  background-color: #049E9A;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 13px 25px 13px 22px; 
  letter-spacing: -1px;
  font-family: var(--paragraph-font);
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  text-align: center;  /* Center-align the text */
  justify-content: center;
  align-items: center;
  display: block;    /* Make sure the button is treated as a block element */
  margin: 0 auto;
}
.homepopup-heading{
  font-size: 30px;
}
.homepopup-text {
  font-size: 16px;  /* Slightly smaller text on mobile */
  text-align: center;  /* Center-align the text */
  justify-content: center;
  align-items: center;
  width: 100%;  /* Ensure it takes up the full width of its container */
  display: flex;  /* Use flexbox to align the text */
}
.popup-propertyname{
  font-family: playfair Display;
  font-size: 2opx;
  font-weight: normal;
  text-decoration: underline;
  text-decoration-thickness: 1px;

}
.homepopup-discounttext{
  font-size: 20px;  /* Slightly smaller text on mobile */
  text-align: center;  /* Center-align the text */
  justify-content: center;
  align-items: center;
  width: 100%;  /* Ensure it takes up the full width of its container */
  display: flex;  /* Use flexbox to align the text */
  margin-bottom: 20px; 

}
.popuprectangle-container {
  width: 100%;  /* Full width on mobile */
  max-width: 100%;  /* Max width for responsiveness */
  height: auto;
  border: 2px solid #808080;  /* Border color for the rectangle */
  padding: 20px;
  display: flex;
  flex-direction: column;  
  justify-content: center; 
  margin: 20px 0 0 0;  /* Adjust margin to fit mobile screen */
}
.offercode-text{
  font-family: Poppins;
  font-weight: 600;
  color: #707070;
  margin: 10px 0 0 0;
  font-size: 18px;
  text-align: center;
}
.modal-dialog-centered {
  display: flex;
  justify-content: center; /* Centers the modal horizontally */
  align-items: center; /* Centers the modal vertically */
}

#popupContent {
  position: relative;
  background-image: var(--popup-image-url);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px;
  height: 330px;
  width: 328px;
}

.modal-content.hotelcontent{
  width:80%;
}

.modal-content-onsitedining {
  width: 328px !important;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(48 43 43 / 50%); /* Black overlay with transparency */
  z-index: 1; /* Place it above the background but below the content */
}
.locationpopupbody{
  z-index: 1;
}

.locationorder{
  text-decoration: none !important;
}

.popup-bottom-right-image{
  z-index: 1;
  width:35%;
}

.rectangle-container-homepopup{
  width: 100%;  /* Full width on mobile */
   max-width: 100%;  /* Max width for responsiveness */
   height: auto;
   border: 1px solid #808080;  /* Border color for the rectangle */
   border-radius: 8px;  
   padding: 10px;
   display: flex;
   flex-direction: column;  
   justify-content: center; 
   margin: 10px 0 0 0;  /* Adjust margin to fit mobile screen */
}
.offsitediningpopup-discounttext{
 font-family: Poppins;
 font-size: 16px;  /* Slightly smaller text on mobile */
 text-align: center;  /* Center-align the text */
 justify-content: center;
 align-items: center;
 width: 100%;  /* Ensure it takes up the full width of its container */
 display: flex;  /* Use flexbox to align the text */
 text-transform: uppercase;
}
.offsite-text {
 font-size: 14px;  /* Slightly smaller text on mobile */
 text-align: center;  /* Center-align the text */
 justify-content: center;
 align-items: center;
 width: 100%;  /* Ensure it takes up the full width of its container */
 display: flex;  /* Use flexbox to align the text */
 flex-direction: column;  /* Optional: Add some space below */
}
.offsitediningoffercode-text{
 font-family: Poppins;
 font-weight: 600;
 font-size: 14px;  /* Slightly smaller text on mobile */
 color:#707070;
 text-align: center;  /* Center-align the text */
 justify-content: center;
 align-items: center;
 width: 100%;  /* Ensure it takes up the full width of its container */
 display: flex;  /* Use flexbox to align the text */
 margin-top: 10px; 

}
.hotelcontent{
 width:auto;
}

@media (min-width: 768px) {
  .modal-content.hotelcontent {
    width: 35%;
}
}

@media (min-width: 1200px) {

  .modal-content.hotelcontent {
    width: 20%;
}
} 

/* Remove padding and make it extend full width */
/* Make the background stretch full width but add padding between background and image */
.delicious-deals-background {
  background-color: rgba(101, 192, 192, 0.18);
  padding: 0 15px !important; /* Add padding to the left and right */
  margin-left: 0 !important;  /* Remove any margin on the left */
  margin-right: 0 !important; /* Remove any margin on the right */
  width: 100vw; /* Ensure the background takes the full width */
  left: 50%; /* Center it horizontally */
  right: 50%; /* Center it horizontally */
  transform: translateX(-2.9%); /* Ensure it stays centered */
}

.delicious-deals-background .border-bottom-line {
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

/* Remove padding from the container if any */
.container .delicious-deals-background {
  padding: 30px 15px !important;

}

/* Ensure the image inside the section has the proper padding */
.delicious-deals-background .position-relative {
  padding: 0 15px; /* Add padding between the image and the background */
}









