﻿/* === FOOTER === */

.modern-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

    .modern-footer::before {
        content: '';
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(108, 92, 231, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
        z-index: 1;
    }

.footer-content {
    position: relative;
    z-index: 2;
}

.dev-link {
    text-decoration: underline;
    color: inherit;
    cursor: pointer;
}

    .dev-link:hover {
        color: #007bff;
    }

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3436;
    text-decoration: none;
}

.footer-title {
    color: #2d3436;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

    .footer-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, #6c5ce7, transparent);
    }

.contact-info {
    list-style: none;
    padding: 0;
}

    .contact-info li {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .contact-info i {
        color: #6c5ce7;
        width: 20px;
    }

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d3436;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

    .social-icon:hover {
        transform: translateY(-3px);
        color: #6c5ce7;
        box-shadow: 0 5px 15px rgba(108, 92, 231, 0.2);
    }

.quick-links {
    display: grid;
    gap: 1rem;
    padding: 0;
    list-style: none;
}

    .quick-links a {
        color: #2d3436;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 5px;
    }

        .quick-links a:hover {
            color: #6c5ce7;
            transform: translateX(5px);
        }

        .quick-links a::before {
            opacity: 0;
            transition: all 0.3s ease;
        }

        .quick-links a:hover::before {
            opacity: 1;
        }

.row-footer {
    display: flex;
    justify-content: space-around;
    padding: 0;
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: 10px;
}



.footer-bottom {
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

    .footer-bottom p {
        margin: 0;
        color: #6c757d;
    }

    .footer-bottom a {
        color: #6c5ce7;
        text-decoration: none;
    }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

@media (max-width: 768px) {
    .row-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 15px;
    }

    .container {
        padding: 10px;
    }

    .row-footer {
        padding: 0;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .contact-info li {
        font-size: 14px;
    }

    .social-links {
        justify-content: flex-start;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

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

    .footer-bottom p {
        font-size: 13px;
    }
}