/* Header Nav */
#header-nav .nav-link {
    transition: color 0.3s ease;
}
#header-nav .nav-link:hover {
    color: #000000;
}
#header-nav .btn-action {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#header-nav .btn-action:hover {
    background-color: #F3F4F6;
    border-color: #000000;
}

/* Profile */
#profile .profile-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#profile .profile-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}
#profile .target-bullet {
    width: 6px;
    height: 6px;
    background-color: #000000;
    border-radius: 50%;
    display: inline-block;
}

/* Committees */
#committees .selector-btn {
    transition: all 0.2s ease-in-out;
}
#committees .details-panel {
    min-height: 280px;
    transition: opacity 0.15s ease-in-out;
}

/* Competencies */
#competencies .competency-column {
    border: 1px solid #E5E7EB;
    border-radius: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#competencies .competency-column:hover {
    border-color: #000000;
    background-color: #FAF9F6;
}

/* Experience */
#experience .timeline-node {
    transition: all 0.3s ease;
}
#experience .timeline-node:hover {
    border-color: #000000;
}
#experience .content-collapsed {
    display: none;
}

/* Footprint */
#footprint .footprint-card {
    background-color: #FAF9F6;
    border: 1px solid #E5E7EB;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#footprint .footprint-card:hover {
    border-color: #000000;
    background-color: #FFFFFF;
    transform: translateY(-2px);
}

/* Credentials */
#credentials .patent-badge {
    transition: border-color 0.3s ease;
}
#credentials .patent-badge:hover {
    border-color: #000000;
}

/* Footer */
#footer .footer-link {
    transition: color 0.3s ease;
}
#footer .footer-link:hover {
    color: #ffffff;
}
