html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    padding-bottom: 60px;
}
.navbar {
    background-color: rgb(7, 35, 63) !important;
}


footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
}

.card {
    display: flex;
    flex-direction: column;
    height: auto;
}

.card-body {
    flex: 1;
    overflow: hidden;
}

.card-img {
    height: 100%;
    object-fit: cover;
}
.room-features p {
    font-size: 12px;
}

@media (max-width: 992px) {
    .room-card .card-title {
        font-size: 1.1rem;
    }
    .room-card .card-text {
        font-size: 0.9rem;
    }
    .room-features p {
        font-size: 0.6rem;
    }
    .room-capacity {
        font-size: 0.9rem;
    }
    .price {
        font-size: 0.9rem;
    }
}

@media (min-width: 992px) {
    #reservation-column {
        height: 100%;
    }
    #reservation-card {
        height: 100%;
    }
}

#total-display {
    display: block;
}

#reservation-card .btn-primary {
    width: 200px;
    margin: 0 auto;
    display: block;
}

@media (max-width: 991px) {
    #reservation-column {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1001;
        background-color: #fff;
        overflow-y: auto;
        padding: 20px;
        padding-bottom: 100px;
    }
    #reservation-card {
        height: auto;
        min-height: 100%;
    }
    #reservation-list {
        max-height: calc(100vh - 300px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    #close-reservation-btn {
        z-index: 1002;
    }
    #reservation-card .card-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: white;
        padding: 10px 20px;
        z-index: 1010;
    }
    #total-display {
        position: fixed;
        bottom: 40px;
        left: 0;
        right: 0;
        background-color: white;
        padding: 10px 20px;
        text-align: center;
        font-size: 1.1em;
        z-index: 1009;
    }
    #reservation-card .btn-primary {
        width: 80%;
        max-width: 300px;
        padding: 12px 24px;
        font-size: 1em;
        margin: 0 auto;
        display: block;
    }
}

#floating-reservation-summary {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 20px;
    z-index: 1000;
}

@media (max-width: 992px) {
    #floating-reservation-summary {
        background-color: #181818;
        color: white;
    }
    #floating-reservation-summary button {
        background-color: white;
        color: #6c757d;
        border: none;
    }
    #floating-reservation-summary button:hover {
        background-color: #f8f9fa;
    }
}

.reservation-item {
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.reservation-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.reservation-item .card-title {
    font-size: 1.1rem;
    font-weight: bold;
}

.reservation-item .card-subtitle {
    font-size: 0.9rem;
}

.reservation-item .card-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.reservation-item hr {
    margin: 0.5rem 0;
}

#reservation-card {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    position: sticky;
    top: 10px; /* Adjust as needed */
    z-index: 1000; /* Ensures it stays above other elements if needed */
}

#reservation-card .card-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}


.available-rooms .badge {
    font-size: 0.8rem;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

#reservation-card .btn-primary {
    background-color: #2074bd;
    border-color: #2074bd;
    transition: all 0.3s ease;
}

#reservation-card .btn-primary:hover,
#reservation-card .btn-primary:focus {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

body.reservation-open {
    overflow: hidden;
}
#check-availability-text {
    display: inline-block;
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #1c5fa7;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s;
}

#check-availability-text i {
    margin-left: 8px;
}
.hotel-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.hotel-details {
    flex: 2;
}

.map-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.more-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 24px;
    border-radius: 10px;
}

.more-images span {
    position: absolute;
}

.address-container {
    font-size: 12px;
}

.map-container iframe {
    margin-top: 50px;
    width: 100%;
    height: 250px; /* Adjusted height for desktop */
    border: 0;
    border-radius: 10px;
}

.show-map-btn {
    margin-top: 20px;
    width: 100%;
    background-color: #2074bd;
    color: white;
    border-radius: 5px;
    border: none;
    padding: 8px;
    cursor: pointer;
}

/* Mobile view: Smaller images */
@media (max-width: 768px) {
    .hotel-container {
        flex-direction: column;
    }

    .map-container iframe {
        height: 200px;
        margin-top: -25px;
         order: 1;
    }

    .more-images {
        font-size: 18px;
    }

    .show-map-btn {
        font-size: 14px;
        margin-top: 0px;
        visibility:hidden;
    }
}

/* Full grid layout with 3 columns and 3 rows */
.hotel-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    grid-template-rows: repeat(3, 1fr);    /* 3 equal rows */
    gap: 10px; /* Space between the images */
    grid-template-areas: 
        "image1 image1 image2"
        "image1 image1 image3"
        "image4 image5 image6";
    padding: 10px;
    background-color: #f8f9fa; /* Soft background for contrast */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for appeal */
    max-height: 1800px; /* Limit overall height */
    overflow: hidden; /* Ensure content does not overflow */
}

