/* Additional custom styles beyond Tailwind */

/* Smooth transitions for all interactive elements */
a, button, input, textarea, select {
    transition: all 0.3s ease;
}

/* Selection color */
::selection {
    background: rgba(200, 149, 46, 0.3);
    color: #0a1628;
}

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

/* Prevent layout shift on images */
img {
    max-width: 100%;
    height: auto;
}

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