html, body {
    font-family: 'Quattrocento Sans', sans-serif;
    width: 100%;
}
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); /* White with 90% opacity */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensures it covers everything */
}
#loading-screen .content {
    text-align: center;
}
#loading-screen .logo {
    max-width: 250px;
    margin-bottom: 20px;
}
.loader {
    border: 16px solid #f3f3f3; /* Light gray */
    border-top: 16px solid #506D4A; /* Blue */
    border-radius: 50%;
    width: 90px;
    height: 90px;
    animation: spin 2s linear infinite;
    margin: 0px auto;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.navbar {
    background-color:rgb(255, 255, 255);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.navbar.hidden {
    transform: translateY(-100%);
}
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}
.navbar-brand > img {
    width: 150px;
    height: auto;
}
.navbar-nav > button {
    color: #FFEBCD;
} 
.nav-link {
    color: #333333;
    font-weight: 500;
    font-size: 1.1rem;
}
.nav-link:hover {
    color: #506D4A;
    padding-bottom: 6px;
    border-bottom: 2px solid #506D4A;
}
.nav-link-1 {
    color: #333333;
    font-weight: 500;
    font-size: 1.1rem;
}
.nav-link-1:hover {
    color: #4b4b4b;
    transition: 0.5s;
}
.nav-btn {
    background-color: #506D4A;
    color: #FFEBCD;
    border-radius: 0px;
    font-weight: lighter;
    padding: 7px 35px;
}
.nav-btn:hover {
    background-color: #C08E2D;
    color: #FFEBCD;
    border-radius: 0px;
    font-weight: lighter;
}
.profile {
    display: flex;
    justify-content: center;
    align-items: center;
}
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #C08E2D;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s;
    z-index: 99999 !important; /* Moves to the very front */

}
.back-to-top:hover {
    background-color: #A07824;
    transform: scale(1.1);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.heading-one {
    color: #506D4A; font-weight: 500;
    text-align: center;
}
.heading-two {
    color: #FFEBCD; font-weight: 500;
    text-align: center;
}
/* HERO START responsive */
/* Default styles for large screens */
.hero-contents {
    margin-top: 250px;
}

.hero-contents h1 {
    font-size: 7rem;
    font-weight: bold;
    color: #FFEBCD;
}

.hero-contents p {
    font-size: 1.2rem;
    max-width: 1000px;
    margin: 20px auto;
    margin-bottom: 60px;
    color: #FFEBCD;
}

.hero-contents > .btn-book-now {
    background-color: #FFEBCD;
    color: #506D4A;
    border: 2px solid #FFEBCD;
    text-decoration: none;
    padding: 20px 80px; /* Reduced horizontal padding */
    transition: all 1s;
    font-size: 16px; /* Slightly reduced font size */
    font-weight: bold;
    display: inline-block; /* Keeps button inline */
}

.hero-contents > .btn-book-now:hover {
    background-color: #ffebcd00;
    color: #FFEBCD;
    transition: all 1s;
}


/* Pulse Link Styles */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: #C08E2D; /* Gold/Brown */
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    animation: pulse 2.5s infinite;
}

.pulse-link:hover {
    background-color: #506D4A; /* Dark Green */
}

/* Make pulse-link responsive */
@media (max-width: 768px) {
    .pulse-link {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .pulse-link {
        padding: 6px 12px;
        font-size: 0.6rem;
    }
}


/* Medium screens (tablets) */
@media (max-width: 1024px) {
    .hero-section {
        padding: 30px;
    }

    .hero-contents {
        margin-top: auto;
        margin-bottom: auto;
    }

    .hero-contents h1 {
        font-size: 5rem;
    }

    .hero-contents p {
        font-size: 1.1rem;
        max-width: 800px;
        margin-bottom: 40px;
    }

    .hero-contents > .btn-book-now {
        padding: 20px 80px;
        font-size: 15px;
    }
}

/* Small screens (mobile devices) */
@media (max-width: 768px) {
    .hero-section {
        padding: 20px;
    }

    .hero-contents {
        margin-top: auto;
        margin-bottom: auto;
    }

    .hero-contents h1 {
        font-size: 4rem;
    }

    .hero-contents p {
        font-size: 1rem;
        max-width: 600px;
        margin-bottom: 30px;
    }

    .hero-contents > .btn-book-now {
        padding: 20px 80px;
        font-size: 15px;
        width: auto;
        display: inline-block;
        margin: 0 auto; /* Keep centered */
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero-section {
        padding: 10px;
    }

    .hero-contents {
        margin-top: auto;
        margin-bottom: auto;
    }

    .hero-contents h1 {
        font-size: 3rem;
    }

    .hero-contents p {
        font-size: 0.9rem;
        max-width: 400px;
        margin-bottom: 20px;
    }

    .hero-contents > .btn-book-now {
        padding: 15px 70px;
        font-size: 15px;
        width: auto;
        display: inline-block;
        margin: 0 auto; /* Keep centered */
    }
}

/* Pulse Link Styles */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: #C08E2D; /* Gold/Brown */
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    animation: pulse 2.5s infinite;
}

.pulse-link:hover {
    background-color: #506D4A; /* Dark Green */
}

/* Make pulse-link responsive */
@media (max-width: 768px) {
    .pulse-link {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .pulse-link {
        padding: 6px 12px;
        font-size: 0.6rem;
    }
}
/* HERO END responsive */




/* room start responsive */


.rooms-section {
    margin: 50px;
}
.rooms-section .left {
    display: flex;
    justify-content: center;
    align-items: center;
}
.rooms-section .right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
}

.display-img {
    width: 750px;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px;
}


.rooms-section img {
    width: 750px;
    height: 100%;
    padding: 0px;
    transform: scale(1);
    transition: all 2s;
}

.rooms-section img:hover {
    transform: scale(1.1);
    cursor: pointer;
}

/* Medium screens (tablets) */
@media (max-width: 992px) {
    .rooms-section img {
        max-width: 600px;
        margin: 0 15px;
    }
}

/* Small screens (large phones) */
@media (max-width: 768px) {
    .rooms-section img {
        max-width: 100%;
        margin: 0 10px;
    }
}

/* Extra small screens (phones) - make image bigger */
@media (max-width: 480px) {
    .rooms-section img {
        width: 110vw;          /* 110% of viewport width - slightly bigger than screen */
        max-width: none;       /* Remove max-width limit */
        margin: 0 -5vw;        /* Negative margin to center the wider image */
        transform: scale(1.05); /* Slightly scale up */
    }
}

.room-content {
    margin: 50px;
}
.room-content .row {
    margin: 50px 0px;
}
.room-content .description {
    margin: 40px;
}
.room-content h2 {
    color: #506D4A;
    font-size: 3rem;
    font-weight: bold;
}

/* Medium screens (tablets) */
@media (max-width: 992px) {
    .room-content {
        margin: 30px auto;
        padding: 0 15px;
    }
    .room-content .row {
        margin: 30px 0;
        gap: 15px;
    }
    .room-content .description {
        margin: 30px 0;
    }
    .room-content h2 {
        font-size: 2.2rem;
    }
}

/* Small screens (phones) */
@media (max-width: 576px) {
    .room-content {
        margin: 20px auto;
        padding: 0 10px;
    }
    .room-content .row {
        flex-direction: column;
        margin: 20px 0;
        gap: 10px;
    }
    .room-content .description {
        margin: 20px 0;
    }
    .room-content h2 {
        font-size: 1.8rem;
    }
}

/* room end responsive */





.price {
    color: #C08E2D;
    font-size: 2rem;
}

/* SVG START responsive */

.overview table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
    text-align: center;

}
.overview th, td {
    padding: 0px 20px;
    font-weight: bold;
}
.overview th {
    text-align: center; /* Ensure content is centered */
    padding: 8px; /* Add some padding around the content */
}

