/* Custom Styles for Mochi Munchi */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
}

h1, h2, h3, h4, .font-display {
    font-family: 'Fredoka', sans-serif;
}

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

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

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

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

/* Mobile Menu Animation */
.mobile-link {
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: #E76F51;
}

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

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

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