/* ===== FOOTER GLASSMORPHIC ===== */
.footer-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    font-size: 14px;
    animation: fadeInFooter 1s ease;
    padding-bottom: 10px;
}

@keyframes fadeInFooter {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== LOGO PROMOS ===== */
.footer-logo {
    width: 70px;
    height: auto;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.3));
    transition: transform 0.4s ease, filter 0.4s ease;
}

    .footer-logo:hover {
        transform: scale(1.1);
        filter: drop-shadow(0 0 12px rgba(255,255,255,0.7));
    }

/* ===== LOGO AZIENDA SVILUPPO ===== */
.footer-logo-dev {
    width: 120px;
    height: auto;
    opacity: 0.9;
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.3));
    transition: transform 0.3s ease, opacity 0.3s ease;
}

    .footer-logo-dev:hover {
        opacity: 1;
        transform: scale(1.05);
    }

/* ===== LINK FOOTER ===== */
.footer-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-link:hover {
        color: #00bfff;
        text-decoration: underline;
    }

/* ===== TESTI E STRUTTURA ===== */
.footer-glass h6 {
    font-weight: 600;
    color: #fff;
}

.footer-glass p {
    color: #ddd;
    margin-bottom: 0.4rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .footer-glass {
        font-size: 13px;
        text-align: center;
    }

    .footer-logo, .footer-logo-dev {
        width: 60px;
    }

    .footer-glass .row {
        flex-direction: column;
    }
}
