/* STAFF SECTION STYLES */
.staff-section {
    padding: 80px 0;
    background-color: #fcfcfc;
    overflow: hidden;
}

.staff-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
.staff-header {
    text-align: center;
    margin-bottom: 60px;
}

.staff-header .badge {
    background: #80002015;
    color: #800020;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.staff-header h1 {
    font-size: 2.8rem;
    color: #333;
    margin: 15px 0;
}

.header-line {
    width: 60px;
    height: 4px;
    background: #D4AF37;
    margin: 20px auto;
}

/* Grid & Card Styling */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.staff-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border-bottom: 4px solid #800020;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.staff-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Icon/Initials Circle */
.card-icon {
    width: 80px;
    height: 80px;
    background: #f4f4f4;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-initials {
    font-style: normal;
    font-size: 1.5rem;
    font-weight: 700;
    color: #800020;
}

.staff-name {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 8px;
}

.staff-designation {
    font-size: 0.9rem;
    color: #777;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Entrance Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .staff-header h1 { font-size: 2rem; }
    .staff-grid { grid-template-columns: 1fr; }
}
