/* Additional custom styles */
@media (max-width: 767px) {
    .hero-asymmetric {
        min-height: auto;
    }
    
    .hero-asymmetric > div:first-child {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-asymmetric > div:last-child {
        height: 50vh;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus, button:focus, input:focus, textarea:focus {
    outline: 2px solid #14b8a6;
    outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .card-hover {
        transition: none;
    }
    
    .card-hover:hover {
        transform: none;
    }
    
    html {
        scroll-behavior: auto;
    }
}
