/* Tablet Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .info-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .info-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-controls {
        bottom: 20px;
    }
    
    .gallery-prev, .gallery-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .experience-section, .location-section {
        padding: 4rem 0;
    }
}