/* Footer Styles */
footer {
    background: #000;
    color: #ffffff;
    padding: 4rem 2rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.social-links a {
    color: #ffffff;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: left;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin: 0;
}

.footer-link {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-color-2);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-link:hover::after {
    width: 100%;
}

.footer-link:hover {
    color: var(--accent-color-2) !important;
}

.footer-credit {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.credit-logo-container {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.credit-logo {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-credit:hover .credit-logo {
    height: 25px;
    opacity: 1;
    animation: spin 5s linear infinite;
}

.footer-contact-button {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border: 2px solid white;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin: 1rem 0;
}

.footer-contact-button:hover {
    background-color: white;
    color: #000;
    transform: translateY(-2px);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    footer {
        padding: 3rem 1rem 1.5rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        padding: 0 1rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .social-links {
        gap: 1.5rem;
    }

    .social-links a {
        font-size: 1.5rem;
    }

    .footer-contact-button {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 1rem;
    }

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

    .footer-credit {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
    }
} 