:root {
    --primary-color: #366A2E;
    --secondary-color: #F8F5E8;
    --text-color: #4A4A4A;
    --highlight-color: #EED9C4;
    --hero-background: #D4AF37;
}

body {
    overflow-x: hidden !important;
    font-family: 'Lora', serif;
    line-height: 1.6;
    background-color: var(--secondary-color) !important;
}

body {
    font-family: 'Lora', serif, 'Times New Roman', Times, serif;
}

h1,
h2 {
    font-family: 'Marcellus', serif;

}

h3 {
    font-family: 'Marcellus', serif;
}

h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

p {
    font-family: "Jost", serif;
    color: var(--text-color);


}

::-webkit-scrollbar {
    width: 0.6rem;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: var(--hero-background);
    border-radius: 10px;
}





/* navbar */

.navbar-top {

    background-color: #F8F5E8;
    border-bottom: 2px solid #D4AF37;
    padding: 0.5rem 0;
}

.navbar-top a {
    font-family: 'Lora', serif;

    color: #1F4C1B;
    text-decoration: none;
}

.navbar-top a:hover {
    color: #D4AF37;

}

.navbar-top .contact-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-top .btn-book {
    background-color: #D4AF37;
    color: #F8F5E8;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    border-radius: 30px;
    cursor: pointer;
    padding: 15px 35px;
    text-transform: uppercase;
    text-shadow: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}


.navbar-top .btn-book:hover {
    background-color: #1F4C1B;
    color: #F8F5E8;
}

.navbar-top .btn-book span {
    position: relative;
    z-index: 1;
}

.navbar-transparent {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(31, 76, 27, 0));
    /* Black with low opacity at top to transparent at bottom */
    color: #F8F5E8;
    /* Light text color */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-scrolled {
    background-color: #1F4C1B !important;
    /* Change this color as needed */
    color: #F8F5E8;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Optional shadow */
}

.navbar-brand {
    font-size: 2rem;
    color: #F8F5E8;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 982px) {
    .navbar-brand {
        margin-right: 0px;
        margin-left: 0px;
    }

}

.navbar-brand:hover {
    color: #D4AF37;
}

.nav-link {
    font-family: 'Lora', serif;
    color: #F8F5E8 !important;
    letter-spacing: 1.6px;
    font-weight: bold !important;
}

.nav-link:hover {
    color: #D4AF37;
}

.navbar-toggler {
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler:focus,
.navbar-toggler:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.brand-logo {
    max-width: 120px;
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .brand-logo {
        max-width: 90px;
    }
}

@media (min-width: 1200px) {
    .brand-logo {
        max-width: 140px;
    }
}

@media (max-width: 992px) {
    .offcanvas {
        background-color: #1F4C1B !important;
        color: #F8F5E8;
    }

    .offcanvas-header {
        border-bottom: 1px solid #D4AF37;
    }

    .offcanvas-header h5 {

        color: #F8F5E8;
    }

    .offcanvas-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: bold;
    }

    .nav-link {
        font-family: 'Lora', serif;
        font-size: 1.1rem;
        color: #F8F5E8;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .nav-link:hover {
        color: #D4AF37;
        font-weight: bold;
    }

}

.navbar-toggler {
    border: none !important;
}



/* hero  */




.main-hero-desc {
    position: relative;
}

.main-hero-desc img {
    width: 100%;
    display: block;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 68%;
    padding: 60px;
    border: 1px solid gold;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3px);
}

.overlay-text::before,
.overlay-text::after {
    content: "";
    display: block;
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid white;
    border-radius: 12px;
}

.overlay-text h1 {
    font-size: 100px;
    margin: 0 0 10px 0;
}

.overlay-text p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .overlay-text {
        padding: 30px;
    }

    .overlay-text h1 {
        font-size: 44px;
    }

    .overlay-text p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .overlay-text {
        padding: 20px;
    }

    .overlay-text h1 {
        font-size: 44px;
    }

    .overlay-text p {
        font-size: 18px;
    }
}






