/*
 * footer.css - Footer-Sektion Styles
 * CleanCityPlus Website
 */

footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
    z-index: 5;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

.footer-link {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-link a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    z-index: 6;
    display: inline-block;
    padding: 5px 0;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.footer-link a:hover {
    color: var(--white);
    text-decoration: underline;
    color: var(--secondary-color) !important;
}

/* Social Media Links */
.footer-column .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-column .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column .social-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}
