/* Mobile CSS for Our Team Page (up to 767px) */

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #3b4a6b;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

/* Hide desktop nav on mobile */
@media (max-width: 768px) {
    .vh-nav-menu {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: block !important;
    }
}

/* Mobile navigation conflicts removed - using inline styles instead */

/* Mobile hero adjustments */
@media (max-width: 768px) {
    .hero-content {
        margin-top: 20px !important;
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* Mobile team grid */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .team-member {
        text-align: center;
    }
    
    .team-member img {
        width: 200px;
        height: 200px;
        margin: 0 auto 1rem;
    }
}

/* Mobile CTA section */
@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 1rem;
        margin-bottom: 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Image loading optimizations */
.member-photo {
    transition: opacity 0.3s ease;
    opacity: 0;
}

.member-photo.loaded {
    opacity: 1;
}

/* Image loading skeleton */
.member-photo:not(.loaded) {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
} 