.image-large {
    grid-area: image1;
    width: 100%;
    height: auto;
    max-height: 300px; /* Limit large image height */
}

.image-small {
    width: 100%;
    height: auto;
    max-height: 150px; /* Limit small image height */
    cursor: pointer;
}

.hotel-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition on hover */
}

.hotel-images img:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

/* Grid area assignments */
.hotel-images .image1 { grid-area: image1; } /* Image1 spans two columns and two rows */
.hotel-images .image2 { grid-area: image2; } /* Image2 on the top right */
.hotel-images .image3 { grid-area: image3; } /* Image3 on the bottom right spanning two rows */
.hotel-images .image4 { grid-area: image4; } /* Image4 on the bottom left */
.hotel-images .image5 { grid-area: image5; } /* Image5 in the middle left */
.hotel-images .image6 { grid-area: image6; } /* Image6 in the middle right */

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
    .hotel-images {
        display: none; /* Hide the grid on mobile */
    }

    #hotelImagesCarousel {
        display: block; /* Show the carousel on mobile */
    }
}

@media (min-width: 768px) {
    #hotelImagesCarousel {
        display: none; /* Hide the carousel on desktop */
    }
}
.ribbon-2 {
    --f: 10px; /* control the folded part */
    --r: 15px; /* control the ribbon shape */
    --t: 10px; /* the top offset */
  
    position: absolute;
    inset: var(--t) calc(-1 * var(--f)) auto auto;
    padding: 0 10px var(--f) calc(10px + var(--r));
    clip-path: 
      polygon(0 0,100% 0,100% calc(100% - var(--f)),calc(100% - var(--f)) 100%,
        calc(100% - var(--f)) calc(100% - var(--f)),0 calc(100% - var(--f)),
        var(--r) calc(50% - var(--f)/2));
    background: #BD1550;
    box-shadow: 0 calc(-1 * var(--f)) 0 inset #0005;
    color: #fff;
    font-size: 14px;
  }
  
  .box {
    max-width: 500px;
    height: 200px;
    margin: 50px auto 0;
    background: lightblue;
    position: relative;
  }

/* Review Section Styling */
.review-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.review-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    background-color: #f9fbfb;
    padding: 15px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.review-card p {
    font-style: italic;
    font-size: 0.8rem;
    margin-top: 20px;
}

.review-card-footer {
    display: flex;
    align-items: center;
    margin-top: 10px;
    font-size: 0.9rem;
}

.review-card-footer img {
    margin-left: 5px;
    width: 20px;
    height: auto;
}

.review-card-footer .guest-country {
    margin-left: 10px;
}

/* For desktop view: Show review section in column layout */
@media (min-width: 768px) {
    .review-section {
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
    }
    
    .review-card {
        width: auto;
        margin-bottom: 20px; /* Adjust the width as per requirement */
    }
}

/* Mobile View Styling */
@media (max-width: 768px) {
    .review-section {
        flex-direction: column;
        gap: 10px;
    }
}
.hotel-score-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    width: 100%;
    max-width: 800px;
}

.score-container {
    display: flex;
    align-items: center;
}

#HotelScoreDesc {
    font-size: 1rem;
    font-weight: bold;
    margin-right: 10px;
    color: #333;
    margin-left: 280px; 
}

.score-box {
    background-color: #0056b3;
    padding: 10px 15px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    display: inline-block;
    margin-left: auto;
}

.hotel-score {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

#reviewCount {
    font-size: 1rem;
    color: #555;
}

