/* =====================================
PROFILE PAGE
===================================== */

body{
    margin:0;
    font-family:Inter,system-ui,-apple-system,sans-serif;
    background:#f5f7fb;
    color:#222;
}

.page{
    padding:30px 0 60px;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:0 24px;
}

/* =====================================
CARD
===================================== */

.profile-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);

}

/* =====================================
COVER
===================================== */

.profile-cover{

    height:220px;

    background:#3fa652;

}

/* =====================================
CONTENT
===================================== */

.profile-content{

    padding:40px 50px 50px;

}

/* =====================================
MESSAGE
===================================== */

.message{

    background:#ecfff0;

    color:#0b8f3b;

    padding:14px 18px;

    border-radius:12px;

    margin-bottom:25px;

    font-weight:700;

}

/* =====================================
HEADER
===================================== */

.profile-header{

    display:flex;

    align-items:flex-end;

    gap:40px;

    margin-top:-90px;

    margin-bottom:40px;

}

.profile-pic{

    width:180px;

    height:180px;

    border-radius:50%;

    object-fit:cover;

    border:8px solid #fff;

    background:#fff;

    box-shadow:
    0 15px 35px rgba(0,0,0,.15);

}

.profile-info{

    flex:1;

}

.profile-name{

    font-size:38px;

    font-weight:800;

    margin-bottom:8px;

    line-height:1.2;

}

.profile-email{

    color:#666;

    font-size:15px;

}

.profile-member{

    display:inline-block;

    margin-top:10px;

    padding:6px 14px;

    border-radius:999px;

    background:#fff5d8;

    color:#b57800;

    font-size:13px;

    font-weight:700;

}

/* =====================================
ACTIONS
===================================== */

.profile-actions{

    margin-top:20px;

    display:flex;

    gap:12px;

    flex-wrap:wrap;

}

.btn-primary,
.btn-secondary{

    height:48px;

    padding:0 20px;

    border-radius:12px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-weight:700;

    transition:.25s;

}

.btn-primary{

    background:#ffba00;

    color:#111;

}

.btn-primary:hover{

    transform:translateY(-2px);

}

.btn-secondary{

    background:#f3f5f7;

    color:#333;

}

.btn-secondary:hover{

    background:#e8ebef;

}

/* =====================================
SECTIONS
===================================== */

.profile-section{

    margin-top:35px;

    padding-top:30px;

    border-top:1px solid #eee;

}

.section-title{

    font-size:22px;

    font-weight:800;

    margin-bottom:18px;

}

/* =====================================
FORM
===================================== */

.profile-section form{

    max-width:700px;

}

.profile-section input{

    width:100%;

    box-sizing:border-box;

    height:52px;

    padding:0 16px;

    margin-bottom:14px;

    border:1px solid #d8dde6;

    border-radius:12px;

    font-size:15px;

    transition:.2s;

}

.profile-section input:focus{

    outline:none;

    border-color:#ffba00;

    box-shadow:
    0 0 0 4px rgba(255,186,0,.15);

}

.profile-section button{

    height:52px;

    padding:0 22px;

    border:none;

    border-radius:12px;

    background:#111;

    color:#fff;

    font-weight:700;

    cursor:pointer;

    transition:.25s;

}

.profile-section button:hover{

    background:#000;

}

/* =====================================
EXPERIENCE
===================================== */

.experience{

    background:#fafafa;

    border:1px solid #ececec;

    border-radius:18px;

    padding:20px;

    margin-bottom:16px;

    transition:.2s;

}

.experience:hover{

    transform:translateY(-2px);

    box-shadow:
    0 10px 25px rgba(0,0,0,.06);

}

.experience strong{

    display:block;

    font-size:18px;

    margin-bottom:6px;

}

.experience-company{

    color:#ff8a00;

    font-weight:700;

    margin-bottom:6px;

}

.experience small{

    display:block;

    color:#777;

    margin-bottom:12px;

}

.experience p{

    margin:0;

    line-height:1.7;

}

/* =====================================
MOBILE
===================================== */

@media(max-width:768px){

    .container{

        padding:0 14px;

    }

    .profile-content{

        padding:25px;

    }

    .profile-header{

        flex-direction:column;

        align-items:center;

        text-align:center;

        margin-top:-70px;

    }

    .profile-pic{

        width:140px;
        height:140px;

    }

    .profile-name{

        font-size:28px;

    }

    .profile-actions{

        justify-content:center;

    }

    .btn-primary,
    .btn-secondary{

        width:100%;

    }

}

/* =====================================
FILE UPLOAD
===================================== */

.upload-row{

    display:flex;

    align-items:center;

    gap:16px;

    flex-wrap:wrap;

    margin-bottom:16px;

}

.file-label{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:52px;

    padding:0 22px;

    border-radius:12px;

    background:#f4f6f8;

    color:#333;

    font-weight:700;

    cursor:pointer;

    transition:.2s;

}

.file-label:hover{

    background:#eceff3;

}

.file-label input{

    display:none;

}

#file-name{

    color:#666;

    font-size:14px;

}



.submit-btn{

    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;
    height:64px;

    padding:0 32px;

    border:none;
    border-radius:999px;

    background:linear-gradient(135deg,#ffca28,#ffb300);
    color:#222;

    font-size:17px;
    font-weight:800;

    cursor:pointer;

    box-sizing:border-box;

    box-shadow:
        0 12px 28px rgba(255,186,0,.35);

    transition:.25s;
}

.submit-btn:hover{

    transform:translateY(-3px);

    box-shadow:
        0 16px 34px rgba(255,186,0,.45);
}