/* ===== SIMPLIFIED FACULTY HERO ===== */
.faculty-hero-container {
    position: relative;
    width: 100%;
    min-height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: white;
    margin-bottom: 0;
}

.faculty-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*z-index: -2;*/
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(20, 33, 61, 0.8) 0%,
        rgba(20, 33, 61, 0.6) 100%
    );
    z-index: -1;
}

.faculty-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
}

.faculty-hero-title {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.title-underline {
    display: block;
    width: 100px;
    height: 4px;
    background: var(--nsb-accent);
    margin: 1rem auto;
    border-radius: 2px;
}

.faculty-hero-subtitle {
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-regular);
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Faculty Type Toggle Buttons */
.faculty-type-toggle {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.toggle-btn {
    display: inline-block;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: var(--font-weight-medium);
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
}

.toggle-btn.active {
    background: var(--nsb-accent);
    border-color: var(--nsb-accent);
    color: var(--nsb-white);
}

.toggle-btn.active:hover {
    background: var(--nsb-accent);
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faculty-hero-container {
        min-height: 30vh;
    }
    
    .faculty-hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.75rem;
    }
    
    .faculty-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .faculty-type-toggle {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .toggle-btn {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .faculty-hero-title {
        font-size: 1.8rem;
    }
    
    .faculty-hero-subtitle {
        font-size: 1rem;
    }
    
    .faculty-hero-content {
        padding: 1.5rem 1rem;
    }
}