/* Custom styles for The Donut Station */

/* Smooth scroll offset for fixed nav */
html {
    scroll-padding-top: 80px;
}

/* Selection color */
::selection {
    background-color: #D1FAE5;
    color: #064E3B;
}

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

::-webkit-scrollbar-track {
    background: #FFFDF7;
}

::-webkit-scrollbar-thumb {
    background: #A7F3D0;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6EE7B7;
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
    outline: 3px solid #6EE7B7;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Subtle pattern for hero image overlay */
.hero-image-wrapper {
    background: linear-gradient(135deg, #FFFDF7 0%, #FFF9ED 50%, #D1FAE5 100%);
}

/* Print styles */
@media print {
    nav, footer, .mobile-menu {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}
