﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

#picassoFooter {
    background: linear-gradient(to left, #5344d9, #2b404d);
    color: #ffffff;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-section {
    margin: 20px;
    flex: 1;
    min-width: 200px;
}

    .footer-section h3 {
        color: #f0f0f0;
        margin-bottom: 20px;
        font-weight: 600;
        position: relative;
        display: inline-block;
    }

        .footer-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 50%;
            height: 2px;
            background: linear-gradient(90deg, #FFD700, #AFEEEE);
            transition: width 0.3s ease;
        }

        .footer-section h3:hover::after {
            width: 100%;
        }

.footer-navigation ul {
    list-style: none;
    padding: 0;
}

    .footer-navigation ul li {
        margin-bottom: 10px;
    }

.hover-effect {
    color: #ffffff !important;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

    .hover-effect::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -2px;
        left: 0;
        background-color: #FFD700;
        visibility: hidden;
        transform: scaleX(0);
        transition: all 0.3s ease-in-out;
    }

    .hover-effect:hover::before {
        visibility: visible;
        transform: scaleX(1);
    }

    .hover-effect:hover {
        color: #FFD700 !important;
    }



.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .footer-logo .logo {
        width: 100px;
        height: 100px;
        transition: transform var(--transition-speed);
    }



        .footer-logo .logo circle,
        .footer-logo .logo path {
            transition: all var(--transition-speed);
        }

        .footer-logo .logo:hover circle {
            r: 47;
        }

        .footer-logo .logo:hover path {
            d: path('M25 75 Q 50 15 75 75');
        }

    .footer-logo h2 {
        font-family: 'Playfair Display', serif;
        margin-top: 10px;
        font-size: 1.8em;
        background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .footer-logo p {
        margin-top: 5px;
        font-style: italic;
        opacity: 0.8;
    }


.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 10px;
    color: #AFEEEE;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        background-color: #FFD700;
        color: #1a1a1a;
        transform: translateY(-3px);
    }

.footer-art {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
        margin: 10px 0;
    }

        .footer-section h3::after {
            left: 25%;
            width: 50%;
        }

    .social-icons {
        justify-content: center;
    }

    .footer-art {
        position: relative;
        width: 100%;
        height: 150px;
        margin-top: 20px;
    }

    #picassoCanvas {
        width: 100%;
        height: 100%;
    }
}