@media (max-width: 768px) {
    #HotelScoreDesc {
        font-size: 1.2rem;
        font-weight: bold;
        color: #333;
        text-align: center;
        margin: 0 auto 10px auto; /* Add bottom margin to create a smaller gap */
        width: 100%;
    }
    
    .score-box {
        background-color: #0056b3;
        padding: 8px 12px; /* Slightly reduce padding */
        border-radius: 5px;
        display: inline-block;
        text-align: center;
        margin: 0 auto; /* Center the score box horizontally */
        margin-right: 250px;
    }

    .hotel-score-header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 15px; /* Reduce padding */
        margin: 0 auto;
        box-sizing: border-box;
    }

    .score-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0 auto;
        margin-top: -40px;
    }
}
.calendar {
    position: relative;
    top: 3px;
    width: 550px;
    right:120px;
    background: white;
    border: 1px solid #d1d9e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none; /* Initially hidden */
    z-index: 100;
    
  }
  
  .calendar-title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
  }
  
  .calendar-nav {
    position: absolute;
    top: 20px; /* Align with the title */
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #2074bd;
    transition: color 0.3s ease;
  }
  
  #prev-month {
    left: 10px; /* Position on the left side */
  }
  
  #next-month {
    right: 10px; /* Position on the right side */
  }
  
  .calendar-nav:hover {
    color: #0056b3; /* Darker blue on hover */
  }
  
  .calendar-body {
    display: flex;
    padding: 10px;
  }
  
  .month {
    flex-basis: 50%;
    padding: 10px;
  }
  
  .month-title {
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    font-size: 18px;
    color: #333333;
  }
  
  
  .month {
    flex-basis: 50%;
    padding: 10px;
  }
  
  .month-title {
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    font-size: 18px;
    color: #333333; /* Neutral color */
  }
  
  .days-of-week {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666666; /* Subtle color for days */
  }
  
  .dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px; /* Add spacing between dates */
    margin-top: 5px;
  }
  
  .dates span {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1px;
    border-radius: 50%; /* Circular dates */
    font-size: 14px;
    color: #333333; /* Text color */
    background-color: #f4f6f9; /* Neutral background */
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .dates span:hover {
    background-color: #2074bd; /* Highlight on hover */
    color: white;
  }
  
  .dates .selected {
    background-color: #2074bd;
    color: white;
  }
  
  .calendar-footer {
    display: flex;
    justify-content: space-between;
    padding: 3px;
    border-top: 1px solid #d1d9e0;
    background-color: #f9f9f9;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  
  .calendar-footer button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  #cancel {
    background-color: #e4e4e4;
    color: #333333;
  }
  
  #cancel:hover {
    background-color: #d1d9e0;
  }
  
  #apply {
    background-color: #2074bd;
    color: white;
  }
  
  #apply:hover {
    background-color: #0056b3;
  }
  .disabled {
    color: lightgray; /* Change text color */
    cursor: not-allowed; /* Change cursor style */
}
@media (max-width: 768px) {
  
    .date-range-picker {
      width: 100%; /* Use full width on mobile */
    }
  
    #selected-range {
      font-size: 14px; /* Adjust text size for smaller screens */
      padding: 10px; /* Slightly smaller padding */
    }
  
    .calendar {
      width: auto; /* Full width for small screens */
      padding: 10px; /* Reduce padding */
      right:0px;
    }
  
    .calendar-title {
      font-size: 16px; /* Slightly smaller title font size */
      margin-bottom: 5px; /* Reduce margin */
    }
  
    .calendar-nav {
      font-size: 20px; /* Slightly smaller navigation buttons */
    }
  
    .calendar-body {
      flex-direction: column; /* Stack elements vertically */
      /* align-items: center;*/
      padding: 5px; /* Reduce padding */
    }
  
    .month {
      flex-basis: 100%; /* Full width for each month */
      padding: 5px; /* Reduce padding */
    }
  
    .month:nth-child(2) {
      display: none; /* Hide the second month in mobile view */
    }
  
    .month-title {
      font-size: 16px; /* Adjust font size */
    }
  
    .days-of-week {
      font-size: 12px; /* Smaller font for day labels */
    }
  
    .dates {
      grid-template-columns: repeat(7, 1fr); /* Maintain 7 columns */
      gap: 3px; /* Reduce spacing */
    }
  
    .dates span {
      padding: 8px; /* Reduce padding */
      font-size: 12px; /* Adjust font size */
    }
  
    .calendar-footer {
      flex-direction: column; /* Stack buttons vertically */
      gap: 10px; /* Add spacing between buttons */
      padding: 10px; /* Adjust padding */
    }
  
    .calendar-footer button {
      width: 100%; /* Full width for buttons */
      padding: 10px; /* Adjust padding */
      font-size: 14px; /* Adjust font size */
    }
  }
  
  @media (max-width: 480px) {
    #selected-range {
      font-size: 12px; /* Smaller font for very small screens */
    }
  
    .calendar-nav {
      font-size: 18px; /* Further reduce size */
    }
  
    .dates span {
      padding: 6px; /* Adjust padding for smaller screens */
      font-size: 16px; /* Smaller font for dates */
    }
  
    .calendar-footer button {
      font-size: 12px; /* Smaller font for buttons */
      padding: 8px; /* Adjust padding */
    }
  }
  .whatsapp-button {
    font-size: 50px; /* Adjust size as needed */
    color: #2074bd; /* WhatsApp green color */
    position: fixed;
    bottom: 75px;
    right: 35px;
    z-index: 1000; /* Ensure it's above other elements */
    }

    .whatsapp-button img {
        width: 60px; /* Adjust size as needed */
        height: auto;
        border-radius: 50%; /* Makes it round */
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Optional: adds a shadow */
    }

    /* Media query for screens smaller than 768px */
    @media (max-width: 768px) {
        .whatsapp-button {
            bottom: 80px; /* Adjust position for smaller screens */
            right: 30px; /* Adjust position for smaller screens */
            font-size: 40px; /* Reduce font size for smaller screens */
        }
        
        .whatsapp-button img {
            width: 50px; /* Adjust image size for smaller screens */
        }
    }

  

  