.overview th svg {
    width: 40px;
    height: auto;
    display: block;
    margin: 0 auto; /* Center horizontally */
}

/* Medium screens (tablets) */
@media (max-width: 768px) {
    .overview th svg {
        width: 30px;
    }
    
}

@media (max-width: 576px) {
    .room-content .row {
    flex-direction: column;
    margin: 50px 0;
    gap: 10px;
    }
    .overview td {
        font-size: 0.75rem; /* Adjust as needed */
        padding: 4px; /* Adjust padding if needed */
    }
}
/* Small screens (phones) */
@media (max-width: 480px) {
    .overview th svg {
        width: 24px;
    }
    .overview td {
        font-size: 0.75rem; /* Adjust as needed */
        padding: 2px; /* Adjust padding if needed */
        line-height: 1.2; /* Adjust line height for better readability */
    }
    .overview th {
        padding: 2px; /* Adjust padding for the header as well */
    }
}

/* SVG END responsive */


.room-buttons {
    margin: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.room-buttons button {
    color: #506D4A;
    border: 2px solid #506D4A;
    background-color: #ffffff00;
    padding: 8px 60px;
    margin-right: 0px;
    
}
.room-buttons button:hover {
    color: #FFEBCD;
    border: 2px solid #506D4A;
    background-color: #506D4A;
    padding: 8px 60px;
    transition: 0.5s;
}

.room-buttons a {
    color: #FFEBCD;
    background-color: #506D4A;
    text-decoration: none;
    padding: 10px 60px;
    transition: all 1s;
}
.room-buttons a:hover {
    color: #FFEBCD;
    background-color: #C08E2D;
    transition: 0.5s;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .room-buttons {
        flex-direction: column;
        gap: 12px;
        margin: 20px 10px;
    }
    .room-buttons button,
    .room-buttons a {
        padding: 12px 30px;
        width: 100%; /* Full width buttons on small screens */
        text-align: center;
        font-size: 0.90rem;
    }
}




/* FOOTER FIRST */

.footer-section {
    margin: 0 auto;
    padding: 20px 0;
    background-color: #ffffff;
    text-align: left;
    border-top: #C08E2D 3px solid;
    border-bottom: #C08E2D 3px solid;
}
.footer-section img {
    width: 300px;
    height: 100%;
    text-align: center;
}
.footer-section h2 {
    color: #506D4A;
    font-family: Phudu;
    font-weight: bolder;
    letter-spacing: 5px;
    font-size: 20px;
}
.footer-section a {
    text-decoration: none;
    color: #000000;
}
.footer-section ul li {
    list-style: none;
}
.footer-section .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px;
}
.footer-section .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-section .logo img {
    max-width: 300px; /* Default size */
    height: auto;
    width: 100%;
}


.footer-section .col-sm-3 {
    flex: 1;
}
.footer-section .col-sm-3 p {
    max-width: 200px;
    word-wrap: break-word;
}
.footer-section .col-sm-3 svg {
    width: 40px;
    height: auto;
}

/* ICON CONTAINER - Force side-by-side alignment */
.location-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap; /* Prevents wrapping */
    gap: 15px; /* Space between icons */
    margin-bottom: 15px;
}

.location-icons svg {
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 50%;
    border: 2px solid #506D4A; /* Circular border */
    fill: #506D4A;
    display: inline-block; /* Ensures inline layout */
}

/* SOCIAL ICONS - Force side-by-side alignment */
.social-media-icons {
    display: flex ;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap; /* Prevents wrapping */
    gap: 15px; /* Space between icons */
    margin-top: 10px;
}

.social-media-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #506D4A; /* Circular border */
    text-decoration: none;
}

.social-media-icons a svg {
    width: 25px;
    height: 25px;
    fill: #506D4A;
    display: inline-block; /* Ensures inline layout */
}



.useful-links h2 {
    color: #506D4A;
    font-family: Phudu;
    font-weight: bolder;
    letter-spacing: 5px;
    font-size: 20px;
}

.useful-links ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-top: 10px;
}

.useful-links ul li {
    list-style: none;
    width: 50%; /* Splits into two columns */
    padding-bottom: 5px;
}

.useful-links ul li a {
    text-decoration: none;
    color: #000;
}

.useful-links a {
    text-decoration: none;
    position: relative;
    color: #000; /* Adjust the color if needed */
    display: inline-block;
    transition: color 0.5s ease, transform 0.5s ease;
  }
  
  .useful-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px; /* Adjust thickness here */
    bottom: 0;
    left: 0;
    background-color: #333333; /* Adjust the underline color */
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
  }
  
  .useful-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  .useful-links a:hover {
    color: #506D4A; /* Optional: Change text color on hover */
    transform: scale(1.05); /* Adds a slight zoom effect */
  }



