/* Custom Styles for Peshtigo Pub & Grill */

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Base Typography */
body {
    font-family: 'Inter', sans-serif;
    background-color: #F9F7F2; /* Cream */
    color: #1a1a1a;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: opacity 0.3s ease-in-out;
}

#mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

/* Subtle Hover Effects */
a {
    transition: color 0.2s ease;
}

/* Image Placeholder Fallback */
img {
    max-width: 100%;
    height: auto;
}

/* Focus Styles for Accessibility */
a:focus-visible, button:focus-visible {
    outline: 2px solid #047857;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Scroll Reveal Utility Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .animate-fade-in-up {
        animation: none;
    }
}
