/* ==========================================
   FOOTER - STILE FIERY ORANGE & DARK METAL
   ========================================== */

.site-footer {
    background: #050506;
    border-top: 1px solid rgba(255, 85, 0, 0.25);
    color: #d8d8d8;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 10;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    padding: 80px 0 60px 0;
}

.footer-col h3 {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
    position: relative;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: #FF5500;
    box-shadow: 0 0 10px rgba(255, 85, 0, 0.6);
}

.footer-brand .footer-logo {
    height: 55px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 12px rgba(255, 85, 0, 0.4));
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #a0a5b5;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0a5b5;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #FFB700;
    transform: translateX(6px);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #a0a5b5;
    margin-bottom: 20px;
}

/* Bottone Discord nel Footer */
.footer-discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFB700 0%, #FF5500 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 85, 0, 0.3);
}

.footer-discord-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 183, 0, 0.6);
}

/* Sottopancia del Footer */
.footer-bottom {
    background: #030304;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 20px 0;
    font-size: 0.85rem;
    color: #808595;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-credits {
    color: #FFB700;
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer-bottom-flex {
        justify-content: center;
        text-align: center;
    }
}