/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .footer-section .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px; /* Adds spacing between sections */
    }

    .footer-section .col-sm-3 {
        width: 100%;
        max-width: 400px;
        padding: 10px 0;
    }

    .footer-section h2 {
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .footer-section .col-sm-3 p,
    .footer-section .col-sm-3 a {
        word-wrap: break-word;
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-section .social-medias {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .footer-section .useful-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-section .useful-links ul li {
        width: auto;
    }

    .location-icons, .social-media-icons {
        flex-wrap: wrap; /* Allow wrapping on small screens */
    }
    .location-icons, .social-media-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px; /* Adjust spacing */
        flex-wrap: wrap; /* Allow wrapping if necessary */
      }
    
      .location-icons svg, .social-media-icons a img {
        width: 40px; /* Smaller size for small screens */
        height: 40px;
      }
    
}

@media screen and (max-width: 1024px) {
    footer {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    
    .location-icons, .social-media-icons {
      justify-content: center;
    }
  
    .useful-links {
      margin-top: 20px;
    }
  }
  
/* Adjust for larger screens */
@media (min-width: 1200px) {
    .footer-section .logo img {
        max-width: 280px; 
    }
}

/* Adjust for medium screens */
@media (max-width: 992px) {
    .footer-section .logo img {
        max-width: 260px;
    }
}

/* Bigger for tablets */
@media (max-width: 768px) {
    .footer-section .logo img {
        max-width: 320px; 
    }
}

/* Bigger for mobile */
@media (max-width: 480px) {
    .footer-section .logo img {
        max-width: 300px; 
    }
}

/* FOOTER LAST */





/* CONTACT START END*/


/* Base Styles (for larger screens) */
.contact-us-section {
    max-width: 1200px; /* Set a maximum width */
    margin: 50px auto;
    padding: 20px;
}

.contact-us-section .center-container {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align items at the top */
    gap: 20px; /* Space between left and right spans */
}

.contact-us-section .left-span {
    flex: 1; /* Take available space */
    text-align: left;
}

.contact-us-section .left-span div {
    margin-bottom: 40px;
}

.contact-us-section .right-span {
    flex: 1; /* Take available space */
    background-color: #FFEBCD;
    border: 3px solid #C08E2D;
    padding: 20px;
}

.contact-us-section .right-span h2 {
    color: #506D4A;
    margin: 25px auto;
    text-align: center;
}

.contact-us-section .right-span iframe {
    border: 3px solid #506D4A;
    width: 100%; /* Make iframe responsive */
    height: 400px; /* Set a default height */
}

.contact-us-section svg {
    width: 40px;
    height: auto;
}

/* Media Query for Tablets and Smaller Screens */
@media (max-width: 768px) {
    .contact-us-section {
        margin: 30px auto;
        padding: 10px;
    }

    .contact-us-section .center-container {
        flex-direction: column; /* Stack left and right spans */
        align-items: center; /* Center items horizontally */
    }

    .contact-us-section .left-span,
    .contact-us-section .right-span {
        width: 100%; /* Take full width */
        margin-bottom: 20px; /* Add spacing */
    }

    .contact-us-section .left-span div {
        margin-bottom: 20px; /* Reduce margin */
    }

    .contact-us-section .right-span h2 {
        font-size: 1.3rem; /* Smaller heading */
        margin: 15px auto;
    }

    .contact-us-section .right-span iframe {
        height: 300px; /* Reduce iframe height */
    }
}

/* Media Query for Extra Small Screens (Phones) */
@media (max-width: 480px) {
    .contact-us-section {
        margin: 20px auto;
        padding: 5px;
    }

    .contact-us-section svg {
        width: 30px; /* Smaller SVG */
    }

    .contact-us-section .right-span h2 {
        font-size: 1.1rem; /* Even smaller heading */
    }

    .contact-us-section .right-span iframe {
        height: 200px; /* Even smaller iframe height */
    }
}


/* CONTACT US END*/


.experiences-section h2 {
    color: #506D4A;
}
.activities {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.activities-details {
    width: 45%;
    text-align: left;
}
.activities-details img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border: 3px solid #C08E2D;
}
.copyright-section {
    background-color: #506D4A;
    text-align: center;
    color: #f8f9fa;
}
.copyright-section p {
    margin: 0px;
    padding: 5px;
}

::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background-color: #506D4A;
}
.room-modal {
    max-width: 750px;
}
.modal-content {
    border: 2px #C08E2D solid;
    border-radius: 5px;
    color: #506D4A;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
.modal-title {
    font-size: 1.5rem;
    align-self: flex-end;
}
.modal-logo {
    width: 120px;
    height: auto;
    align-self: center;
}
.modal-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 20px;
}
.modal-body button {
    background-color: #506D4A;
    color: #FFEBCD;
}
.d-flex {
    justify-content: flex-end;
    align-items: flex-end;
}
button.btn {
    align-self: auto;
}
.modal-content .slideshow-images {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
    border-bottom: 3px solid #C08E2D;
}
.modal-content .slide {
    width: auto;
    height: auto;
    display: none;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: scale(1.05);
    max-width: 750px;
}
.modal-content .slide.active {
    display: block;
    opacity: 1;
    transform: scale(1);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
.modal-content .prev, .modal-content .next {
    position: absolute;
    top: 50%;
    font-size: 24px;
    color: white;
    padding: 16px;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    z-index: 1;
    transform: translateY(-50%);
}
.modal-content .prev {
    left: 0;
    text-decoration: none;
}
.modal-content .next {
    right: 0;
    text-decoration: none;
}
.modal-content .prev:hover, .modal-content .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.room-name-price {
    display: flex;
    justify-content: space-between;
    
}
.room-name-price h2 {
    color: #506D4A;
    font-weight: 500;
    font-size: 3rem;
}
.room-name-price span {
    color: #C08E2D;
    font-size: 2rem;
}
.room-overview {
    margin: 20px 0px;
    text-align: center;
}
.room-overview svg {
    width: 30px;
    height: auto;
}
.room-overview table {
    color: #000000;
    text-align: center;
}
.room-detail {
    width: 70%;
}
.room-detail h3 {
    font-weight: bold;
}
.room-detail p {
    color: #000000;
}
.room-detail li {
    color: #000000;
}
.room-row {
    display: flex;
    justify-content: space-between;
    width: 70%;
}
.room-row h3 {
    font-weight: bold;
}
.room-row li {
    color: #000000;
}
.two-columns {
    display: flex;
    flex-wrap: wrap;
}
.two-columns li {
    width: 50%;
    color: #000000;
}
.virtual-tour-section {
    margin: 50px auto;
}
.virtual-tour-section h2 {
    color: #506D4A;
    font-weight: bold;
    text-align: center;
    margin: 50px auto;
}
.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #C08E2D;
    border-radius: 5px;
}
.packages-section {
    margin: 100px 300px;
}
.experiences-section {
    margin: 100px 300px;
}
.experiences {
    background-color: #FFEBCD;
    margin: auto;
    border: 3px solid #C08E2D;
}
.experiences img {
    max-width: 100%;
    height: auto;
    display: block;
    transform: scale(1.15);
    border: 3px solid #C08E2D;
}
.experiences h2 {
    color: #506D4A;
    font-weight: bold;
}
.experiences p {
    color: #000000;
    font-size: 20px;
    width: 70%;
}
.experiences button {
    background-color: #FFFFFF;
    color: #506D4A;
    border: 2px solid #506D4A;
    padding: 10px 50px;
    transition: all 0.5s;
}
.experiences button:hover {
    background-color: #506D4A;
    color: #FFEBCD;
    border: 2px solid #506D4A;
    padding: 10px 50px;
    transition: all 0.5s;
}
.experiences-section .left {
    display: flex;
    justify-content: center;
    align-items: center;
}
.experiences-section .right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
}
.experiences-description {
    padding-left: 100px;
}
.activities-details img {
    width: 100%;
    height: auto;
}
.about-us-section {
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-us-content {
    margin: 80px auto;
}
.about-us-content h1 {
    color: #506D4A;
    font-size: 50px;
    text-align: center;
}
.about-us-content p {
    font-size: 16px;
    text-align: center;
}
.about-us-logo {
    width: 100%;
    height: auto;
    max-width: 500px;
    text-align: center;
    display: block;
    margin: 20px auto;
}
.about-us-images {
    margin: 50px auto;
}
.about-us-images img {
    border: 3px solid #C08E2D;
    padding: 0px;
    margin: 10px;
}
.terms-and-conditions-section {
    margin: 100px auto;
}
.tac-content {
    margin: 50px auto;
}
.tac-content h1 {
    color: #506D4A;
    margin: 20px auto;
}
.profile-section {
    margin: 200px 0px 100px 0px;
}
.profile-content {
    margin: 0px;
}
.profile-nav {
    margin: 50px;
}
.profile-nav a {
    text-decoration: none;
    color: #506D4A;
    font-weight: bold;
    font-size: 30px;
    margin: 10px;
}
.profile-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0px;
}
.profile-right {
    border-left: 2px solid #C08E2D;
    height: 50vh;
    padding: 0px;
}
.profile-right table {
    margin: 50px;
}
.profile-right label {
    color: #506D4A;
}
.profile-right p {
    margin: 10px auto;
}
.profile-right table tr td {
    padding: 20px;
}
.profile-name {
    font-weight: bold;
    font-size: 30px;
    margin: 10px auto;
}
.profile-left button {
    color: #FFEBCD;
    background-color: #506D4A;
    border-radius: 5px;
    border: none;
    padding: 5px 50px;
    transition: all 0.5s;
}
.profile-left button:hover {
    color: #FFEBCD;
    background-color: #C08E2D;
    border-radius: 5px;
    border: none;
    padding: 5px 50px;
    transition: all 0.5s;
}
.response-modal {
    display: none;  /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);  /* Black with opacity */
    padding-top: 100px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
