/* Drawer Animation Logic */
#contact-drawer {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-100%);
}

#contact-drawer.open {
    transform: translateY(0);
}

/* Footer Hover State */
footer a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
