/* styles/footer.css */
.footer {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(57, 255, 20, 0.1);
    padding: 1.5rem 0;
    margin-top: auto; /* This helps push the footer to the bottom */
}

/* Add this to your main CSS file or body tag */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-info {
    text-align: center;
    color: var(--light-gray);
}

.contact-item {
    display: inline-block;
    margin: 0 1.5rem;
    color: rgba(224, 224, 224, 0.8);
    font-size: 0.95rem;
}

.name {
    display: inline-block;
    margin: 0 1.5rem;
    color: var(--neon-green);
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(57, 255, 20, 0.1);
}

.copyright {
    color: rgba(224, 224, 224, 0.5);
    font-size: 0.85rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .footer {
        padding: 1rem 0;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-info {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-item, 
    .name {
        margin: 0;
    }
}