/* Swift Sail Shipping - Base Styles
   Supplements Tailwind CSS utility classes used in the HTML.
   Keep this file minimal; most styling is done via Tailwind.
*/

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Skip to content (accessibility) */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: #C5A47E;
    color: #fff;
    padding: 0.5rem 1rem;
    z-index: 9999;
    font-size: 0.875rem;
    font-weight: 600;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

/* Print styles */
@media print {
    nav, footer, .bg-primary, button {
        display: none !important;
    }
    body {
        color: #000 !important;
        background: #fff !important;
    }
}
