/* Custom styles and animations */
html { scroll-behavior: smooth; }

/* Custom font definitions are handled in head */

/* Geometric shape animations */
.shape-1, .shape-2 {
    animation: float 6s ease-in-out infinite;
}
.shape-2 {
    animation-delay: 1s;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Mobile menu transition */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
#mobile-menu.open {
    max-height: 300px;
}

/* Button hover effects */
a, button {
    transition: all 0.3s ease;
}
