/* ========== MEAL PREP — SECTION 5: AIRBNB COMFORT ========== */

.mp-airbnb-section {
    background: #0d0a04;
    padding: 10vh 5vw;
    position: relative;
}

.mp-airbnb-container {
    max-width: 1498px;
    margin: 0 auto;
    background: #0d0a04;
    /* Same as background but container for border */
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Slightly more visible border */
    border-radius: 50px;
    padding: 70px 60px;
    /* Slightly tighter padding */
    position: relative;
    overflow: hidden;
}

.mp-airbnb-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Changed from center to allow vertical offset */
    gap: 90px;
    /* Increased from 74px to match specs */
}

/* LEFT: Content Column */
.mp-airbnb-content {
    flex: 0 0 556px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    /* Matched the 40px vertical offset from specs (3903px vs 3863px) */
}

.mp-airbnb-title {
    font-family: 'Jost', sans-serif;
    font-size: 42px;
    /* Slightly reduced for better flow */
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    /* Improved line height */
    margin: 0;
    max-width: 530px;
}

.mp-airbnb-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
    max-width: 556px;
}

/* CTA Button Styling */
.mp-airbnb-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    padding: 10px 10px 10px 28px;
    transition: border-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    width: fit-content;
    min-width: 297px;
    height: 75.7px;
    justify-content: space-between;
}

.mp-airbnb-cta:hover {
    border-color: #e0b973;
    transform: translateY(-2px);
}

.mp-airbnb-cta-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    /* Removed background for direct image use */
    display: flex;
    align-items: center;
    justify-content: center;
}

.mp-airbnb-cta-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* RIGHT: Pictures Column */
.mp-airbnb-pics {
    flex: 1;
    position: relative;
    height: 538px;
}

.mp-airbnb-pic-back {
    position: absolute;
    top: 20px;
    /* Adjusted from 0 to match Pic 1 verticality */
    right: 0;
    width: 701px;
    height: 470px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.mp-airbnb-pic-front {
    position: absolute;
    bottom: -30px;
    /* Pushed down more to match Pic 1 overlapping the container edge */
    left: 60px;
    /* Shifted right to match Pic 1 overlap */
    width: 380px;
    height: 320px;
    border-radius: 30px;
    overflow: hidden;
    z-index: 2;
    border: 8px solid #0d0a04;
    /* Thicker border to match the distinct separation in Pic 1 */
}

.mp-airbnb-pic-back img,
.mp-airbnb-pic-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- Mobile Responsiveness ---- */
@media (max-width: 1200px) {
    .mp-airbnb-section {
        padding: 60px 24px;
    }

    .mp-airbnb-container {
        padding: 60px 30px;
        border-radius: 40px;
    }

    .mp-airbnb-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
        /* Center for mobile */
        gap: 60px;
    }

    .mp-airbnb-content {
        flex: unset;
        align-items: center;
        margin-top: 0;
        /* Clear desktop vertical offset */
        max-width: 100%;
    }

    .mp-airbnb-title {
        max-width: 100%;
        font-size: 38px;
    }

    .mp-airbnb-desc {
        max-width: 100%;
    }

    .mp-airbnb-pics {
        width: 100%;
        max-width: 600px;
        height: 480px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mp-airbnb-pic-back {
        position: relative;
        top: 0;
        width: 100%;
        height: 350px;
    }

    .mp-airbnb-pic-front {
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 280px;
        height: 240px;
    }
}

@media (max-width: 480px) {
    .mp-airbnb-container {
        padding: 40px 20px;
        border-radius: 30px;
    }

    .mp-airbnb-title {
        font-size: 28px;
    }

    .mp-airbnb-desc {
        font-size: 15px;
    }

    .mp-airbnb-pics {
        height: 350px;
    }

    .mp-airbnb-pic-back {
        height: 250px;
    }

    .mp-airbnb-pic-front {
        width: 200px;
        height: 180px;
        left: 50%;
        transform: translateX(-50%);
        bottom: -10px;
        border-width: 5px;
    }
}