.party-room-section {
    background-color: #000000;
    padding: 70px 0;
}

.party-room-flex {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ===== متن سمت چپ ===== */
.party-room-main-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 56px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.party-room-sub-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 37px;
    color: #e69b3c;
    line-height: 1.3;
    margin-bottom: 16px;
}

.party-room-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 14px;
}

.party-room-text:last-of-type {
    margin-bottom: 28px;
}

.party-room-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.party-room-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    padding: 13px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.party-room-btn-primary {
    background-color: #e69b3c;
    color: #1a1006;
    border: 1px solid #e69b3c;
}

.party-room-btn-primary:hover {
    background-color: #d4872f;
    color: #1a1006;
}

.party-room-btn-outline {
    background-color: transparent;
    color: #e69b3c;
    border: 1px solid #e69b3c;
}

.party-room-btn-outline:hover {
    background-color: rgba(230, 155, 60, 0.1);
    color: #e69b3c;
}

/* ===== گالری سمت راست ===== */
.party-room-media {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.party-room-swiper {
    width: 100%;
    padding: 20px 0;
    overflow: visible;
}

.party-room-swiper .swiper-slide {
    width: 65%;
    max-width: 340px;
    border-radius: 16px;
    overflow: hidden;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.party-room-swiper .swiper-slide-active {
    opacity: 1;
}

.party-room-swiper .swiper-slide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.party-room-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.party-room-prev,
.party-room-next {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(230, 155, 60, 0.5);
    color: #e69b3c;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 15px;
}

.party-room-prev:hover,
.party-room-next:hover {
    background-color: rgba(230, 155, 60, 0.15);
}

/* ===== دسکتاپ (992px به بالا) ===== */
@media (min-width: 992px) {
    .party-room-section {
        padding: 100px 0;
    }

    .party-room-flex {
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }

    .party-room-content {
        flex: 0 0 42%;
        max-width: 42%;
    }

    .party-room-media {
        flex: 0 0 54%;
        max-width: 54%;
        overflow: hidden;
    }

    .party-room-swiper .swiper-slide {
        max-width: 360px;
    }

    .party-room-swiper .swiper-slide img {
        height: 360px;
    }
}
