/* Main - Media Query */
@media screen and (max-width: 1323px) {
    .header {
        position: relative;
    }

    .nav {
        position: relative;
        width: 100%;
        opacity: 1;
        height: 70px;
        padding: 0 ;
        z-index: 10;
        border-bottom: 0.1px solid rgba(255, 255, 255, 0.2);
    }

    .mobile-logo img {
        width: 100px;
        height: 100px;
        transform: scale(1.5);
    }

    .mobile-logo {
        position: absolute;
        top: 0;
        left: 0;
        margin-left: 10px;
        display: block;
    }

    .nav-wrap {
        position: fixed;
        visibility: hidden;
        right: 0;
        display: flex;
        flex-direction: column;
        background: #1E1E1E;
        opacity: 0.9;
        align-items: center;
        justify-content: center;
        height: 100vh;
        width: 70vw;
        transition: visibility 0.3s ease, transform 0.3s ease;
        transform: translateX(100%); /* start off-screen */
    }

    .nav-wrap.visible {
        visibility: visible;
        transform: translateX(0); /* slide in */
    }

    .nav-links li a {
        color: #fff;
        font-size: 20px;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        gap: 2em;
    }

    .nav .logo {
        display: none;
    }

    .nav-links.right {
        order: 3;
        margin-top: 3em;
    }

    .nav-links.left {
        order: 2;
        height: fit-content;
    }

    .socials {
        order: 4;
    }

    .socials img {
        width: 30px;
        height: 30px;
    }

    .nav-socials {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        z-index: 10;
        gap: 15px;
    }

    .nav-socials img {
        width: 30px;
        height: 30px;
    }

    .hamburger-menu, .close-menu {
        color: #fff;
    }

    .hamburger-menu i, 
    .close-menu i {
        font-size: 32px;
        cursor: pointer;
    }

    .close-menu, .hamburger-menu {
        position: absolute;
        color: #fff;
        right: 0;
        top: 0;
        margin: 2em;
    }

    .close-menu {
        display: none;
    }

    .hamburger-menu {
        display: block;
        color: rgba(255, 255, 255, 0.8);
    }

    .header-wrap h1 {
        font-size: clamp(56px, 5vw, 72px);
        margin: 0;
        padding: 0;
    }

    .header-wrap .subtitle {
        font-size: clamp(24px, 2vw, 28px);
        margin: 0;
        padding: 0;
    }

    .socials {
        display: block;
    }

    .header-content {
        margin-top: 4em;
    }
}

/* Mobile & Tablets*/
@media screen and (max-width: 1024px) {
    .container {
        position: relative;
    }

    /* Navbar & Header */
    .header-content {
        margin-top: 4em;
    }

    .title::before,
    .title::after {
        content: none;
    }

    /* Header */
    .header {
        position: relative;
    }

    .header-wrap h1 {

        font-size: clamp(72px, 6vw, 92px);
    }

    .header-wrap .subtitle {
        font-size: clamp(24px, 2vw, 28px);
    }

    /* Card */ 
    .card-container .card,
    .card-container .card-right {
        display: none;
    }

    .card-container {
        margin-top: 100px;
    }

    .hero-section {
        display: block;
        text-align: center;
        color: #fff;
        font-family: var(--font-body);
        width: 100%; 
        margin: 0; 
        padding: 0; 
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .hero-heading h3 {
        font-size: 28px;
        font-weight: 600;
        line-height: 1.2;
        font-family: var(--font);
    }

    .hero-subheading h4 {
        font-size: 18x;
        font-weight: 400;
    }

    /* Hotel History */
    .history {
        font-size: 14px;
        padding: 0 2em;
        font-family: var(--font-body);
    }

    .hotel-location,
    .hotel-contact {
        font-family: var(--font-body-poppins);
        font-size: 14px;
    }

    .title-wrap h4 {
        font-size: 20px !important;
    }

    .title-wrap .descriptor {
        font-size: 14px !important;
    }

    .explore-now {
        text-decoration: underline;
        line-height: 2;
    }

    /* Amenities */
    .amenities-container {
        padding: 25px 1em;
    }

    .amenities {
        margin-top: 20px;
    }

    .amenity {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .amenity img {
        width: 100%;
        height: 300px;
    }

    .text-wrap {
        margin-top: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 !important;
    }

    .text-wrap p {
        text-align: center;
    }

    .heading {
        font-size: 18px !important;
    }

    .sub-heading {
        font-size: 12px !important;
    }

    .heading-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .outdoor-dining {
        margin-top: 20px;
    }

    /* The Rose Pavilion */
    .rose-pavilion-container {
        padding: 25px 1em;
    }

    .rose-pavilion .main-image img {
        min-height: 0;
    }

    .rose-pavilion {
        display: flex;
        flex-direction: column;
        gap: 20px;
        border: none;
    }

    .explore-now {
        text-align: center;
    }

    /* Exclusive Venues */
    .exclusive-venues-container {
        padding: 25px 1em;
        border: none;
    }

    .exclusive-venues {
        display: flex;
        flex-direction: column-reverse;
        border: none;
    }

    .exclusive-venues::before {
        content: none;
        border-top: none; /* Ensure the border is removed */
        width: 0; /* Optional: Prevents any unwanted space */
    }

    .exclusive-venues .text-wrap,
    .accomodations .text-wrap {
        margin-top: 25px;
        width: 100%; /* Optional: Make it responsive */
        height: auto; /* Optional: Adjust height dynamically */
        margin-bottom: 1em;
    }

    .exclusive-venues .gallery img,
    .accomodations .gallery img {
        width: 650px;
    }
    
    /* Accomodations */
    .accomodations-container {
        padding: 25px 0;
        padding: 0 1em;
        margin-top: 20px;
        border-bottom: 0.2px solid rgb(0, 0, 0, 0.1);
    }

    .accomodations {
        display: flex;
        flex-direction: column;
        border: none;
    }
}   

@media (max-width: 768px) {
    .header-wrap h1 {
        font-size: clamp(42px, 5vw, 48px) !important;
        margin: 0;
        padding: 0;
    }

    .hotel-history-container .title-wrap {
        display: flex;
        justify-content: center;
    }

    .hotel-history-container .title-wrap .title {
        margin-bottom: 30px !important;
        width: 60%;
    }

    .header-wrap .subtitle {
        font-size: clamp(20px, 2vw, 28px) !important;
        margin: 0;
        padding: 0;
    }

    .header-container {
        height: 60vh;
    }

    .card-container {
        margin-top: 150px;
    }

    .btn-top {
        display: none;
    }

    .nav-links li a {
        font-size: clamp(16px, 2vw, 20px) !important;
    }
}

@media (max-width: 375px) {
    /* Navbar & Header */
    .background-container {
        height: 80vh;
    }

    .card-container {
        position: relative;
        margin: 0 20px !important;
        margin-top: 150px !important;
    }

    .hotel-history-container {
        margin-top: 0;
    }

    .hotel-history-container .title-wrap .title {
        margin: 0 10px;
        margin-bottom: 10px;
    }

    .header-wrap h1 {
        font-size: clamp(36px, 5vw, 48px) !important;
    }

    .header-wrap .subtitle {
        font-size: clamp(16px, 2vw, 20px) !important;
    }

    .header-wrap .description {
        font-size: clamp(12px, 2vw, 16px) !important;
    }

}