/* Custom Styles */
html {
    scroll-behavior: smooth;
}

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

/* Animation Utilities */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up {
    transform: translateY(30px);
}

.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}

.reveal-active.reveal-up {
    opacity: 1;
    transform: translateY(0);
}

.reveal-active.reveal-left {
    opacity: 1;
    transform: translateX(0);
}

.reveal-active.reveal-right {
    opacity: 1;
    transform: translateX(0);
}

/* Navbar Scroll Effect */
.nav-scrolled {
    background-color: rgba(61, 7, 24, 0.95); /* Plum 950 with opacity */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

#mobile-menu.open {
    max-height: 400px;
    transition: max-height 0.5s ease-in;
}
