/* Custom styles to supplement Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #7B1E32;
}

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

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

/* Image Aspect Ratios */
img {
    max-width: 100%;
    height: auto;
}
