/*
-----------------------------------------
GLOBAL
-----------------------------------------
*/

.wpm-blur {
    filter: blur(10px);
    pointer-events: none;
}

.wpm-blur-content {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
}

.wpm-online-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #28c76f;
    color: #fff;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}
.offcanvas-body .common-btn {
    width: 100%;
    border-radius: 50px;
}
.wpm-profile-lock {
    position: relative;
    margin-bottom: 30px;
}
/* 
.wpm-lock-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(0,0,0,0.5);
    border-radius: 20px;
    text-align: center;
    color: #fff;
} */

/* .wpm-lock-overlay h2 {
    font-size: 30px;
    margin-bottom: 20px;
} */

/*
-----------------------------------------
MEMBER CARDS
-----------------------------------------
*/

.profile-box {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.profile-box:hover {
    transform: translateY(-5px);
}

.profile-box img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.profile-content {
    padding: 20px;
}

.profile-content p {
    color: #000;
}

/*
-----------------------------------------
MEMBERS PAGE
-----------------------------------------
*/

.wpm-members-header {
    margin-bottom: 30px;
}

.wpm-search-box {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.wpm-search-box .form-control {
    height: 55px;
    border-radius: 10px;
    font-size: 13px;
    padding-left: 1rem;
}
/*
==================================================
ROMANTIC ANIMATED BANNER
==================================================
*/

.romantic-banner {

    position: relative;

    overflow: hidden;

    padding: 60px 0;

    background:
        linear-gradient(
            135deg,
            #fff1f3,
            #ffe4ea,
            #fff7f8
        );

}

.romantic-banner-inner {

    position: relative;

    z-index: 5;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 60px;

}

/*
==================================================
BANNER CONTENT
==================================================
*/

.banner-content {

    text-align: center;

    max-width: 650px;

}

.banner-content .title {

    color: #ff5a73;

    font-size: 20px;

    font-weight: 600;

    margin-bottom: 20px;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.banner-content h1 {

    font-size: 55px;

    font-weight: 800;

    line-height: 1.1;

    color: #111;

    margin-bottom: 10px;

}

.banner-content h1 span {

    color: #ff5a73;

    position: relative;

}

.banner-content p {

    font-size: 18px;

    color: #666;

    line-height: 1.8;

}

/*
==================================================
PEOPLE ANIMATION
==================================================
*/

.love-person {

    width: 200px;

    height: 250px;

    border-radius: 40px;

    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.15);

    position: relative;

}

.love-person img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.left-person {

    animation:
        moveRight 4s ease-in-out infinite alternate;

}

.right-person {

    animation:
        moveLeft 4s ease-in-out infinite alternate;

}

@keyframes moveRight {

    from {

        transform: translateX(-40px) rotate(-3deg);

    }

    to {

        transform: translateX(10px) rotate(2deg);

    }

}

@keyframes moveLeft {

    from {

        transform: translateX(40px) rotate(3deg);

    }

    to {

        transform: translateX(-10px) rotate(-2deg);

    }

}

/*
==================================================
FLOATING HEARTS
==================================================
*/

.floating-hearts span {

    position: absolute;

    color: rgba(255,90,115,0.25);

    font-size: 30px;

    animation:
        floatingHeart 8s linear infinite;

}

.floating-hearts span:nth-child(1) {

    left: 10%;

    top: 80%;

    animation-delay: 0s;

}

.floating-hearts span:nth-child(2) {

    left: 25%;

    top: 90%;

    animation-delay: 2s;

}

.floating-hearts span:nth-child(3) {

    left: 50%;

    top: 85%;

    animation-delay: 4s;

}

.floating-hearts span:nth-child(4) {

    left: 75%;

    top: 88%;

    animation-delay: 1s;

}

.floating-hearts span:nth-child(5) {

    left: 90%;

    top: 92%;

    animation-delay: 3s;

}

@keyframes floatingHeart {

    0% {

        transform: translateY(0) scale(1);

        opacity: 0;

    }

    20% {

        opacity: 1;

    }

    100% {

        transform: translateY(-500px) scale(1.8);

        opacity: 0;

    }

}

/*
==================================================
BACKGROUND SHAPES
==================================================
*/

.love-bg-shape {

    position: absolute;

    border-radius: 50%;

    filter: blur(60px);

    opacity: 0.4;

}

.shape-1 {

    width: 300px;

    height: 300px;

    background: #ff5a73;

    top: -100px;

    left: -100px;

}

.shape-2 {

    width: 250px;

    height: 250px;

    background: #ff9db0;

    bottom: -80px;

    right: -80px;

}

.shape-3 {

    width: 180px;

    height: 180px;

    background: #ffd2da;

    top: 40%;

    left: 50%;

    transform: translate(-50%, -50%);

}

/*
==================================================
RESPONSIVE
==================================================
*/

@media(max-width: 991px) {

    .romantic-banner-inner {

        flex-direction: column;

    }
    .love-person.left-person {
        display: none;
    }
    .love-person.right-person {
        display: none;
    }
    .profile-box img {
        height: auto;
        max-height: 185px;
    }
    .banner-content h1 {

        font-size: 48px;

    }

}

@media(max-width: 768px) {

    .romantic-banner {

        padding: 40px 0;

    }

    .love-person {

        width: 180px;

        height: 240px;

    }

    .banner-content h1 {

        font-size: 32px;

    }
    .banner-content .title {
        font-size: 15px;
    }

    .banner-content p {

        font-size: 16px;

    }

}


/*
-----------------------------------------
VIEW TOGGLE
-----------------------------------------
*/

.wpm-view-toggle {
    display: flex;
    gap: 10px;
}

.wpm-view-toggle button {
    border: none;
    background: #eee;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
}

.wpm-view-toggle button.active {
    background: #000;
    color: #fff;
}

/*
-----------------------------------------
LIST VIEW
-----------------------------------------
*/

.wpm-list-layout .wpm-member-item {
    width: 100%;
}

.wpm-list-layout .profile-box {
    display: flex;
    align-items: center;
}

.wpm-list-layout .profile-box img {
    width: 250px;
    height: 250px;
}

.wpm-list-layout .profile-content {
    flex: 1;
}

/*
-----------------------------------------
PROFILE PAGE
-----------------------------------------
*/

.wpm-profile-cover {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.wpm-profile-overlay {
    background: rgba(0,0,0,0.45);
    width: 100%;
    height: 100%;
}

.wpm-profile-header {
    display: flex;
    align-items: flex-end;
    height: 100%;
    padding-bottom: 60px;
    gap: 30px;
}

.wpm-profile-image img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid #fff;
}

.wpm-profile-info {
    color: #fff;
}

.wpm-profile-info h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.wpm-profile-info p {
    font-size: 18px;
}

.wpm-online-status {
    display: inline-block;
    margin-top: 15px;
    background: #28c76f;
    padding: 8px 16px;
    border-radius: 30px;
}

/*
-----------------------------------------
PROFILE CARDS
-----------------------------------------
*/
.bg-color {
    background: linear-gradient(to bottom, #ff5a61 0%, #ff767b 100%);
}
.wpm-profile-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.wpm-profile-card h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.wpm-profile-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.wpm-profile-card ul li {
    margin-bottom: 15px;
}

/*
-----------------------------------------
GALLERY
-----------------------------------------
*/

.wpm-gallery-item {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 15px;
}

.wpm-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/*
-----------------------------------------
PROFILE EDIT
-----------------------------------------
*/

#wpm-gallery-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.wpm-gallery-preview-item {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
}

.wpm-gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*
==================================================
FINAL FORCE BLUR FIX
==================================================
*/

.wpm-blur-wrap {

    position: relative;

    overflow: hidden;

    border-radius: 20px;

    display: block;

    width: 100%;

    padding: 0;

    border: 0;

}

/*
force blur
*/

.wpm-blur-wrap img {

    filter: blur(3px);

    -webkit-filter: blur(3px);

    transform: scale(1.08);

    pointer-events: none;

    user-select: none;

}

/*
overlay
*/

.wpm-login-overlay {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    color: #fff;

    border-radius: 10px;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

}

/*
-----------------------------------------
RESPONSIVE
-----------------------------------------
*/

@media(max-width:768px){

    .wpm-profile-header {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        align-items: center;
    }

    .wpm-profile-info h1 {
        font-size: 30px;
    }

    .wpm-list-layout .profile-box {
        flex-direction: column;
    }

    .wpm-list-layout .profile-box img {
        width: 100%;
    }

}