/* Resort Living Section */
.resort-living-section {
    background-color: #000;
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.resort-living-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0 2rem;
}

.resort-living-content {
    max-width: 45%;
    padding-right: 3rem;
}

.resort-living-intro {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #bda780;
    margin-bottom: 1rem;
}

.resort-living-title {
    font-family: 'GFS Didot', serif;
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 400;
}

.resort-living-description {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    line-height: 2;
    letter-spacing: 2px;
    color: #cccccc;
    font-weight: 300;
}

.resort-living-image {
    max-width: 55%;
    flex-shrink: 0;
}

.resort-living-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 991px) {
    .resort-living-container {
        flex-direction: column;
        text-align: center;
    }

    .resort-living-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .resort-living-image {
        max-width: 85%;
    }

    .resort-living-title {
        font-size: 2.6rem;
    }
}

@media (max-width: 767px) {
    .resort-living-section {
        padding: 3rem 0;
    }

    .resort-living-title {
        font-size: 2.1rem;
    }

    .resort-living-description {
        font-size: 1rem;
    }

    .resort-living-image {
        max-width: 100%;
    }
}
