/* 
THIS FILE IS DEDICATED ONLY TO VIRTUAL CARD IN PROFILE 
*/


/* RESET */
/* * {
    margin: 0;
    padding: 0;
} */

/* FONTS */
@font-face {
    font-family: 'Roboto';
    src: url(../assets/fonts/Roboto-Regular.ttf);
    font-weight: 400;
}
@font-face {
    font-family: 'Roboto';
    src: url(../assets/fonts/Roboto-Bold.ttf);
    font-weight: 700;
}

/* COLORS */
:root {
    --brand-color: rgb(8, 184, 72);
    --dark: rgb(3, 164, 61);
    --light: rgb(238, 237, 253);
    --light-grey: rgb(211, 211, 245);
    
     /* NEW gradient variable */
     --brand-gradient: linear-gradient(
        135deg,
        rgb(3, 164, 61),
        rgb(8, 184, 72),
        rgb(60, 220, 130)
    );
}

/* CARD CONTAINER */
.profile-card {
    width: 100%;
    max-width: 350px;
    padding: 2rem 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border-radius: 14px;
    background-color: var(--light);
    box-shadow: 0px 3px 8px var(--dark);
    position: relative;
}

/* LOGO */
.card-logo {
    width: 60px;
    position: absolute;
    top: 12px;
    left: 12px;
}

/* PROFILE PIC */
.profile-pic {
    padding: 5px;
    width: 160px;
    border-radius: 90px;
    filter: brightness(75%);
    border: 3px solid var(--brand-color);
}

/* DETAILS SECTION */
/* .details {
    padding: 1rem 0.8rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    background-color: var(--brand-color);
    border-radius: 0 0 14px 14px;
} */
.details {
    padding: 1rem 0.8rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    background: var(--brand-gradient); /* <-- gradient applied */
    border-radius: 0 0 14px 14px;
}



/* ADMIN NAME */
.name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

/* TEXT COLOR / DESIGNATION */
.text-color {
    font-family: 'Roboto';
    font-size: 0.9rem;
    color: var(--light-grey);
}

/* BIO SECTION */
.bio-section {
    width: 100%;
    padding: 0.8rem 1rem 1.2rem 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--dark);
}

.bio-section h2 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

/* BIO LIST */
.bio-list {
    list-style: none;
    padding-left: 0;
    color: var(--light);
    font-size: 0.82rem;
    line-height: 1.25rem;
}

.bio-list li span {
    font-weight: bold;
    color: var(--light-grey);
    display: inline-block;
    width: 110px;
}
