@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap');
.sectionx {
    position: relative;
    padding: 60px 20px;
    overflow: hidden;
}

.background-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/main/assets/images/tls/tls_7.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: blur(5px);
    z-index: -1;
}

/* Adding a box shadow */
.sectionx::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/main/assets/images/tls/tls_7.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: blur(5px);
    z-index: -1;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.section {
    padding: 60px 20px;
    background-color: #fff;
}

.section-title {
    color: #000;
    text-align: center;
    font-size: 4rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 40px;
}

.section-titles {
    color: #fff;
    text-align: left;
    font-size: 4rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.section-descriptions {
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 40px;
}

.section-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Wrapper for content and background */
.content-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    height: 100%;
    border-radius: 20px;
    padding: 20px;
    position: relative;
}

.description-left {
    flex: 0 0 40%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.image-right {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
}


/* Rooms Section */
.room-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.room {
    width: 48%; /* Adjust the width to display two rooms side by side */
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.room-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
}

.room-info {
    padding: 20px;
    text-align: center;
}

.room-title {
    font-size: 1.6rem;
    color: #0056b3;
    margin-bottom: 10px;
}

.room-price {
    font-size: 1.2rem;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 15px;
}

.room-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.room-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.room-button {
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.room-button:hover {
    background: #0056b3;
}


/* Cottages Section */
.cottage-wrapper {
    display: flex;
    justify-content: center; /* Center the items horizontally */
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

/* Adjust image and text containers */
.cottage-left, .cottage-right {
    flex: 0 0 48%;
    display: flex;
    flex-direction: column; /* Stack title, price, and description vertically */
    align-items: center; /* Center the content horizontally */
    justify-content: center; /* Center content vertically */
    text-align: center; /* Center the text inside */
}

/* Image Styles */
.cottage-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Title Styles */
.cottage-title {
    font-size: 2rem;
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 10px; /* Adjust spacing between title and price */
}

/* Price Styles */
.cottage-price {
    font-size: 1.5rem;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 15px; /* Adjust spacing below price */
    display: block;
}

/* Description Styles */
.cottage-description {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: left;
}

/* Exclusive Venue Section (Card on Left, Image on Right) */
.venue-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;  /* Allow wrapping on smaller screens */
}

/* Venue Info Styling */
.venue-info {
    flex: 0 0 45%;  /* 45% width for the left side (venue info) */
    font-size: 1.2rem;
    color: #333; /* Improved base color */
    line-height: 1.6;
}

.venue-info h3.venue-name {
    font-size: 2rem;
    color: #2a2a2a;
    font-weight: 600;
    margin-top: 0;
}

.venue-info .price,
.venue-info .downpayment {
    font-size: 1.4rem;
    color: #0056b3; /* Green for pricing */
    margin-top: 10px;
    font-weight: 500;
}

.venue-info .price span,
.venue-info .downpayment span {
    font-size: 1.6rem;
    font-weight: bold;
    color: #007bff;
}

.venue-info .description {
    font-size: 1.2rem;
    margin-top: 15px;
    color: #555;
    font-family: 'Roboto', sans-serif;
}

.venue-info .inclusions-title {
    font-size: 1.5rem;
    color: #444;
    margin-top: 30px;
    font-weight: 600;
}

.venue-info .inclusions-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 10px;
}

.venue-info .inclusions-list li {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.venue-info .inclusions-list li:before {
    content: "\2022";
    font-size: 1.5rem;
    color: #2a2a2a;
    position: absolute;
    left: 0;
    top: 0;
}

.venue-image {
    flex: 0 0 50%;  /* 50% width for the image */
    border-radius: 15px;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 400px;  /* Adjust image height */
    object-fit: cover;
    border-radius: 15px; /* Rounded corners for image */
}

/* For screens 1000px and smaller */
@media (max-width: 1000px) {
    .sectionx {
        padding: 50px 20px; /* Slightly reduce padding for smaller screens */
    }

    /* Room List Layout Adjustments */
    .room-list {
        flex-direction: column; /* Stack the rooms vertically on smaller screens */
        gap: 20px; /* Adjust the gap between rooms */
    }

    .room {
        width: 100%; /* Full width for each room */
    }

    /* Cottages Section Adjustments */
    .cottage-wrapper {
        gap: 20px; /* Reduce gap between cottage items */
        flex-direction: column; /* Stack cottage items vertically */
    }

    .cottage-left, .cottage-right {
        width: 100%; /* Full width for each section */
        text-align: center; /* Center the content */
    }

    .cottage-image {
        height: 300px; /* Reduce image height for smaller screens */
    }

    .venue-wrapper {
        flex-direction: column; /* Stack the venue info and image */
        align-items: center;
    }

    .venue-info, .venue-image {
        flex: 1 1 100%; /* Full width for both venue info and image */
    }

    .venue-info h3.venue-name {
        font-size: 1.8rem; /* Smaller font for venue name */
    }

    .venue-info .price, .venue-info .downpayment {
        font-size: 1.2rem; /* Adjust pricing font size */
    }

    .venue-info .description {
        font-size: 1rem; /* Adjust description font size */
    }

    /* Room Section */
    .room-title {
        font-size: 1.4rem; /* Smaller room title font size */
    }

    .room-price {
        font-size: 1.1rem; /* Smaller room price font size */
    }

    .room-description {
        font-size: 0.9rem; /* Adjust room description font size */
    }

    .room-buttons .room-button {
        font-size: 0.9rem; /* Smaller button font size */
    }
}

/* For screens 768px and smaller */
@media (max-width: 768px) {
    .sectionx {
        padding: 40px 10px; /* Further reduce padding for very small screens */
    }

    /* General Layout Adjustments */
    .section-title, .section-titles {
        font-size: 2.5rem; /* Reduce font size for section titles */
    }

    .section-description, .section-descriptions {
        font-size: 1rem; /* Adjust section descriptions */
    }

    .content-wrapper {
        flex-direction: column; /* Stack content vertically */
    }

    .description-left {
        flex: 0 0 100%; /* Full width for description */
        text-align: center; /* Ensure text is centered */
    }

    .image-right {
        flex: 0 0 100%; /* Full width for image */
        margin-top: 20px; /* Add space between description and image */
        height: auto; /* Allow the height to adjust based on the image aspect ratio */
    }

    /* Make sure the image retains its aspect ratio */
    .image-right img {
        width: 100%; /* Ensure the image fits within the container */
        height: auto; /* Maintain the aspect ratio */
        object-fit: cover; /* Ensure the image is responsive */
    }.content-wrapper {
        flex-direction: column; /* Stack content vertically */
    }

    .description-left {
        flex: 0 0 100%; /* Full width for description */
        text-align: center; /* Ensure text is centered */
    }

    .image-right {
        flex: 0 0 100%; /* Full width for image */
        margin-top: 20px; /* Add space between description and image */
        height: auto; /* Allow the height to adjust based on the image aspect ratio */
    }

    /* Make sure the image retains its aspect ratio */
    .image-right img {
        width: 100%; /* Ensure the image fits within the container */
        height: auto; /* Maintain the aspect ratio */
        object-fit: cover; /* Ensure the image is responsive */
    }

    /* Cottages Section */
    .cottage-wrapper {
        gap: 15px; /* Adjust gap */
        flex-direction: column; /* Stack elements vertically */
    }

    /* Room List Adjustments */
    .room-list {
        flex-direction: column; /* Stack rooms vertically */
        gap: 15px;
    }

    .room {
        width: 100%; /* Full width for each room */
    }

    /* Cottage Section Adjustments */
    .cottage-image {
        height: 250px; /* Adjust image height */
    }

    .cottage-title {
        font-size: 1.6rem; /* Adjust cottage title font size */
    }

    .cottage-price {
        font-size: 1.3rem; /* Adjust price font size */
    }

    .cottage-description {
        font-size: 1.1rem; /* Adjust description font size */
    }

    /* Venue Section Adjustments */
    .venue-wrapper {
        flex-direction: column; /* Stack the venue info and image */
    }

    .venue-info, .venue-image {
        flex: 1 1 100%; /* Full width for both venue info and image */
    }

    .venue-info h3.venue-name {
        font-size: 1.8rem; /* Adjust venue name font size */
    }

    .venue-info .price, .venue-info .downpayment {
        font-size: 1.3rem; /* Adjust price and downpayment font size */
    }

    .venue-info .description {
        font-size: 1.1rem; /* Adjust description font size */
    }
}

/* For screens 480px and smaller */
@media (max-width: 480px) {
    .sectionx {
        padding: 30px 5px; /* Further reduce padding */
    }

    /* Title Adjustments */
    .section-title, .section-titles {
        font-size: 1.8rem; /* Make titles smaller */
    }

    .content-wrapper {
        padding: 10px; /* Reduce padding for smaller screens */
    }

    .description-left {
        font-size: 14px; /* Adjust text size for readability */
        padding: 10px; /* Add some padding around the text */
    }

    .image-right {
        margin-top: 15px; /* Reduce the space between description and image */
    }

    .image-right img {
        width: 100%; /* Ensure the image takes full width */
        height: auto; /* Keep the aspect ratio */
        object-fit: cover; /* Maintain aspect ratio without stretching */
    }

    /* Room Layout Adjustments */
    .room-title {
        font-size: 1.2rem; /* Smaller room title font size */
    }

    .room-price {
        font-size: 1rem; /* Smaller room price font size */
    }

    .room-description {
        font-size: 0.9rem; /* Adjust room description font size */
    }

    .room-buttons .room-button {
        font-size: 0.9rem; /* Smaller button font size */
    }

    .cottage-title {
        font-size: 1.4rem; /* Smaller title font size for cottages */
    }

    .cottage-price {
        font-size: 1.2rem; /* Smaller price font size for cottages */
    }

    .cottage-description {
        font-size: 1rem; /* Smaller description font size for cottages */
    }

    /* Venue Section Adjustments */
    .venue-info h3.venue-name {
        font-size: 1.6rem; /* Smaller venue name font */
    }

    .venue-info .price, .venue-info .downpayment {
        font-size: 1.2rem; /* Adjust price and downpayment font size */
    }

    .venue-info .description {
        font-size: 1rem; /* Adjust description font size */
    }
}


/* .pool-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.pool-title {
    font-size: 2rem;
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 10px;
}

.pool-left, .pool-right {
    flex: 0 0 48%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.pool-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
} */
