/* Footer */
footer {
    background-color: #000000;
}

.footer-container {
    display: grid;
    gap: 4rem 2rem;
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo a {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
}

.footer-col p {
    max-width: 300px;
    margin-bottom: 2rem;
    color: #737373;
    font-size: 0.9rem;
}

.footer-col a {
    color: #ffffff; 
    font-size: 1.2rem; 
    text-decoration: none; 
}

.footer-col a:hover {
    color: #737373; 
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-socials a {
    padding: 5px 10px;
    font-size: 1.5rem;
    color: #000000;
    background-color: #ffffff;
    border-radius: 10px;
    text-decoration: none;
}

.footer-socials a:hover {
    color: #ffffff;
    background-color: #c8102e;
}

.footer-col h4 {
    font-family: "Poppins", Arial, sans-serif;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
}

.footer-links {
    display: grid;
    gap: 1rem;
    list-style: none;
}

.footer-links a {
    color: #737373;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bar {
    padding: 1rem;
    border-top: 1px solid #ffffff;
    font-size: 0.9rem;
    color: #737373;
    text-align: center;
    margin-top: 0;
}

/* Media Queries for Footer */
@media (min-width: 540px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-col:nth-child(1) {
        grid-column: 1 / 3;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        align-items: center;
        text-align: center;
    }

    .footer-col p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-socials {
        justify-content: center;
    }
}