/* ===========================
   WELCOME CARD
=========================== */
.profile-area {
    display:flex;

    flex-direction:column;

    gap:20px;
    
    animation:
        cardPop .45s cubic-bezier(.34,1.56,.64,1);

}

.welcome-card {

    position: relative;

    width: 100%;

    min-height: 380px;
    height: auto;

    background-color: #FFF8E6;

    background-image:
        radial-gradient(
            rgba(93,53,22,.035) 1px,
            transparent 1px
        );

    background-size: 10px 10px;

    border: 1px solid #dac5b5;

    border-radius: 22px;

    padding: 35px 30px 30px;

    margin-bottom: 30px;

}


/* ===========================
   MOBILE
=========================== */

@media (max-width: 600px) {

    .welcome-card {

        min-height: 0;

        padding: 25px 18px 24px;

        border-radius: 18px;

        margin-bottom: 20px;

    }

}


/* ===========================
   LABEL
=========================== */

.welcome-label {

    position: absolute;

    top: -16px;

    left: 50%;

    transform: translateX(-50%);

    padding: 5px 24px;

    background: #80502B;

    border-radius: 999px;

    color: #FFF8E6;

    font-family: "Fredoka", sans-serif;

    font-weight: 700;

    letter-spacing: .12em;

    font-size: .9rem;

}


/* ===========================
   CONTENT
=========================== */

.welcome-content {
    margin-top: 20px;
    text-align: center;

}


.welcome-content h1 {

    font-family: "Fredoka", sans-serif;

    color: #5D3516;

    font-size: 2.4rem;

    margin-bottom: 10px;


}


.welcome-content p {

    color: #A05A32;

    line-height: 1.8;

    max-width: 600px;

    margin: auto;

}


/* ===========================
   STAFF PREVIEW
=========================== */

.staff-preview {

    margin-top: 3px;

    padding-top: 25px;

}


.staff-preview h2 {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    font-size: 1.3rem;

    margin-bottom: 5px;

    color: #5D3516;

}


.staff-preview h2::before,
.staff-preview h2::after {

    content: "";

    flex: 1;

    height: 2px;

    background: rgba(160,90,50,.35);

}

.staff-preview p {
    margin-top: 0;
    margin-bottom: 35px;

}
.staff-list {

    display: flex;

    justify-content: center;

    gap: 30px;

    flex-wrap: wrap;

}


.staff-mini {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px 18px;

    border-radius: 16px;

    transition: .2s ease;

    margin-bottom: 10px;

    min-width: 0;

}


.staff-mini:hover {

    transform: translateY(-5px);

}


.staff-mini img {

    width: 100px;

    height: 100px;

    max-width: 30vw;
    max-height: 100px;

    aspect-ratio: 1 / 1;

    flex-shrink: 1;

    border-radius: 12px;

    object-fit: cover;

}


.staff-mini h3 {

    font-size: 1rem;

    text-align: left;

}


.staff-mini p {

    font-size: .8rem;

}


/* ===========================
   MOBILE
=========================== */

@media (max-width: 600px) {

    .staff-list {

        gap: 12px;

    }


    .staff-mini {

        width: 100%;

        padding: 10px 12px;

    }


    .staff-mini img {

        width: clamp(60px, 20vw, 90px);

        height: clamp(60px, 20vw, 90px);

        max-width: none;

        max-height: none;

    }


    .staff-mini h3 {

        font-size: .95rem;

    }


    .staff-mini p {

        font-size: .75rem;

    }

}


.id-container {

    display: flex;

    flex-direction: column;

    gap: 30px;

}

/* ===========================
   STAFF ID CARD
=========================== */
/* ===========================
   HIDDEN STAFF CARDS
=========================== */

.hidden-card {

    display: none;

}


.show-card {

    display: block;

    animation: cardPop .45s cubic-bezier(.34,1.56,.64,1);

}


/* ===========================
   CARD APPEAR
=========================== */

.show-card {

    display: block;

    animation:
        cardPop .45s cubic-bezier(.34, 1.56, .64, 1)
        forwards;

}


@keyframes cardPop {

    0% {

        opacity: 0;

        transform:
            scale(.85)
            translateY(30px);

    }


    60% {

        opacity: 1;

        transform:
            scale(1.02)
            translateY(-8px);

    }


    100% {

        opacity: 1;

        transform:
            scale(1)
            translateY(0);

    }

}



/* ===========================
   CARD DISAPPEAR
=========================== */

.hide-card {

    animation:
        cardHide .25s ease
        forwards;

}


@keyframes cardHide {

    0% {

        opacity: 1;

        transform:
            scale(1)
            translateY(0);

    }


    100% {

        opacity: 0;

        transform:
            scale(.85)
            translateY(30px);

    }

}


