/* Custom Styles for Vintage Back Roads */

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

/* Fade In Animation */
@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;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

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

::-webkit-scrollbar-track {
    background: #F2EFE9;
}

::-webkit-scrollbar-thumb {
    background: #C06C4B;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #A05235;
}

/* Image Hover Effects */
img {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate-z(0);
    transform: translate-z(0);
}

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

#mobile-menu.hidden {
    display: none;
}

/* Button Focus States */
button:focus, a:focus {
    outline: none;
}

/* Subtle shadow for cards */
.shadow-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
