/* Student Registry Public Styles */

.students-hero {
    background: linear-gradient(135deg, #1a1410 0%, #3a0a0a 100%);
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.student-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    height: 100%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.student-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(196, 22, 18, 0.15);
}

.student-img-wrapper {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background: #f8f9fa;
    overflow: hidden;
}

.student-img-wrapper img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.student-status-badge {
    position: absolute;
    top: 10px; right: 10px;
    z-index: 2;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.student-body {
    padding: 20px;
}

.student-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1410;
}

.student-id {
    font-size: 0.85rem;
    color: #c41612;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.student-info {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 5px;
}

.student-info i {
    width: 20px;
    color: #c41612;
}

/* Tabs Styling */
.student-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 10px;
    transition: all 0.3s;
}

.student-tabs .nav-link.active {
    background-color: #c41612;
    color: #fff;
    box-shadow: 0 8px 15px rgba(196, 22, 18, 0.3);
}

.filter-section {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.alumni-work {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #dee2e6;
    font-size: 0.85rem;
}
