/* Footer */

.footer {
    width: 100%;
    background-color: #1a1a1a;
    color: white;
    padding: 60px 20px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding-bottom: 40px;
}

.footer-section h3 {
    color: #ccc;
    font-family: "Prompt", sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p {
    color: #ccc;
    font-family: "Prompt", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ccc;
    font-family: "Prompt", sans-serif;
    font-size: 15px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: rgb(200, 0, 0);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: rgb(200, 0, 0);
    transform: translateY(-3px);
}

.footer-logo {
    margin-top: 30px;
}

.footer-logo img {
    width: 150px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo img:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #999;
    font-family: "Prompt", sans-serif;
    font-size: 14px;
    margin: 0;
}

.footer-bottom a {
    color: #999;
    font-family: "Prompt", sans-serif;
    font-size: 14px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.made-by {
    text-align: left;
}

.copyright {
    text-align: right;
}

@media screen and (width <=650px) {

    .footer {
        padding: 40px 15px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-section h3 {
        font-size: 20px;
    }

    .footer-section p {
        font-size: 14px;
    }

    .footer-section ul li a {
        font-size: 14px;
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .made-by,
    .copyright {
        text-align: center !important;
    }
}