/* Custom Styles for Paesano's Coffee & Cafe */

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

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

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

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

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

/* Animation Utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Transition */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

#mobile-menu.open {
    max-height: 300px;
}

/* Geometric Shape Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-anim {
    animation: float 4s ease-in-out infinite;
}

/* Focus Styles for Accessibility */
a:focus, button:focus {
    outline: 2px solid #FACC15;
    outline-offset: 2px;
}

/* Responsive Typography Adjustments */
@media (max-width: 768px) {
    .font-display {
        line-height: 1.1;
    }
}
