﻿/* ====================== JOIN US SECTION LAYOUT ========================= */
.join-us-section {
    position: relative;
    width: 100%;
    background: var(--np-white);
    background-image: url("/images/newDesign/aboutPage/joinUs/join-us-bg-section.svg");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: bottom center;
    padding: 60px 0 180px 0;
    min-height: 550px;
}
/* ====================== END LAYOUT ========================= */



/* ====================== JOIN US TITLE ========================= */
.join-us-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.join-us-title {
    font-size: var(--fs-6xl);
    font-family: var(--font-header);
    font-weight: 900;
    color: var(--np-accent1);
    margin-bottom: 60px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.join-icon {
    width: 82px;
    height: 82px;
    margin: 0 20px;
}
/* ====================== END TITLE ========================= */



/* ====================== JOIN US CARDS ========================= */
.join-us-roles {
    display: flex;
    justify-content: space-evenly;
    gap: 60px;
    flex-wrap: wrap;
}

.join-card {
    width: 440px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
/* ====================== END CARDS ========================= */



/* ====================== JOIN US PHOTO WRAPPERS ========================= */
.join-photo-wrapper {
    position: relative;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: var(--np-warm_beige);
    overflow: visible;
}

    .join-photo-wrapper .photo {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 50%;
    }

    .join-photo-wrapper::after {
        content: "";
        position: absolute;
        inset: -4px;
        z-index: 2;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        pointer-events: none;
    }

.join-performer-border::after {
    background-image: url("/images/newDesign/aboutPage/joinUs/wavy-border-circle-turquoise.svg");
}

.join-owner-border::after {
    background-image: url("/images/newDesign/aboutPage/joinUs/wavy-border-circle-orange.svg");
}
/* ====================== END PHOTO WRAPPERS ========================= */



/* ====================== JOIN US CARD BODY ========================= */
.join-card-body {
    width: 440px;
    min-height: 270px;
    margin: -60px auto 0;
    position: relative;
    z-index: 10;
    padding: 25px 20px 30px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 5px 5px rgba(0,0,0,0.30));
}

    .join-card-body h3 {
        font-size: var(--fs-3xl);
        font-weight: 900;
        margin-bottom: 15px;
        color: var(--np-white);
    }

    .join-card-body p {
        font-size: var(--fs-xl);
        margin-bottom: 25px;
        color: var(--np-white);
        font-style: italic;
    }

.card-body-turquoise {
    background-image: url("/images/newDesign/aboutPage/joinUs/wavy-bg-turquoise.svg");
}

.card-body-orange {
    background-image: url("/images/newDesign/aboutPage/joinUs/wavy-bg-orange.svg");
}
/* ====================== END CARD BODY ========================= */



/* ====================== JOIN BUTTON ========================= */
.join-btn {
    background: var(--np-green);
    color: var(--np-white);
    padding: 12px 28px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: var(--fs-lg);
    border: 2px solid var(--np-dark);
    transition: background .25s ease, transform .25s ease;
    font-weight: bold;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 15;
    width: 70%;
}

    .join-btn:hover {
        transform: translate(-50%, -4px);
        background: var(--np-accent2);
    }

    .join-btn,
    .join-btn:visited,
    .join-btn:hover,
    .join-btn:active,
    .join-btn:focus {
        color: var(--np-white) !important;
        text-decoration: none !important;
    }

    .join-btn img {
        width: 22px;
        height: 22px;
    }
/* ====================== END BUTTON ========================= */



/* ====================== JOIN US RESPONSIVE ========================= */
@media (max-width: 900px) {
    .join-us-title {
        font-size: var(--fs-4xl);
    }

    .join-photo-wrapper {
        width: 240px;
        height: 240px;
    }

    .join-card {
        width: 300px;
    }
}
/* ====================== END RESPONSIVE ========================= */
