
/* Custom styles */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

/* Custom animation for hover effects */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hover-float:hover {
    animation: float 2s ease-in-out infinite;
}

/* Hide the menu by default on small screens */
#menu {
    display: none;
}

@media  (min-width: 768px) {
    #menu {
        display: flex;
    }
}

/* Show the menu when it has the 'active' class */
#menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 48px; /* Adjust based on your header height */
    right: 0;
    background-color: rgba(17, 24, 39, 0.95); /* Match the nav background */
    width: 60%;
    padding: 10px 20px 10px 20px;
    z-index: 50;
}

/* Adjust the dropdown menu for mobile */
