/* Custom Animations and Styles */

html {
    scroll-behavior: smooth;
}

/* Entrance Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Navbar Scrolled State */
.nav-scrolled {
    background-color: rgba(245, 245, 240, 0.9);
    backdrop-filter: blur(12px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Mobile Menu Active */
#mobile-menu.active {
    display: block;
    opacity: 1;
}

/* Selection Color */
::selection {
    background-color: rgba(212, 163, 115, 0.3);
}