.overlay-text h5.h5-with-dash {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.overlay-text h5.h5-with-dash .dash {
    display: inline-block;
    width: 120px;
    height: 1px;
    background-color: gold;
    margin: 0 10px;
}

.stars {
    font-size: 20px;
    color: #D4AF37;
    /* Gold color for stars */
    margin-bottom: 30px;
}




.testimonial-item p {
    font-size: 21px;
    line-height: 32px;
    margin-bottom: 30px;
    color: #F8F5E8;

}

.testimonial-item h4 {
    font-size: 18px;
    color: #F8F5E8;
    font-weight: 700;
}

.testimonial-item {
    padding: 40px;
}

.main-reviews-section {
    padding: 120px 0px;
    max-width: 60% !important;
}

@media screen and (max-width: 768px) {
    .main-reviews-section {
        padding: 30px 0px;
        max-width: 90% !important;
    }

    .testimonial-item p {
        font-size: 18px;
        line-height: 32px;


    }

    .testimonial-item {
        padding: 0px;
    }

}

.custom-prev-arrow,
.custom-next-arrow {
    background-color: transparent;
    color: #D4AF37;
    border: 1px solid #D4AF37;
    font-size: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    /* Add transition here */
}

.custom-prev-arrow {
    left: -60px;
}

.custom-next-arrow {
    right: -60px;
}

.custom-prev-arrow i,
.custom-next-arrow i {
    font-size: 24px;
}

.custom-prev-arrow:hover,
.custom-next-arrow:hover {
    background-color: white;
    color: #D4AF37;
    border: 2px solid #D4AF37;
    /* Optional: Slightly scale up on hover */
}

/* Responsiveness for small screens */
@media (max-width: 768px) {

    .custom-prev-arrow,
    .custom-next-arrow {
        font-size: 16px;
        width: 40px;
        height: 40px;
    }

    .custom-prev-arrow {
        left: -30px;
    }

    .custom-next-arrow {
        right: -30px;
    }

    .custom-prev-arrow i,
    .custom-next-arrow i {
        font-size: 18px;
    }
}














.aboutus-banner {
    background-size: cover;
    background-attachment: fixed;
    /* This creates the scroll effect */
    height: 400px;
    display: flex;
    background-position: center;
    justify-content: center;
    align-items: center;
    color: white;
    /* Text color for visibility */
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    /* Optional text shadow */
}

.aboutus-banner h1 {

    font-size: calc(3rem + 1.5vw) !important;
}

/* experience */
.main-experience-section .slider-item img {
    border-radius: 10px;
    object-fit: cover;
    height: 50vh;
    background-position: center;
}


.main-experience-section {
    background: linear-gradient(to bottom, #F8F5E8 40%, #1F4C1B 40%);



}

.main-experience-description h1 {
    margin: 0;
    font-size: 36px;
    font-weight: bold;
}

.main-experience-description p {
    font-size: 21px;
    color: #F8F5E8;
}

.main-experience-description {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Aligns <h1> at the top and <p> at the bottom */
    height: 100%;
    padding: 20px;
}

.text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bottom-section a {
    position: relative;
    color: #D4AF37;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.bottom-section a::after {
    content: "";
    position: absolute;
    bottom: 0;
    /* Position the underline at the bottom */
    left: 0;
    /* Start from the left */
    height: 2px;
    /* Thickness of the underline */
    width: 0;
    /* Start with no underline */
    background-color: #D4AF37;
    /* Underline color */
    transition: width 0.3s ease;
    /* Smooth transition for width */
}

.bottom-section:hover a::after {
    width: 100%;
    /* Expand the underline to full width */
}

@media screen and (max-width: 999px) {
    .main-experience-description h1 {
        color: #F8F5E8;

    }

    .main-experience-description p {
        font-size: 24px;
        color: #F8F5E8;
    }

}

@media screen and (max-width: 768px) {
    .main-experience-description h1 {
        color: #F8F5E8;
        margin-bottom: 16px;
    }

    .main-experience-description p {
        font-size: 18px;
        color: #F8F5E8;
    }

}

.image-container {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
    background-color: #366A2E;
    /* Add a background color */
}

.image-container .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    opacity: 0.8;
    /* Ensure opacity affects only the background */
    transition: background-image 0.5s ease-in-out;
    z-index: 1;
    /* Keep it behind the text */
}

.image-container .background .container.nature-display {
    position: relative;
    z-index: 2;
    /* Ensure text is above the background */
    color: white;
    /* Optional: Style text for better contrast */
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    /* Optional: Add a shadow to enhance readability */
}

.image-container .background .container.nature-display h1,
.image-container .background .container.nature-display h3 {
    margin: 0;
    padding: 0;
    line-height: 1.2;
}




.titles {
    position: absolute;
    bottom: 10px;
    margin-top: 1px solid #1F4C1B;

    width: 100%;
    text-align: center;
    z-index: 10;
}


.titles span {
    display: inline-block;
    margin: 0 15px;
    padding: 10px 15px;
    color: #F8F5E8;
    font-family: 'Lora', serif, 'Times New Roman', Times, serif;
    cursor: pointer;
    font-size: 28px;
    transition: color 0.3s ease, background 0.3s ease;
}

.titles .sub-titles p {
    color: #F8F5E8;
}

.titles .sub-titles h1 {
    color: white;
}

.titles span:hover {
    color: #F8F5E8;
    /* Text color on hover */
}

.titles span.active {
    color: #D4AF37;
    /* Active text color */
}

/* Default color for all h1 */
.titles span .sub-titles h1 {
    color: white;
    /* Default color */
    transition: color 0.3s ease;
}

/* Initially active h1 is orange */
.titles span.active .sub-titles h1 {
    color: #D4AF37;
}

/* Active h1 during hover */
.titles span:hover .sub-titles h1 {
    color: #D4AF37;
}










.main-amenities-item {
    padding-top: 50px;
    padding-bottom: 100px;
}

.main-about-desc-image {
    position: relative;
}

.main-about-desc-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.award-badge {
    position: absolute;
    /* bottom: -96px; */
    background-color: white;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
    padding-top: 36px;
    text-align: center;
    width: 100%;
    font-size: 1.2rem;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: #1F4C1B;
}

.award-logo img {
    width: 100px;
    height: 100px;
    position: absolute;
    padding: 4px;
    top: -18%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Centers the element */
    background-color: white;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.award-title {
    font-weight: bold;
}

.main-about-section {
    padding: 100px 0px;
}

.main-about-desc h3 {
    color: #1F4C1B;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.main-about-desc h1 {
    font-size: 74px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.main-about-desc p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .main-about-desc h1 {
        font-size: 46px;
    }

    .main-about-desc h3 {
        font-size: 1.25rem;
    }

    .main-about-desc p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .main-about-desc h1 {
        font-size: 44px;
    }

    .main-about-desc h3 {
        font-size: 1.25rem;
    }

    .main-about-desc p {
        font-size: 18px;
    }
}




.btn-hero {
    background-color: #D4AF37;
    /* Warm gold for a subtle luxury look */
    color: #F8F5E8;
    /* Deep green text */
    font-size: 16px;
    /* Clean, readable size */
    font-family: 'Arial', sans-serif;
    /* Simple modern font */
    font-weight: 500;
    /* Balanced weight for readability */
    letter-spacing: 0.5px;
    /* Slightly spaced text for refinement */
    text-transform: uppercase;
    /* Upscale, polished feel */
    border-radius: 50px;
    /* Smooth rounded edges */
    padding: 14px 36px;
    /* Balanced padding for a clean, button-like shape */
    border: none;
    /* No border, flat design */
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    /* Smooth transition for all states */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Light, soft shadow for depth */
    outline: none;
    /* Remove outline on focus */
}

.btn-hero:hover {
    background-color: #1F4C1B;
    /* Dark green background on hover */
    color: #F8F5E8;
    /* Light text for contrast */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    /* Deeper shadow on hover for subtle emphasis */
    transform: translateY(-3px);
    /* Slight lift effect on hover */
}

.btn-hero:focus {
    box-shadow: 0 0 8px #D4AF37;
    /* Soft glow with gold color on focus */
}


.main-hero .slick-slider img {
    width: 100%;
    height: 120vh;
    object-fit: cover;
    display: block;
    object-position: top !important;
}

.main-hero .slick-slider .slider-item {
    position: relative;
    background-color: #366A2E !important;
    overflow: hidden;
}

.main-hero .slick-slider .slider-item img {
    opacity: 0.8;
}

.main-hero .slick-dots {
    position: absolute;
    bottom: 32px;
    /* Position the numbers */
    display: flex;
    justify-content: center;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-hero .slick-dots li {
    display: inline-block;
    margin: 0 10px;
    /* Spacing between circles */
    cursor: pointer;
}

.main-hero .slick-dots li button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    outline: none;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.main-hero .slick-dots li.slick-active button {
    background: rgba(255, 215, 0, 1);
    border-color: rgba(255, 215, 0, 1);
    color: black;
    font-weight: bold;
    transform: scale(1.2);
}

.main-hero .slick-dots li button:before {
    display: none !important;
}




.amenity-item {
    text-align: center;
    padding: 20px;
}

@media screen and (max-width: 768px) {
    .amenity-item {
        padding: 6px;
    }

}

.amenity-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(0);
}

.amenity-item:hover .amenity-icon {
    transform: scale(1.2);
}


















.nature-display {
    padding: 100px 0px;
}

.nature-display h3 {
    color: white;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.nature-display h1 {
    font-size: 74px;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}



@media (max-width: 768px) {
    .nature-display h1 {
        font-size: 46px;
    }

    .nature-display h3 {
        font-size: 1.25rem;
    }

}

@media (max-width: 480px) {
    .nature-display h1 {
        font-size: 44px;
    }

    .nature-display h3 {
        font-size: 1.25rem;
    }

}










/* rooms */
.room-slider {
    position: relative;
    text-align: center;
}

.room-slider img {
    background-color: #366A2E;
    /* Apply background color */

    width: 100%;
    height: 90vh;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}




.room-slider .slick-slide {
    margin: 0 15px;
}

.room-slider .slick-center .room-slider {
    transform: scale(1.1);
}

.main-rooms-section {
    padding: 100px 0px;
}

.main-rooms-section-desc h3 {
    color: #1F4C1B;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.main-rooms-section-desc h1 {
    font-size: 74px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.main-rooms-section-desc p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .main-rooms-section-desc h1 {
        font-size: 46px;
    }

    .main-rooms-section-desc h3 {
        font-size: 1.25rem;
    }

    .main-rooms-section-desc p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .main-rooms-section-desc h1 {
        font-size: 44px;
    }

    .main-rooms-section-desc h3 {
        font-size: 1.25rem;
    }

    .main-rooms-section-desc p {
        font-size: 18px;
    }
}

.room-slide {
    position: relative;
    /* Ensure proper positioning for child elements */
    text-align: center;
    /* Center-align text inside the image */
}

.room-slide img {
    width: 100%;
    height: 90vh;
    border-radius: 8px;
    object-fit: cover;
    /* Maintain aspect ratio while filling the container */
}


@media screen and (max-width: 768px) {
    .room-slide img {
        height: 75vh;
    }

}

/* Centered H1 */
.room-slide h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 46px;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    /* Add shadow for readability */
    margin: 0;
}

/* Price in Top-Right */
.room-price {
    position: absolute;
    top: 15px;
    right: 24px;
    background-color: white;
    border-radius: 50%;
    padding: 27px 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    /* Subtle shadow for depth */
    text-align: center;
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 1.2;
}

.room-price h5 {
    font-size: 1rem;
    margin: 0;
    color: #D4AF37;
    font-weight: 600;
}

.room-price p {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
}

/* Description at the Bottom */
.main-room-details {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 21px;
    text-align: center;
    margin-top: 10px;
}

.main-room-details:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: white;
    margin: 0 auto 10px auto;
    border-radius: 2px;
}

@media screen and (max-width: 768px) {
    .main-room-details {
        font-size: 17px;
        padding: 10px 2px;
    }

}


/* experience  */



.main-experience-section {
    padding: 0px 0px 60px 0px;
}

.main-header {
    padding: 60px 0px;
}

.main-header h3 {
    color: #1F4C1B;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.main-header h1 {
    font-size: 74px;
    line-height: 1.2;
    letter-spacing: 10px;
    text-transform: uppercase;

}



@media (max-width: 768px) {
    .main-header h1 {
        font-size: 46px;
        letter-spacing: 8px;

    }

    .main-header h3 {
        font-size: 1.25rem;
    }


}

@media (max-width: 480px) {
    .main-header {
        padding: 30px 0px;
    }

    .main-header h1 {
        font-size: 44px;
        letter-spacing: 0px;

    }

    .main-header h3 {
        font-size: 1.25rem;
    }


}





.similar-list a {
    text-decoration: none;
}


.col-lg-4 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Space between each similar list */
}

