/* Custom styles that extend beyond Tailwind */

/* Smooth focus outlines for accessibility */
*:focus-visible {
    outline: 2px solid #3d6242;
    outline-offset: 2px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f5f3ed;
}
::-webkit-scrollbar-thumb {
    background: #9cc4a3;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #4d7d54;
}

/* Print styles */
@media print {
    nav, .mobile-menu, #contact-form, button {
        display: none !important;
    }
    body {
        color: #000;
        background: #fff;
    }
    .hero-pattern {
        background: #2c3e2d !important;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .fade-in {
        opacity: 1;
        transform: none;
    }
}

/* Selection color */
::selection {
    background-color: #3d6242;
    color: #faf9f6;
}

/* Subtle image hover zoom */
.service-card img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover img {
    transform: scale(1.05);
}
