body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* HERO */
.hero-section {
    background: radial-gradient(circle at top left, #343a40 0, #111 50%, #000 100%);
    color: #fff;
}

.hero-section .hero-image {
    max-height: 340px;
    object-fit: cover;
}

/* Utility */
.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.avatar-circle {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

/* Soft badges */
.bg-success-soft {
    background-color: rgba(25, 135, 84, 0.12);
    color: #198754;
}

.bg-warning-soft {
    background-color: rgba(255, 193, 7, 0.12);
    color: #b88600;
}

.bg-info-soft {
    background-color: rgba(13, 202, 240, 0.12);
    color: #0dcaf0;
}

.bg-secondary-soft {
    background-color: rgba(108, 117, 125, 0.12);
    color: #6c757d;
}

/* Navbar active link highlight */
.navbar .nav-link.active {
    font-weight: 600;
}

/* Section spacing on small screens */
@media (max-width: 575.98px) {
    .hero-section {
        padding-top: 6rem;
    }
}
