/* team-styles.css or styles.css */

/* Hide nav links and show hamburger on mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #181818;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        z-index: 1000;
    }
    .nav-links.active {
        display: flex;
    }
    .hamburger {
        display: block;
        cursor: pointer;
    }
    .navbar {
        position: relative;
    }
}

/* Default: show nav links, hide hamburger */
.nav-links {
    display: flex;
    gap: 1.5rem;
}
.hamburger {
    display: none;
}/* Estilos específicos para la página de Staff */
        .staff-section {
            background-color: #0f1923;
            padding: 60px 0;
        }
        
        .staff-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-top: 40px;
            justify-items: center;
        }
        
        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 1.5rem;
            color: var(--light);
            animation: bounce 2s infinite;
            cursor: pointer;
}
        .staff-card {
            background: #181a20cc;
            border-radius: 18px;
            box-shadow: 0 4px 24px 0 rgba(0,0,0,0.18);
            padding: 2.2rem 1.2rem 1.5rem 1.2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 220px;
            max-width: 270px;
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #23262f;
            height: auto;
        }
        
        .staff-card:hover {
            transform: translateY(-6px) scale(1.03);
            box-shadow: 0 8px 32px 0 rgba(0,0,0,0.28);
        }
        
        .staff-photo {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 1rem;
            border: 3px solid #23262f;
            background: #23262f;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .staff-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .staff-info {
            padding: 0;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .staff-info h3 {
            color: #ff4655;
            margin-bottom: 0.3rem;
            font-size: 1.2rem;
            text-align: center;
        }
        
        .staff-details p {
            margin-bottom: 0.5rem;
            color: #ece8e1;
            font-size: 0.97rem;
            text-align: center;
        }
        
        .staff-details strong {
            color: #ff4655;
        }
        
        .staff-social {
            margin-top: 0.4rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            width: 100%;
        }
        
        .staff-social a {
            color: #5865f2;
            font-size: 1.5rem;
            transition: color 0.3s;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .staff-social a:hover {
            color: #ff4655;
        }
        
        .staff-social a .fa-youtube {
            color: #ff0000 !important;
            transition: color 0.2s;
        }
        .staff-social a:hover .fa-youtube {
            color: #ff4655 !important; 
        }
        
        /* Partners styles (migrado de partners-styles) */
.partners-leadership {
    text-align: center;
    margin-bottom: 2rem;
}

.partners-leadership p {
    color: #ece8e1;
    font-size: 1.05rem;
    margin: 0 auto;
    max-width: 600px;
}

.section-title {
    color: #ff4655;
    font-family: 'Tektur', 'Oxanium', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.apply-partner-section {
    text-align: center;
    margin-top: 40px;
}

.apply-partner-section h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-family: 'Tektur', 'Oxanium', Arial, sans-serif;
}

.apply-partner-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 25px;
    background: #e63946;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
    font-size: 1rem;
}

.apply-partner-link:hover {
    background: #ff4655;
    color: #fff;
}

@media (max-width: 768px) {
    .partners-leadership p {
        font-size: 0.98rem;
    }
    .section-title {
        font-size: 1.3rem;
    }
    .staff-grid {
        grid-template-columns: 1fr;
    }
    .staff-card {
        max-width: 350px;
        width: 100%;
    }
    .staff-photo {
        width: 130px;
        height: 130px;
    }
}

body {
    background: #0f1923;
}

.main-footer-separator {
    border: none;
    border-top: 2px solid #bfae9b;
    margin: 48px auto 32px auto;
    width: 80%;
    opacity: 0.25;
    background: #0f1923;
    display: block;
}
