/* Custom Styles for Comfort Cottage */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #1C1917;
    color: #E6DCCF;
}

/* Animation Utilities */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

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

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

::-webkit-scrollbar-track {
    background: #1C1917;
}

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

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

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