/* Design by Madison — Custom Styles */
/* All primary styles are in index.html; this file provides additional utility overrides */

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

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

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

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

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

/* Selection color */
::selection {
    background: rgba(232, 93, 81, 0.3);
    color: #1a1a1a;
}

/* Focus visible styles */
*:focus-visible {
    outline: 2px solid #E85D51;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .hero-section, .back-to-top, .mobile-menu {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .section-title, .footer-brand {
        color: #000;
    }
}

/* 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;
    }
    
    .fade-in, .fade-in-left, .fade-in-right {
        opacity: 1;
        transform: none;
    }
}
