.footer {
    color: #eaeaea;
    /* Light gray text */
    font-family: 'Roboto', sans-serif;
    /* Font family to match the site */
    display: flex;
    /* Flexbox to center content */
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    padding: 20px;
    /* Add space around the content */
    text-align: center;
    /* Center text alignment */
    margin-top: auto;
    /* Push the footer to the bottom */

}

.footer-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: row;
    /* Align items in a row */
    justify-content: space-evenly;
    /* Distribute space evenly */
    align-items: center;
    /* Center items vertically */
    gap: 20px;
    /* Space between sections */
}

.footer-logo .logo {
    max-width: 150px;
    /* Limit logo size */
}

.footer-social {
    display: flex;
    align-items: start;
    /* Center items vertically */
    justify-content: start;
    /* Center items horizontally */
    gap: 15px;
    /* Space between social links */
    text-align: center;
    /* Ensure text alignment is centered */
    width: 100%;
    /* Optional: span full width for proper centering */
}




.social-link {
    text-decoration: none;
    /* Remove underline */
    color: #eaeaea;
    /* Light gray text */
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #f39c12;
    /* Highlight color on hover */
}

.footer-legal {
    display: flex;
    gap: 15px;
    /* Space between links */
}

.footer-link {
    text-decoration: none;
    color: #b0b0b0;
    /* Slightly darker gray text */
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #f39c12;
    /* Highlight color on hover */
}

.footer-credit {
    text-decoration: none;
    font-size: 14px;
    color: #a0a0a0;
    /* Muted gray text for credit */
}

.credit-name {
    text-decoration: none;
    font-weight: bold;
    /* Highlight programmer's name */
    color: #f39c12;
    /* Accent color */
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: row;
        /* Stack items vertically */
        gap: 15px;
        /* Adjust spacing */
    }

    .footer-social,
    .footer-legal {
        flex-direction: row;
        /* Stack links vertically */
        gap: 10px;
        /* Reduce gap */
    }
}

@media (max-width: 425px) {
    .footer-container {
        width: 100%;
        flex-direction: row;
        /* Align items horizontally */
        justify-content: space-between;
        /* Space between left and right sections */
        align-items: center;
        /* Center vertically */
        gap: 5px;
    }

    .footer-logo {
        flex: 1;
        /* Push the logo to the left */
        text-align: c;
        /* Align logo to the left */
    }

    .footer-social,
    .footer-legal,
    .footer-credit {
        flex: 1;
        /* Ensure space is evenly distributed */
        text-align: c;
        /* Align links and credit to the right */
    }

    .footer-social,
    .footer-legal {
        justify-content: c;
        /* Center the links relative to each other */
        align-items: center;

    }

    .footer-credit {
        text-align: left;
        /* Align to the right */
        font-size: 12px;

    }

    .footer-logo .logo {
        max-width: 100px;
        /* Adjust logo size */
    }
}

@media (max-width: 375px) {
    .footer-container {
        width: 100%;
        flex-direction: row;
        /* Align items horizontally */
        justify-content: space-between;
        /* Space between left and right sections */
        align-items: center;
        /* Center vertically */
        gap: 5px;
    }

    .footer-logo {
        flex: 1;
        /* Push the logo to the left */
        text-align: c;
        /* Align logo to the left */
    }

    .footer-social,
    .footer-legal,
    .footer-credit {
        flex: 1;
        /* Ensure space is evenly distributed */
        text-align: c;
        /* Align links and credit to the right */
    }

    .footer-social,
    .footer-legal {
        justify-content: c;
        /* Center the links relative to each other */
        align-items: center;

    }

    .footer-credit {
        text-align: left;
        /* Align to the right */
        font-size: 10px;
    }

    .footer-logo .logo {
        max-width: 100px;
        /* Adjust logo size */
    }
}


@media (max-width: 320px) {
    .footer-container {
        width: 100%;
        flex-direction: column;
        /* Align items horizontally */
        justify-content: space-between;
        /* Space between left and right sections */
        align-items: center;
        /* Center vertically */
        gap: 5px;
    }

    .footer-logo {
        flex: 1;
        /* Push the logo to the left */
        text-align: c;
        /* Align logo to the left */
    }

    .footer-social,
    .footer-legal,
    .footer-credit {
        flex: 1;
        /* Ensure space is evenly distributed */
        text-align: c;
        /* Align links and credit to the right */
    }

    .footer-social,
    .footer-legal {
        justify-content: c;
        /* Center the links relative to each other */
        align-items: center;

    }

    .footer-credit {
        text-align: center;
        /* Align to the right */
        font-size: 10px;
    }

    .footer-logo .logo {
        max-width: 60px;
        /* Adjust logo size */
    }
}