/* Custom CSS for MUV Workshop 2026 */

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

/* Navbar */
.navbar-brand {
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    color: #555;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #0d6efd;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Offset for fixed navbar */
}

/* Cards */
.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

/* Buttons */
.btn {
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
}

/* List Items */
.list-group-item {
    font-size: 0.95rem;
}

/* Sticky Sidebar */
.sticky-top {
    top: 100px !important;
    /* Clears the navbar comfortably */
    transition: top 0.3s ease;
}

.layer-sidebar {
    z-index: 1020;
}

/* Navbar */
.navbar {
    z-index: 1030;
    /* Ensure navbar is above sidebar */
}

/* Avatars */
.avatar-placeholder {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #6c757d;
    color: white;
    font-size: 1.5rem;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.card:hover img {
    transform: scale(1.05);
}

/* Section Headings */
section h2 {
    position: relative;
    padding-bottom: 0.5rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #0d6efd;
    border-radius: 2px;
}

/* Table */
.table th {
    font-weight: 600;
    background-color: #f8f9fa;
}

.table td {
    vertical-align: middle;
}