/* Footer */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding-top: 4em;
    color: var(--color-white);
}

/* Top Section */
.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3em;
    padding: 0 2em 3em;
    max-width: 1200px;
    margin: 0 auto;
}

/* Columns */
.footer-col {
    flex: 1 1 220px;
}

.footer-logo {
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5em;
    animation: fadeInUp 0.8s ease forwards;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 360px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 1em;
    position: relative;
    color: var(--color-white);
}

.footer-title::after {
    content: "";
    display: block;
    width: 35px;
    height: 2px;
    background-color: var(--color-highlight);
    margin-top: 6px;
}

/* Quick Links */
.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 0.6em;
}

.footer-links-list a {
    text-decoration: none;
    color: #bbbbbb;
    font-size: 0.95rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links-list a:hover {
    color: var(--color-highlight);
    padding-left: 6px;
}

/* Social Media */
.footer-social {
    display: flex;
    gap: 1em;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer-social img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.footer-social a:hover {
    transform: translateY(-4px);
    background-color: var(--color-highlight);
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5em 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1em;
}

.footer-left p {
    font-size: 0.85rem;
    color: #bbbbbb;
}

.footer-policy {
    font-size: 0.85rem;
}

.footer-policy a {
    color: #bbbbbb;
    text-decoration: none;
}

.footer-policy a:hover {
    color: var(--color-highlight);
}

/* Developer */
.footer-dev {
    display: flex;
    align-items: center;
    gap: 0.5em;
    text-decoration: none;
    font-size: 0.8rem;
    color: #bbbbbb;
    transition: transform 0.3s ease;
}

.footer-dev img {
    height: 26px;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.footer-dev:hover {
    transform: translateY(-2px);
}

.footer-dev:hover img {
    transform: scale(1.1);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .footer-top {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}