/* Custom styles that complement the inline styles in index.html */

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

/* Selection color */
::selection {
    background: rgba(200, 90, 60, 0.3);
    color: #fff;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
    background: #3D3D3D;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #C85A3C;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #C85A3C;
    outline-offset: 2px;
    border-radius: 4px;
}

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

/* Print styles */
@media print {
    nav, .scroll-indicator, .mobile-menu, #menuOverlay {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero-bg {
        background: white !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .menu-card {
        border-width: 2px;
    }
    
    .nav-link::after {
        height: 3px;
    }
}
