@charset "UTF-8";

/* ==========================================================================
   Estilos de Diseño Premium para Directorio Escolar - ITIZ
   ========================================================================== */

body {
    font-family: 'Open Sans', sans-serif;
}

.directorio-header h1, 
.directory-container .name,
.header-titulo {
    font-family: 'Montserrat', sans-serif;
}

/* Hero Header con degradado premium e institucional */
.directorio-header {
    background: linear-gradient(135deg, #1b396a 0%, #0d2142 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    margin-top: 0px !important;
}

.directorio-header::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.max-width-600 {
    max-width: 600px;
}

/* Buscador Estilizado */
.search-box-container {
    border: 1px solid rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.search-box-container:focus-within {
    box-shadow: 0 10px 25px rgba(27, 57, 106, 0.15) !important;
    border-color: #1b396a;
}

.search-box-container input:focus {
    box-shadow: none;
    outline: none;
}

/* Tarjetas de colaboradores de alta calidad visual */
.card-directorio-custom {
    border-radius: 12px;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #ffffff;
}

.card-directorio-custom:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

/* Detalles internos de las Cards */
.badge-primary-light {
    background-color: #f0f4fa;
    color: #1b396a;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.avatar-icon-mini {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
}

.tracking-wider {
    letter-spacing: 0.8px;
}

/* Enlaces de correo interactivos */
.email-link {
    background-color: #f8f9fa;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.email-link:hover {
    background-color: #eef3fc;
    border-color: rgba(27, 57, 106, 0.15);
    text-decoration: none;
}

.email-link:hover .email-text {
    color: #1b396a;
    font-weight: 500;
}

.text-light-gray {
    color: #dee2e6;
}

/* Adaptación del margen por menús flotantes */
@media (max-width: 992px) { .directorio-header { margin-top: 70px !important; } }
@media (max-width: 768px) { .directorio-header { margin-top: 60px !important; } }
@media (max-width: 576px) { .directorio-header { margin-top: 50px !important; } }