/* 
 * Stowaway's Town Tavern - Custom Styles
 * Minimalist, clean, and sophisticated
 */

/* Base Reset & Typography */
html {
    scroll-behavior: smooth;
}

body {
    /* Custom font settings handled by Tailwind, but ensuring base */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0; /* Start hidden */
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f5f5f4; /* stone-50 */
}

::-webkit-scrollbar-thumb {
    background: #d7a9ba; /* plum-300 */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9c445c; /* plum-600 */
}

/* Selection Color */
::selection {
    background: #e8d0d9;
    color: #572436;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Image Loading Placeholder */
img {
    background-color: #e7e5e4; /* stone-200 */
}

/* Focus States for Accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #b45309; /* amber-550 */
    outline-offset: 2px;
}
