/* Custom styles that complement Tailwind */

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

/* Selection color */
::selection {
    background: rgba(4, 120, 87, 0.2);
    color: #064e3b;
}

/* Body background gradient for visual depth */
body {
    background-image: linear-gradient(180deg, #fefdf8 0%, #fdf9ef 100%);
}

/* Custom focus visible for accessibility */
*:focus-visible {
    outline: 2px solid #047857;
    outline-offset: 2px;
}

/* Image loading placeholder */
img {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

/* 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; }
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Print styles */
@media print {
    nav, .mobile-menu, #contactForm { display: none; }
    .hero-gradient { background: #064e3b !important; }
}