/* Modal content box */
.response-modal-content {
    background-color: #fff;
    margin: 300px auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 8px;
}
/* Close button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
/* Success message styling */
.success-message {
    font-size: 18px;
    font-weight: bold;
    color: green;
    text-align: center;
    margin: 10px 0;
}
/* Show the modal when status is success */
.response-modal.show {
    display: block;
    opacity: 1;
}
.pass-message {
    color: #a71010;
}
#btn-save {
    color: #FFEBCD;
    background-color: #506D4A;
    border-radius: 10px;
    border: none;
    padding: 5px 20px;
}
#btn-cancel {
    color: #506D4A;
    background-color: #FFEBCD;
    border-radius: 10px;
    border: none;
    padding: 5px 20px;
}
#btn > td {
    padding: 0px;
}
.btn-rebook {
    color: #FFFFFF;
    background-color: #506D4A;
    border-radius: 5px;
    border: none;
    padding: 5px 20px;
}
.btn-rebook:hover {
    color: #FFFFFF;
    background-color: #374b33;
}
.btn-cancel {
    color: #FFFFFF;
    background-color: #A71010;
    border-radius: 5px;
    border: none;
    padding: 5px 20px;
}
.btn-cancel:hover {
    color: #FFFFFF;
    background-color: #720b0b;
}
.btn-save {
    color: #FFEBCD;
    background-color: #506D4A;
    border-radius: 5px;
    border: none;
    padding: 5px 30px;
    transition: all 0.5s;
}
.profile-picture-modal {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Base Styles for Large Screens */
.page-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #506D4A;
    padding: 10px 50px;
    min-height: 175px;
    width: 100%;
}
/* PAGE NAV START */
/* Default Style for Navigation Items */
.nav-content {
    text-align: center;
    color: #FFEBCD;
    padding: 15px 20px;
    font-size: 16px; /* Default font size */
    font-weight: bold;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;

    max-width: 250px;
    white-space: nowrap;
}
/* Divider Between Items */
.nav-divider {
   height: 2px;
   background-color: #FFEBCD;
   width: 12%;
}
/* Responsive Adjustments */
@media (max-width: 1024px) {
    .nav-content {
        font-size: 14px; /* Slightly smaller */
    }
}
/* Fix for Small Screens */
@media (max-width: 768px) {
    .page-navigation {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 5px;
        min-height: auto;
    }
    .nav-content {
        width: 140px; /* fixed width */
        height: 60px; /* fixed height */
        font-size: 10px;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        white-space: normal;
        box-sizing: border-box;
    }
    .nav-divider {
        width: 80%;
        margin-top: 5px;
        margin-bottom: 5px;
    }
}
/* Extra Small Screens */
@media (max-width: 490px) {
    .page-navigation {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 5px;
        min-height: auto;
    }
    .nav-content {
        width: 140px; /* Set a consistent width */
        height: 60px; /* Set a consistent height */
        font-size: 10px;
        padding: 8px;
        display: flex; /* Center content */
        align-items: center;
        justify-content: center;
        text-align: center;
        white-space: normal;
        box-sizing: border-box; /* Include padding in the size */
    }
    .nav-divider {
        width: 80%;
        margin-top: 5px;
        margin-bottom: 5px;
    }
}
/* Extra Small Screens (Below ~420px) */
@media (max-width: 368px) {
    .page-navigation {
        flex-direction: column; 
        align-items: center; 
        gap: 8px; 
        padding-left: 3px;
        padding-right : 3px;
    }
}
/* PAGE NAV END */
/* CALENDAR START */
.calendar-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.upper-calendar-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin: 20px auto;
    max-width: 1250px; /* Limits width for better structure */
}
.date-and-promo {
    display: flex;
    gap: 20px; /* Even spacing between fields */
    flex-wrap: wrap; /* Ensures responsiveness */
}
.date-and-promo div {
    display: flex;
    flex-direction: column;
}
.date-and-promo label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #506D4A;
}
.date-and-promo input {
    padding: 8px;
    border: 2px solid #C08E2D;
    border-radius: 5px;
    background: #FFEBCD;
    font-size: 16px;
    transition: border-color 0.3s ease;
}
.date-and-promo input:focus {
    border-color: #506D4A; /* Dark Green */
    outline: none;
}
.number-of-nights {
    text-align: right;
    font-size: 18px;
    font-weight: bold;
    color: #506D4A;
}
.calendar-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.calendar {
    width: 600px;
    border: 3px solid #C08E2D;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: #FFEBCD;
    padding: 0px;
}
.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #506D4A;
    padding: 10px 15px;
}
.month-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: #FFEBCD;
    flex-grow: 1;
}
.days-header, .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    width: 100%;
}
.day-name {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
}
.day {
    aspect-ratio: 1 / 1; /* Ensures a square shape */
    font-size: 18px;
    text-align: right; /* Aligns text to the right */
    transition: background 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: flex-start; /* Aligns content to the top */
    justify-content: flex-end; /* Aligns content to the right */
    padding: 5px 10px; /* Adds space from the edges */
    position: relative;
}
.days-header .day {
    font-weight: bold;
    background-color: #506D4A; /* Dark Green */
    color: #FFEBCD;
    padding: 2px 10px;
}
.days .day {
    background-color: #FFEBCD;
    cursor: pointer;
    font-size: 18px;
    border: 1px solid #C08E2D; /* Gold/Brown Border */
    color: #506D4A;
    width: 100%;
    gap: 0px;
}
.days .day:hover {
    background-color: #C08E2D; /* Gold/Brown Hover */
    color: white;
}
.today {
    background-color: #C08E2D !important; /* Gold/Brown for Today */
    font-weight: bold;
    color: white !important;
    border: 2px solid #506D4A;
}
/* Tablets (768px and below) */
@media (max-width: 768px) {
    .calendar-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .calendar {
        width: 90%; /* Makes calendar responsive */
    }
    .upper-calendar-details {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }
    .date-and-promo {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .date-and-promo div {
        width: 100%;
    }
    .number-of-nights {
        text-align: center;
        margin-top: 10px;
    }
    .month-title {
        font-size: 24px;
    }
    .day {
        font-size: 16px;
        padding: 5px;
    }
}
/* Mobile (480px and below) */
@media (max-width: 480px) {
    .calendar {
        width: 100%;
    }
    .month-title {
        font-size: 20px;
    }
    .calendar-header {
        flex-direction: row; /* 🔁 Keep it horizontal */
        justify-content: space-between; /* 📏 Spread buttons and title */
        align-items: center;
        gap: 10px;
    }
    .day {
        font-size: 14px;
        padding: 4px;
    }
    .date-and-promo label {
        font-size: 14px;
    }
    .date-and-promo input {
        font-size: 14px;
        padding: 6px;
    }
    .number-of-nights {
        font-size: 16px;
    }
}
/* Base styles remain the same */
/* Responsive styles for screens 360px and below */
@media (max-width: 360px) {
    .calendar-container {
        flex-direction: column; /* Stack calendars vertically */
        gap: 20px;
        align-items: center; /* Center calendars */
    }
    .calendar {
        width: 100%; /* Use full width of the screen */
        max-width: 340px; /* Add a max-width to avoid overflow */
        padding: 0;
    }
    .calendar-header {
        padding: 8px 10px; /* Reduce padding for better fit */
    }
    .month-title {
        font-size: 20px; /* Adjust font size for smaller screens */
    }
    .days-header, .days {
        grid-template-columns: repeat(7, 1fr); /* Keep the grid layout */
    }
    .day {
        font-size: 14px; /* Reduce font size for smaller screens */
        padding: 3px 5px; /* Adjust padding for better spacing */
    }
    .days-header .day {
        font-size: 14px;
        padding: 2px 5px;
    }
    .date-and-promo {
        flex-direction: column; /* Stack fields vertically */
        gap: 10px; /* Reduce spacing between fields */
    }
    .date-and-promo div {
        width: 100%; /* Ensure inputs take full width */
    }
    .date-and-promo input {
        font-size: 14px; /* Adjust input font size */
        padding: 6px; /* Adjust padding for smaller inputs */
    }
    .number-of-nights {
        text-align: center; /* Center-align text for better appearance */
        font-size: 16px; /* Adjust font size */
    }
}
/* Responsive styles for screens 280px and below */
@media (max-width: 280px) {
    .calendar-container {
        flex-direction: column; /* Stack calendars vertically */
        gap: 15px; /* Reduce gap between calendars */
        align-items: center; /* Center-align calendars */
    }
    .calendar {
        width: 100%; /* Use full width of the screen */
        max-width: 260px; /* Add a max-width to avoid overflow */
        padding: 0;
    }
    .calendar-header {
        padding: 6px 8px; /* Reduce padding for better fit */
    }
    .month-title {
        font-size: 18px; /* Adjust font size for smaller screens */
    }
    .days-header, .days {
        grid-template-columns: repeat(7, 1fr); /* Keep the grid layout */
    }
    .day {
        font-size: 12px; /* Further reduce font size for smaller screens */
        padding: 2px 4px; /* Adjust padding for better spacing */
    }
    .days-header .day {
        font-size: 12px;
        padding: 2px 4px;
    }
    .date-and-promo {
        flex-direction: column; /* Stack fields vertically */
        gap: 8px; /* Reduce spacing between fields */
    }
    .date-and-promo div {
        width: 100%; /* Ensure inputs take full width */
    }
    .date-and-promo input {
        font-size: 12px; /* Adjust input font size */
        padding: 4px; /* Adjust padding for smaller inputs */
    }
    .number-of-nights {
        text-align: center; /* Center-align text for better appearance */
        font-size: 14px; /* Adjust font size */
    }
}
/* CALENDAR END */
.empty {
    background: none;
}
.prev-btn {
    padding: 5px 10px;
    border: none;
    background-color: #C08E2D;
    color: #FFFFFF;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}
.prev-btn:hover {
    background-color: #A37522;
    color: #FFFFFF;
}
.next-btn {
    padding: 5px 10px;
    border: none;
    background-color: #C08E2D;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}
.next-btn:hover {
    background-color: #A37522;
    color: #FFFFFF;
}
button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
.checkin-notice {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin: 20px auto;
    max-width: 1250px;
    background-color: #506D4A;
}
.checkin-notice label {
    color: #FFEBCD;
    font-size: 20px;
}
.checkin-notice p {
    color: #FFEBCD;
    font-size: 12px;
}
/* LEGEND START */
/* 🌟 Default Styling for Large Screens (≥769px) */
.legend-and-continue {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px auto;
    max-width: 1250px;
    border-bottom: 1px solid #C08E2D;
}
/* Legend Styling */
.legend-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.legend-box {
    width: 100%;
    max-width: 50px;
    height: 50px;
    min-width: 25px;
    min-height: 25px;
    display: inline-block;
    flex-shrink: 0; /* Prevent shrinking in flex */
}
.legend-title {
    font-size: 20px;
    font-weight: bold;
    color: #506D4A;
    margin-bottom: 10px;
}
.legend {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 150px;
}
.legend-item p {
    margin: 0;
    font-size: 16px;
    color: #506D4A;
}
/* Legend Boxes */
.legend-box {
    width: 50px;  /* Default for large screens */
    height: 50px;
    display: inline-block;
}
.not-available {
    background-color: #C08E2D;
}
.available {
    background-color: #FFEBCD;
}
.check-in-out, .period-of-stay {
    background-color: #506D4A;
}
/* Continue Button */
.continue {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px auto;
    max-width: 1250px;
}
.continue-button {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
    width: 100%;
}
.continue-button button {
    text-decoration: none;
    background-color: #506D4A;
    color: #FFEBCD;
    padding: 10px 50px;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    transition: background 0.3s ease;
}
.continue-button button:hover {
    background-color: #C08E2D;
    color: #FFEBCD;
}
/* 💻 Extra Large Screens (≥1200px) */
@media (min-width: 1200px) {
    .legend-and-continue {
        max-width: 1250px;
        padding: 15px; /* Add consistent padding on large screens */
    }
    .legend {
        grid-template-columns: repeat(2, 1fr); /* 2 columns layout */
        gap: 15px 40px;
    }
    .legend-box {
        width: 50px;
        height: 50px;
    }
    .continue-button button {
        font-size: 18px;
        padding: 12px 60px;
    }
}
/* 📌 Medium Screens (481px - 768px) */
@media (max-width: 768px) {
    .legend-and-continue {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px;
        width: calc(100% - 40px);
        max-width: 600px;
        padding: 0 40px;
        
    }
    .legend-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }
    .legend {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: left;
        padding: 0 20px;
        width: calc(100% - 40px);
    }
    .legend-item {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        justify-content: flex-start;
    }
    /* Medium-sized legend boxes */
    .legend-box {
        width: 40px;
        height: 40px;
    }
    .continue-button {
        display: flex;
        justify-content: center;
        width: calc(100% - 40px); /* Ensure spacing from screen edges */
    }
    .continue-button button {
        max-width: 250px;
    }
}
@media (max-width: 480px) {
    .legend-item p {
      font-size: 12px;
    }
    .legend-box {
      width: 25px;
      height: 25px;
    }
    .continue-button button {
      font-size: 12px;
      padding: 6px 20px;
    }
    .calendar-header {
      height: 50px;
      font-size: 14px;
    }
    .calendar-body {
      min-height: 250px;
      grid-template-rows: repeat(6, 1fr);
    }
  }
/* LEGEND END */
.not-available {
    background-color: #C08E2D;
}
.available {
    background-color: #FFEBCD;
}
.check-in-out {
    background-color: #506D4A;
}
.period-of-stay {
    background-color: #506D4A;
}
.continue-button button {
    text-decoration: none;
    background-color: #506D4A;
    color: #FFEBCD;
    padding: 10px 50px;
    border-radius: 5px;
    font-size: 16px;
    display: inline-block;
    text-align: center;
    transition: background 0.3s ease;
}
.continue-button button:hover {
    background-color: #C08E2D;
    color: #FFEBCD;
}
.nav-display-flex {
    display: flex;
    justify-content: space-between;
}
/* ENQUIRY MODAL START */
.inquiry-modal-body {
    display: flex;
    flex-direction: column; /* Stack content vertically */
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.inquiry-logo {
    width: 150px; /* Smaller logo for better spacing */
    height: auto;
    margin-bottom: 20px;
}
.event-name {
    font-size: 2rem; /* Adjusted font size */
    font-weight: bold;
    margin: 20px auto 10px; /* Reduced margins */
    text-align: center;
}
.inquiry-details {
    margin: 10px auto 20px; /* Reduced margins */
    text-align: center;
}
.inquiry-details p {
    font-size: 1rem; /* Adjusted font size */
    font-weight: bold;
    color: #C08E2D;
}
.inquiry-title {
    font-size: 1.5rem; /* Adjusted font size */
    font-weight: bold;
    margin: 5px auto; /* Reduced margins */
}
.inquiry-contact {
    color: #C08E2D;
    font-weight: bold;
    font-size: 1.2rem; /* Adjusted font size */
}
.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.social-links svg {
    width: 30px; /* Smaller SVG size */
    height: 30px;
    fill: #506D4A;
}
/* Media queries for smaller screens */
@media (max-width: 768px) {
    .inquiry-logo {
        width: 120px; /* Further reduce logo size */
    }
    .event-name {
        font-size: 1.5rem; /* Further adjusted font size */
        margin: 15px auto 5px; /* Further reduced margins */
    }
    .inquiry-details p {
        font-size: 0.9rem; /* Further adjusted font size */
    }
    .inquiry-title {
        font-size: 1.2rem; /* Further adjusted font size */
    }
    .inquiry-contact {
        font-size: 1rem; /* Further adjusted font size */
    }
    .social-links svg {
        width: 25px; /* Further reduce SVG size */
        height: 25px;
    }
}
@media (max-width: 480px) {
    .inquiry-logo {
        width: 100px; /* Even smaller logo for extra small screens */
    }
    .event-name {
        font-size: 1.2rem; /* Even smaller font size for event name */
        margin: 10px auto 5px; /* Even further reduced margins */
    }
    .inquiry-details p {
        font-size: 0.8rem; /* Even smaller font size for details */
    }
    .inquiry-title {
        font-size: 1rem; /* Even smaller font size for titles */
    }
    .inquiry-contact {
        font-size: 0.9rem; /* Even smaller font size for contact info */
    }
    .social-links svg {
        width: 20px; /* Even smaller SVG size for extra small screens */
        height: 20px;
    }
}
/* ENQUIRY MODAL END */
.select-rooms-title {
    color: #506D4A;
    text-align: center;
    margin: 50px 0;
}
.room-card {
    border: 2px solid #C08E2D;
}
.card-title {
    color: #506D4A;
}
.card-text {
    color: #C08E2D;
}
.selected-room-details {
    border: 3px solid #C08E2D;
}
.room-context {
    padding: 20px;
}
.select-room-btn {
    background-color: #506D4A;
    color: #FFEBCD;
}
.select-room-btn:hover {
    background-color: #C08E2D;
    color: #FFEBCD;
}
.room-type-item {
    margin: 10px 0;
}
.room-type-item button {
    color: #506D4A;
    background-color: #FFEBCD;
    border: none;
    border-radius: 0px;
}
.room-type-item button:hover {
    color: #506D4A;
    background-color: #e0cfb4;
    border: none;
    border-radius: 0px;
}
/* BOOKING SUMMARY START */
.booking-summary {
    background-color: #506D4A;
    border-radius: 5px;
    min-height: 100vh;
    height: auto;
    padding: 20px;
}
.booking-summary-title {
    color: #FFEBCD;
}
/* ✅ NEW: MEDIUM SCREENS (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .booking-summary {
        width: 100% !important;
        max-width: 100% !important;
        min-height: auto;
        padding: 15px;
        margin: 0 auto;
    }
    #booked-rooms-section h3 {
        font-size: 1.3rem;
        text-align: center;
    }
    #booked-rooms-section {
        padding: 10px;
    }
    #resetBookedRooms {
        width: 100%;
    }
    .row {
        display: flex;
        flex-wrap: wrap;
    }
    .col-sm-3 {
        width: 100% !important;
        max-width: 100% !important;
    }
}
/* 💻 Larger tablets (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .booking-summary {
        width: 100% !important;
        max-width: 100% !important;
        min-height: auto;
        padding: 15px;
        margin: 0 auto;
    }
    .row {
        display: flex;
        flex-wrap: wrap;
    }
    .col-sm-3 {
        width: 100% !important;
        max-width: 100% !important;
    }
}
/* 📱 SMALL DEVICES (≤ 575px) */
@media (max-width: 575px) {
    .booking-summary {
        padding: 10px;
    }
    #booked-rooms-section h3 {
        font-size: 1.2rem;
        text-align: center;
    }
    #booked-rooms-section {
        padding: 10px;
        min-width: auto;
    }
    #resetBookedRooms {
        width: 100%;
    }
}
/* BOOKING SUMMARY END */
/* FORM START */
.left-side-guest {
    padding: 0px 50px;
    top: 10px;
    overflow-y: auto;
}
.guest-information-title {
    color: #506D4A;
}
.form-container {
    padding: 30px;
    border: 3px solid #C08E2D;
    border-radius: 5px;
    width: 100% !important;
    max-width: 100% !important; 
    box-sizing: border-box;
}
.form-container h2 {
    color: #506D4A;
}
.form-container label {
    color: #506D4A;
    font-weight: bold;
}
.form-container input {
    color: #506D4A;
}
.form-container a {
    color: #C08E2D;
}
.special-request {
    margin: 20px auto;
}
.special-request label {
    color: #506D4A;
    font-size: 1.5rem;
}
.special-request textarea {
    border: 3px solid #C08E2D;
}
.btn-confirm {
    background-color: #506D4A;
    color: #e0cfb4;
}
.btn-confirm:hover {
    background-color: #C08E2D;
    color: #e0cfb4;
}
.btn-confirm:disabled {
    background-color: #A9A9A9;
    color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.6;
}
.btn-continue {
    background-color: #FFEBCD;
    color: #506D4A;
}
.btn-continue:hover {
    background-color: #C08E2D;
    color: #FFEBCD;
}
.green-font {
    color: #506D4A !important;
}
.gold-font {
    color: #C08E2D !important;
}
.red-font {
    color: #a71010 !important;
    font-weight: bolder;
}
.custom-outline {
    color: #506D4A;
    border-color: #506D4A;
}
.custom-outline:hover {
    background-color: #506D4A !important;
    color: #FFEBCD !important;
}
.btn-check:checked + .custom-outline {
    background-color: #506D4A !important;
    color: #FFEBCD !important;
    border-color: #506D4A !important;
}
/* 🖥️ LARGE SCREENS (>= 1200px) */
@media (min-width: 1200px) {
    .left-side-guest {
        padding: 0 80px;
    }
    .form-container {
        padding: 40px;
    }
    .form-container h2 {
        font-size: 1.8rem;
    }
    .special-request label {
        font-size: 1.5rem;
    }
}
@media (min-width: 1024px) {
    .left-side-guest {
      width: 75%;
      float: left;
      padding-right: 20px;
    }
  }
