/* Custom styles — extends Tailwind utilities */

/* Smooth focus outlines */
a:focus-visible, button:focus-visible {
    outline: 2px solid #5eead4;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Selection color */
::selection {
    background: #0d9488;
    color: #fff;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .menu-card { transition: none; }
    .menu-card:hover { transform: none; }
    img { transition: none; }
}

/* Print styles */
@media print {
    #navbar, #mobile-menu, .animate-bounce { display: none; }
    body { color: #000; background: #fff; }
}

/* Ensure images don't overflow rounded containers */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent layout shift on images with aspect ratio */
.rounded-2xl, .rounded-3xl {
    overflow: hidden;
}