.id-card,
.jeanne-id-card {

    background-color: #FFF8E6;

    background-image:
        radial-gradient(
            rgba(93,53,22,.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(160,90,50,.03),
            transparent
        );

    background-size:
        8px 8px,
        100% 100%;
    
        margin-bottom: 30px;

}

.id-card {

    width: 100%;

    height: 300px;

    background-color: #FFF8E6;

    border: 1px solid #dac5b5;

    border-radius: 22px;

    overflow: hidden;


}



/* ===========================
   TOPBAR
=========================== */

.id-topbar {

    height: 46px;

    padding: 0 12px 0 4px;

    background: #80502b;

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.id-logo {

    height: 40px;

    width: auto;

    user-select: none;

    pointer-events: none;

}


.employee-id {

    padding: 4px 10px;

    border: 2px solid rgba(255,248,230,.35);

    border-radius: 999px;

    color: #FFF8E6;

    font-size: .75rem;

    font-weight: 700;

    letter-spacing: .08em;

}



/* ===========================
   BODY
=========================== */

.id-body {

    display: grid;

    grid-template-columns: 180px 1fr;

    gap: 30px;

    padding: 28px;

    height: calc(100% - 46px);

}



/* ===========================
   PHOTO
=========================== */

.id-photo {

    display: flex;

    justify-content: center;

    align-items: center;

}


.id-photo img {

    width: 250px;

    height: 200px;

    object-fit: cover;

    border-radius: 18px;
    margin-left: 15px;


}



/* ===========================
   DETAILS
=========================== */

.id-details {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px 0px;

    align-content: center;
    margin-left: 20px;
}


.detail label {

    display: block;

    color: #A05A32;

    font-size: .7rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .08em;

}


.detail p {

    margin-top: 3px;

    color: #5D3516;

    font-weight: 600;

}


/* ===========================
   STATUS / TAGS
=========================== */

.tags {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 8px;

}


.tags span {

    padding: 6px 12px;

    background: #FFDFBA;

    border: 2px solid #5D3516;

    border-radius: 999px;

    color: #5D3516;

    font-size: .8rem;

    font-weight: 600;

}


/* ===========================
   JEANNE STAFF ID CARD
=========================== */

.jeanne-id-card {

    width: 100%;

    height: 300px;

    background-color: #FFF8E6;

    border: 1px solid #dac5b5;

    border-radius: 22px;

    overflow: hidden;

}



/* ===========================
   TOPBAR
=========================== */

.jeanne-id-topbar {

    height: 46px;

    padding: 0 12px 0 4px;

    background: #80502b;

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.jeanne-id-logo {

    height: 40px;

    width: auto;

    user-select: none;

    pointer-events: none;

}


.jeanne-employee-id {

    padding: 4px 10px;

    border: 1px solid rgba(255,248,230,.35);

    border-radius: 999px;

    color: #FFF8E6;

    font-size: .75rem;

    font-weight: 700;

    letter-spacing: .08em;

}



/* ===========================
   BODY
=========================== */

.jeanne-id-body {

    display: grid;

    grid-template-columns: 180px 1fr;

    gap: 30px;

    padding: 28px;

    height: calc(100% - 46px);

}



/* ===========================
   PHOTO
=========================== */

.jeanne-id-photo {

    display: flex;

    justify-content: center;

    align-items: center;

}


.jeanne-id-photo img {

    width: 250px;

    height: 200px;

    object-fit: cover;

    border-radius: 18px;

    margin-left: 15px;

}



/* ===========================
   DETAILS
=========================== */

.jeanne-id-details {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px 0px;

    align-content: center;

    margin-left: 20px;

}


.jeanne-detail label {

    display: block;

    color: #A05A32;

    font-size: .7rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .08em;

}


.jeanne-detail p {

    margin-top: 3px;

    color: #5D3516;

    font-weight: 600;

}



/* ===========================
   TAGS
=========================== */

.jeanne-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 8px;

}


.jeanne-tags span {

    padding: 6px 12px;

    background: #FFDFBA;

    border: 2px solid #5D3516;

    border-radius: 999px;

    color: #5D3516;

    font-size: .8rem;

    font-weight: 600;

}


 /* ===========================
   CONTACT CARD
=========================== */
.contact-card {

    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1.4fr;

    overflow: hidden;

    background: #FFF8E6;

    border: 1px solid #dac5b5;

    border-radius: 18px;

}


/* LEFT */

.contact-info {

    background: #5D3516;

    padding: 15px 25px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.contact-info h2 {

    font-family: "Fredoka", sans-serif;

    color: #FFF8E6;

    font-size: 1.4rem;

    letter-spacing: .08em;

    text-transform: uppercase;

}


/* RIGHT */

.social-section {

    display: flex;

    justify-content: center;
    align-items: center;

    gap: 52px;

    padding: 12px;

}


.social-section a {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    transition:
        transform .2s ease;

}


.social-section a:hover {

    transform: translateY(-3px);

}


.social-section img {

    width: 24px;
    height: 24px;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;

    filter:
        brightness(0)
        saturate(100%)
        invert(23%)
        sepia(35%)
        saturate(900%)
        hue-rotate(350deg)
        brightness(95%)
        contrast(90%);

}


/* ===========================
   MOBILE
=========================== */

@media (max-width: 600px) {

    .social-section {

        gap: 20px;

        padding: 10px;

        flex-wrap: wrap;

    }


    .social-section a {

        width: 40px;
        height: 40px;

        border-radius: 12px;

    }


    .social-section img {

        width: 22px;
        height: 22px;

    }

}