/* Harbor View Gifts & Goodies — Custom Styles */

/* 
 * These styles provide additional polish beyond Tailwind CDN.
 * Most layout and utility styles live in index.html's <style> block.
 */

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

/* Print styles */
@media print {
    nav, .mobile-menu, #contactForm, .btn-primary, .btn-secondary {
        display: none !important;
    }
    body {
        background: white !important;
        color: black !important;
    }
}

/* Reduced motion - ensure content is always visible */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (forced-colors: active) {
    .accent-border {
        border: 2px solid ButtonText;
    }
    .btn-primary {
        border: 2px solid ButtonText;
    }
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 3px solid #d45222;
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background: #f5c0a8;
    color: #3D2B1F;
}
