/* Additional styles to complement the inline styles */

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

/* Focus styles */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #4f46e5;
    outline-offset: 2px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    animation: fadeInUp 0.6s ease-out;
}

.hero h1 {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero p {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.btn-group {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* Grid improvements */
@supports (display: grid) {
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

/* Print styles */
@media print {
    .banner,
    .nav-links,
    .btn-group {
        display: none;
    }
    
    body {
        color: black;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid white;
    }
    
    .btn-secondary {
        border: 2px solid black;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}