/* Existing CSS */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    height: 100vh;
}

.center-container {
    text-align: center;
}

.logo-container {
    margin-bottom: 20px;
}

.hero-image {
    margin-top: -5rem;
    max-width: 100%;
    height: auto;
    margin-bottom: 5rem;
}

.social-media-icons {
    display: flex;
    justify-content: center;
    gap: 40px; /* Increased gap to 40px */
}

.social-icon img {
    width: 64px; /* Set icon size to 64px */
    height: 64px; /* Set icon size to 64px */
}

.canvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999; /* Ensure it's above the canvas */
    pointer-events: none; /* Allow clicks to pass through by default */
}

canvas {
    position: absolute; /* Change from fixed to absolute */
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    z-index: 1000;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .hero-image {
        margin-top: -2rem; /* Adjust margin for mobile */
        margin-bottom: 2rem; /* Adjust margin for mobile */
    }

    .social-media-icons {
        gap: 20px; /* Reduce gap between icons for mobile */
    }

    .social-icon img {
        width: 48px; /* Reduce icon size for mobile */
        height: 48px; /* Reduce icon size for mobile */
    }

    canvas {
        height: 200px; /* Reduce wave height for mobile */
    }
}