/* 💻 MEDIUM SCREENS (768px - 1199px) */
@media (min-width: 768px) {
    .left-side-guest {
        padding: 0 40px;
    }
    .form-container {
        padding: 30px;
    }
    .form-container h2 {
        font-size: 1.5rem;
    }
    .special-request label {
        font-size: 1.3rem;
    }
}
/* 📲 SMALL DEVICES (<= 575px) */
@media (max-width: 575px) {
    .left-side-guest {
        padding: 10px 15px;
        position: static;
        max-height: none;
        overflow: visible;
    }
    .guest-information-title h1 {
        font-size: 1.3rem;
        text-align: center;
        margin-top: 10px;
    }
    .form-container {
        padding: 15px;
    }
    .form-container h2 {
        font-size: 1.2rem;
        text-align: center;
    }
    .form-container label,
    .form-container input,
    .form-container textarea {
        font-size: 14px;
    }
    .special-request label {
        font-size: 1.1rem;
    }
    .btn-confirm {
        width: 100%;
        margin-top: 15px;
    }
    .text-end {
        text-align: center !important;
    }
}
/* FORM END */
/* ROOM BUTTONS START */
.btn-room {
    background-color: #FFEBCD;
    color: #506D4A;
    border: 2px solid #506D4A;
    width: 100%; /* Ensures all buttons have equal width */
    padding: 10px; /* Better spacing inside */
    text-align: center; /* Centers text */
    font-weight: bold; /* Emphasizes room name */
    transition: all 0.2s ease-in-out;
    margin: 5px 0; /* Adds spacing between buttons */
    display: flex;
    flex-direction: column;
    flex: 1 1 48%;
}
.btn-room:hover {
    background-color: transparent;
    color: #506D4A;
    border: 2px solid #506D4A;
}
.room-name {
    font-size: 20px;
    font-weight: bolder;
}
.room-rate {
    font-size: 14px;
    font-style: italic;
    color: #C08E2D;
}
.btn-change-selection {
    display: block;
    text-align: center;
    margin: 0px auto 10px;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    background-color: #506D4A;
    border: 2px solid #C08E2D;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-change-selection:hover {
    background-color: #C08E2D;
    color: white;
}
/* Default - Large Screens */
.room-buttons-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 300px; /* Adjust based on image width */
}
/* Default (Large Screens) */
@media (min-width: 992px) {
    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%; /* Maintain the layout for large screens */
    }
}
/* Medium Screens (Tablets) */
@media (max-width: 991px) {
    .col-sm-2 {
        flex: 0 0 100%;
        display: flex;
        justify-content: center;
    }
    .room-buttons-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 8px; /* Slightly smaller gap */
    }
    .btn-room {
        display: flex;
        width: 45%; /* Slightly smaller width */
        padding: 8px; /* Less padding for smaller box */
        font-size: 9px; /* Smaller base font */
        flex-direction: column;
        align-items: center;
    }
    .room-name {
        font-size: 14px; /* Smaller room title */
    }
    .room-rate {
        font-size: 11px; /* Smaller rate text */
    }
}
/* Small Screens (Mobile) */
@media (max-width: 576px) {
    .col-sm-2 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .btn-room {
        width: 100%; /* Full width */
        display: flex;
        justify-content: space-between; /* Align text and spacing properly */
    }
    .btn-room {
        width: 100%;
        font-size: 8px;
        padding: 6px;
    }
    .room-name {
        font-size: 12px;
    }
    .room-rate {
        font-size: 10px;
    }
    .col-lg-7 {
        margin-top: 10px;
    }
}
/* ROOM BUTTONS END */
.payment-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.payment-option .form-check-input {
    margin-right: 10px;
    transform: scale(1.2); /* Slightly enlarge radio button */
}
.payment-option label {
    display: flex;
    align-items: center;
    width: 100%;
    cursor: pointer;
}
.payment-option .method-name {
    margin-left: 8px;
    font-weight: bold;
    color: #506D4A;
    flex: 1; /* Push the image to the right */
}
.payment-img {
    height: 30px; /* Adjust as needed */
    width: auto;
}
.confirmation-section {
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 30px 350px;
}
.confirmation-container {
    max-width: 700px;
    margin: auto;
    padding: 20px;
    border: 2px solid #C08E2D;
    background-color: #FFEBCD;
}
.confirmation-title {
    color: #506D4A;
    border-bottom: 2px solid #C08E2D;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
.confirmation-message {
    font-size: 14px;
    margin-bottom: 20px;
}
.confirmation-section table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.confirmation-section td {
    padding: 5px 10px;
    border: none;
}
.confirmation-section tr {
    border-bottom: 2px solid #C08E2D;
}
.table-bordered > tbody > tr:first-child {
    border-top: none;
}
.confirmation-section .continue-btn {
    background-color: #506D4A;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.confirmation-section .continue-btn:hover {
    background-color: #C08E2D;
}
/* ✅ Responsive Enhancements */
@media (max-width: 992px) {
    .confirmation-section {
        margin: 30px 100px;
    }
}
@media (max-width: 768px) {
    .confirmation-section {
        margin: 20px;
    }

    .confirmation-section h3 {
        font-size: 1.1rem;
    }

    .confirmation-section p,
    .confirmation-message,
    .confirmation-section td {
        font-size: 0.95rem;
    }

    .continue-btn {
        width: 100%;
        font-size: 1rem;
    }

    .text-md-end {
        text-align: center !important;
        margin-top: 20px;
    }

}
@media (max-width: 480px) {
    .confirmation-section h2 {
        font-size: 1.25rem;
    }

    .confirmation-section h3 {
        font-size: 1rem;
    }

    .confirmation-section p,
    .confirmation-section td {
        font-size: 0.9rem;
    }
}
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in-rotate {
    opacity: 0;
    transform: rotate(-10deg);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in-glow {
    opacity: 0;
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
    transition: opacity 1s ease-out, text-shadow 1s ease-out;
}
.fade-in:nth-child(1) { transition-delay: 0.2s; }
.fade-in-left:nth-child(2) { transition-delay: 0.4s; }
.fade-in-right:nth-child(3) { transition-delay: 0.6s; }
.fade-in-scale:nth-child(4) { transition-delay: 0.8s; }
.fade-in-rotate:nth-child(5) { transition-delay: 1s; }
.fade-in.show, .fade-in-left.show, .fade-in-right.show, 
.fade-in-scale.show, .fade-in-rotate.show, .fade-in-glow.show {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1) rotate(0);
    text-shadow: none;
}
/* Responsive Styles */
@media (max-width: 1440px) {
    .experiences-section {
        margin: 50px 100px;
    }
    .experiences p {
        font-size: 16px;
        width: 80%;
    }
    .experiences-description {
        padding-left: 50px;
    }
}
@media (max-width: 1024px) {
    .experiences-section {
        margin: 50px 150px;
    }
    .experiences p {
        width: 80%;
    }
    .experiences-description {
        padding-left: 50px;
    }
    .experiences button {
        padding: 10px 30px;
    }
}
@media (max-width: 768px) {
    .experiences-section {
        margin: 30px 20px;
    }
    .experiences p {
        font-size: 18px;
        width: 100%;
    }
    .experiences-description {
        padding-left: 20px;
    }
    .experiences button {
        padding: 8px 20px;
    }
    .experiences img {
        transform: scale(1);
    }
    .experiences-section .left, .experiences-section .right {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 480px) {
    .experiences-section {
        margin: 20px;
    }
    .experiences p {
        font-size: 16px;
    }
    .experiences button {
        padding: 8px 15px;
    }
}
/* DETAILS MODAL START */
#roomDetailsContainer {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
}
.room-section h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.room-section table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}
.room-section th,
.room-section td {
    padding: 8px;
    border: 1px solid #000;
    text-align: left;
}
.room-section ul {
    margin: 0;
    padding-left: 20px;
}
/* 🔽 SMALL SCREENS */
@media (max-width: 768px) {
    #roomDetailsContainer {
        font-size: 0.85rem;
    }

    .room-section h2 {
        font-size: 1.1rem;
    }

    .room-section table {
        font-size: 0.85rem;
    }

    .room-section th,
    .room-section td {
        padding: 6px;
    }

    .modal-dialog {
        margin: 1rem;
    }

    .room-section ul {
        padding-left: 15px;
    }
}
/* 📱 EXTRA SMALL SCREENS */
@media (max-width: 480px) {
    #roomDetailsContainer {
        font-size: 0.75rem;
    }

    .room-section h2 {
        font-size: 1rem;
    }

    .room-section table {
        font-size: 0.75rem;
    }

    .room-section th,
    .room-section td {
        padding: 5px;
    }

    .room-section ul {
        padding-left: 12px;
    }
}
@media (max-width: 400px) {
    .modal-footer.room-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px;
    }
    .modal-footer.room-buttons button {
        width: 100%;
        font-size: 0.75rem;
        padding: 8px;
    }
}
/* DETAILS MODAL END*/
.description {
    padding: 40px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
}
/* Medium screens (tablets) */
@media (max-width: 991px) {
    .description {
        padding: 30px 16px;
        font-size: 1rem;
    }
    .description h2 {
        font-size: 2rem;
    }
}
/* Small screens (phones) */
@media (max-width: 575px) {
    .description {
        padding: 18px 6px;
        font-size: 0.98rem;
    }
    .description h2 {
        font-size: 1.8rem;
    }
    .description ul {
        padding-left: 20px;
    }
}