/* Footer Styles */
.fooodis-footer {
    position: relative;
    background: linear-gradient(to bottom, #1e2127 0%, #171a1f 100%);
    padding: 60px 0 30px;
    overflow: hidden;
    color: #fff;
    margin-top: 50px;
}

/* Bubbles Animation */
.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transform: translateZ(0);
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100%;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    opacity: 0.6;
    background-color: rgba(30, 33, 39, 0.7);
    animation: rise var(--time) ease-in infinite;
    animation-delay: var(--delay);
    left: var(--position);
}

@keyframes rise {
    from {
        bottom: -100%;
        transform: translateX(0);
    }
    to {
        bottom: 100%;
        transform: translateX(var(--distance));
    }
}

.footer-container {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.fooodis-logo-footer {
    max-width: 120px;
    height: auto;
}

.footer-nav-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.footer-nav-item {
    margin-right: 20px;
    margin-bottom: 10px;
}

.footer-nav-item a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-nav-item a:hover {
    color: #e8f24c;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.logoland-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.logoland-logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.footer-powered-by p {
    margin: 0;
    color: #a0a0a0;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #e8f24c;
    color: #1e2127;
    transform: translateY(-3px);
}

.social-link i {
    font-size: 16px;
}

.x-logo {
    width: 18px;
    height: 18px;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-button:hover {
    background-color: #e8f24c;
    color: #1e2127;
    transform: translateY(-3px);
}

.share-button i {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top, .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav-list {
        justify-content: center;
    }
    
    .footer-nav-item {
        margin: 0 10px 10px;
    }
    
    .logoland-container {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .footer-social {
        justify-content: center;
    }
}
