﻿/* =========================================================
   ULTRA PREMIUM BJP STYLE – PARTY PRESIDENTS
========================================================= */

.party-presidents-section {
    position: relative;
    width: 100%;
    height: 520px;
    background: #183c5c;
    overflow: hidden;
}

/* ================= SWIPER ================= */

.partySwiper {
    height: 100%;
    padding: 30px 0;
}

    .partySwiper .swiper-wrapper {
        align-items: center;
    }

    .partySwiper .swiper-slide {
        width: 380px;
        height: 460px;
        border-radius: 14px;
        overflow: hidden;
        position: relative;
        transition: transform 0.5s ease, opacity 0.5s ease;
        box-shadow: 0 25px 60px rgba(0,0,0,0.5);
        opacity: 0.6;
        transform: scale(0.9);
    }

/* Ensure slide is positioning parent */
.party-slide {
    position: relative;
}

.partySwiper .swiper-slide-active {
    transform: scale(1.05);
    opacity: 1;
    z-index: 5;
}

/* ================= IMAGE ================= */

.party-image-container {
    position: absolute;
    inset: 0;
}

.party-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================= ZOOM EFFECT ================= */

.zoom-effect {
    transition: transform 6s ease;
}

.swiper-slide-active .zoom-effect {
    transform: scale(1.08);
}

/* ================= OVERLAY ================= */

.party-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.8) );
}

/* ================= TOP TEXT CONTENT ================= */

.party-content {
    position: absolute;
    bottom: 30px; /* card के बिल्कुल top */
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 50;
    padding: 0 15px;
    pointer-events: none;
}

/* NAME */

.party-name {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin: 0;
    text-shadow: 0 4px 14px rgba(0,0,0,0.75);
}

/* TENURE */

.party-tenure {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    margin-top: 6px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

/* ================= SOCIAL ================= */

.party-social {
    position: absolute;
    right: 15px;
    top: 40%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 20;
}

    .party-social a {
        width: 36px;
        height: 36px;
        background: rgba(255,255,255,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #fff;
        transition: all 0.3s ease;
    }

        .party-social a:hover {
            background: #ff6a00;
        }

/* ================= BIG BACKGROUND TEXT ================= */

.party-big-title {
    position: absolute;
    bottom: 20px;
    left: 50px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(255,255,255,0.07);
    pointer-events: none;
    user-select: none;
}

/* ================= NAVIGATION ================= */

.swiper-button-prev,
.swiper-button-next {
    color: #ffffff;
}

/* ================= MOBILE ================= */

@media (max-width:768px) {

    .party-presidents-section {
        height: 460px;
    }

    .partySwiper .swiper-slide {
        width: 300px;
        height: 380px;
    }

    .party-name {
        font-size: 24px;
    }

    .party-tenure {
        font-size: 14px;
    }
}
