.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

#mobile-menu {
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    padding: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0.1);
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 1000;
    margin: 16px;
    width: calc(100vw - 32px);
    border-radius: 16px;
}