/* Additional custom styles can be added here */
/* Most styles are included in the index.html <style> block for simplicity */

/* Print styles */
@media print {
    .nav,
    .mobile-menu,
    .floating-card {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .section {
        padding: 2rem 0;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .floating-card {
        animation: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid currentColor;
    }
    
    .menu-card {
        border: 2px solid var(--charcoal);
    }
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 3px solid var(--burgundy);
    outline-offset: 2px;
}

/* Smooth scroll offset for fixed nav */
[id] {
    scroll-margin-top: 80px;
}