.similar-list {
    position: sticky;
    /* Makes the element sticky */
    top: 130px;
    /* Distance from the top of the viewport */
    z-index: 1000;
    background-color: #F8F5E8;
    /* White background for individual items */
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.similar-list:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.similar-list-details {
    display: flex;
    align-items: center;
    gap: 15px;
}

.similar-list-details img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    /* Black border */
}

.similar-list-details-desc h1 {
    font-size: 18px;
    color: #2c3e50;
    margin: 0;
}

















/* From Uiverse.io by cssbuttons-io */
.main-button {
    --color: #D4AF37;
    font-family: inherit;
    display: inline-block;
    background-color: transparent;
    position: relative;
    cursor: pointer;
    padding: 10px 24px;
    overflow: hidden;
    border: 2px solid #D4AF37;
    transition: color 0.5s;
    z-index: 1;
    font-size: 15px;
    border-radius: 50px;
    font-weight: 500;
    color: #D4AF37;
}

.main-button:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: var(--color);
    height: 150px;
    width: 200px;
    border-radius: 50%;
}

.main-button:hover {
    color: #fff;
}

.main-button:before {
    top: 100%;
    left: 100%;
    transition: all 0.7s;
}

.main-button:hover:before {
    top: -30px;
    left: -30px;
}

