/*
 * Multimedia Technology / FH Salzburg
 * Project: Multimedia Projekt 1 -> Bridgex
 * Author: Mihaela Popadic
 */

/* CONTAINER */
.profile-container{
    max-width:920px;
    margin:clamp(40px, 6vw, 90px) auto;
    padding:0 clamp(16px, 4%, 32px);
}

/* BOX */
.profile-box{
    background:#fff;
    padding:clamp(28px, 5vw, 50px) clamp(24px, 5vw, 50px);
    border-radius:16px;
    box-shadow:0 10px 32px rgba(0,0,0,0.06);
}

/* HEADER */
.small-title{
    font-size:11px;
    letter-spacing:2.5px;
    color:#2b7b8c;
    margin-bottom:10px;
    text-transform:uppercase;
    font-weight:700;
}

.profile-box h1{
    font-size:clamp(24px, 3.5vw, 36px);
    margin-bottom:6px;
    font-weight:800;
}

.subtitle{
    color:#666;
    font-size:15px;
    line-height:1.6;
    margin-bottom:30px;
}

/* SECTION */
.section{
    margin-bottom:32px;
}

.section h3{
    font-size:12px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:#2b7b8c;
    margin-bottom:12px;
    font-weight:700;
}

.section p{
    color:#444;
    line-height:1.7;
    font-size:15px;
}

/* SKILLS */
.skills-container{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.skill-tag{
    padding:7px 16px;
    border-radius:50px;
    background:#eaf3f5;
    color:#2b7b8c;
    font-size:13px;
    font-weight:600;
}

.profile-image{
    width:110px;
    height:110px;
    border-radius:12px;
    object-fit:cover;
    margin-bottom:20px;
}

.company-logo{
    width:100%;
    max-width:260px;
    height:120px;
    object-fit:contain;
    display:block;
    margin-top:10px;
}

/* INLINE LINKS */
.profile-link{
    color:#2b7b8c;
    font-size:14px;
    font-weight:600;
    text-decoration:underline;
    display:inline-block;
    margin-bottom:20px;
}

.profile-link:hover{
    color:#1f5f6e;
}

/* BUTTONS – rely on general.css .btn for outline style */
.tag-btn{
    display:inline-block;
    padding:8px 16px;
    border-radius:50px;
    background:transparent;
    color:#2b7b8c;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    border:1px solid #2b7b8c;
    text-decoration:none;
    transition:background 0.2s, color 0.2s;
    margin-bottom:20px;
}

.tag-btn:hover{
    background:#2b7b8c;
    color:#fff;
}

.btn-delete{
    display:inline-block;
    padding:8px 16px;
    font-size:13px;
    font-weight:600;
    color:#c0392b;
    text-decoration:none;
    border:1px solid #c0392b;
    border-radius:50px;
    cursor:pointer;
    transition:background 0.2s, color 0.2s;
    margin-right:8px;
}

.btn-delete:hover{
    background:#c0392b;
    color:#fff;
}

/* JOB LIST IN COMPANY PROFILE */
.section .job-card{
    border:1px solid #eee;
    padding:20px 24px;
    border-radius:12px;
    margin-bottom:16px;
    background:#fff;
    transition:box-shadow 0.2s;
}

.section .job-card:hover{
    box-shadow:0 6px 18px rgba(0,0,0,0.07);
}

.section .job-card h4{
    margin-bottom:8px;
    font-size:16px;
    font-weight:700;
}

.section .job-type{
    padding:5px 12px;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
    display:inline-block;
    margin-bottom:12px;
}

.section .full-time{ background:#2b7b8c; color:#fff; }
.section .part-time{ background:#0D333B; color:#fff; }
.section .internship{ background:#3BA2B8; color:#fff; }
.section .project{ background:#45BDD6; color:#fff; }