/* Custom styles that extend beyond Tailwind */

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #fdfcfa;
}
::-webkit-scrollbar-thumb {
    background: #c6dfb8;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #9cc48a;
}

/* Selection color */
::selection {
    background: #e3efdb;
    color: #2a4222;
}

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

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