.main-button:active:before {
    background: #D4AF37;
    transition: background 0s;
}

.main-button a {
    text-decoration: none;
    color: inherit;
}









/* contact */




.form-control {
    border: none;
    background-color: transparent;
    border-bottom: 1px solid #4A4A4A;
    /* Only bottom border */
    margin-bottom: 26px;
    /* Add margin at the bottom */
}


.form-control:focus {
    box-shadow: none;
    /* Remove focus box-shadow */
    border-bottom: 2px solid #4A4A4A;
    /* Remove border color on focus */
    background-color: transparent;
}

.no-focus:focus {
    outline: none;
    /* Remove focus outline */
}

.resort-info a {
    color: inherit;
    text-decoration: none;
}

.flex-section {
    padding: 60px 0px 60px 0px;
    display: flex;
    justify-content: center;
}

.resort-info i {
    margin-right: 10px;
}

.resort-info h5 {
    font-size: 32px;
    margin-bottom: 32px;
}

.resort-info p {
    font-size: 18px;
}

.resort-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.resort-info .fas {
    color: #D4AF37;
    margin-top: 4px;
}

.resort-address,
.sales-office {
    flex: 1 1 40%;
    padding: 60px;
    border-right: 1px solid black;
}

.sales-office {
    border-right: none;
}

/* For smaller screens */
@media (max-width: 768px) {

    .resort-address,
    .sales-office {
        flex: 1 1 100%;
        padding: 20px;
        border-right: none;
    }

    .resort-info {
        justify-content: flex-start;
    }
}

.contactus-banner {
    background-size: cover;
    background-attachment: fixed;
    /* This creates the scroll effect */
    height: 400px;
    display: flex;
    background-position: center;
    justify-content: center;
    align-items: center;
    color: white;
    /* Text color for visibility */
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    /* Optional text shadow */
}

.contactus-banner h1 {

    font-size: calc(3rem + 1.5vw) !important;
}