/* ==========================================================================
   FOOTER.CSS - Layout & Komponenten für den Footer
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. MOBILE-FIRST BASE STYLES (Standardansicht)
   -------------------------------------------------------------------------- */

.site-footer {
    background-color: #05080e;
    color: #e2e8f0;
    padding: 2rem 0 2rem 0;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

.footer-col h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col p {
    color: #94a3b8;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Support Buttons (Fernwartung) */
.footer-support-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-radius: 6px;
    color: #0F75B8;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

/* Hover bei Support-Buttons: Gili-IT Blau (#0F75B8) */
.support-btn:hover {
    background: #0F75B8;
    border-color: #0F75B8;
    color: #ffffff;
    box-shadow: 0 0 12px rgba(15, 117, 184, 0.5);
}

.support-icon {
    flex-shrink: 0;
}

/* Navigations-Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

/* Hover bei Navigation-Links: Gili-IT Blau (#0F75B8) */
.footer-links a:hover {
    color: #0F75B8;
    padding-left: 4px;
}


/* --------------------------------------------------------------------------
   2. DESKTOP BREAKPOINT (ab 768px Tablet / Desktop)
   -------------------------------------------------------------------------- */

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }
}