/* 
 * onlionit 2026 - Modern Footer Design
 * Fokus: Dunkel, Seriös, Klares Ende der Seite
 */

:root {
  --onlion-blue: #5B9BD5;
  --onlion-black: #231F20;
  --onlion-dark-blue: #002033;
  --onlion-white: #FFFFFF;
  --onlion-light-gray: #D1D3D4;
  --onlion-dark-gray: #A7A9AC;
  
  --transition: all 0.3s ease;
}

#footer {
    background-color: var(--onlion-black) !important; /* Dunkler Hintergrund als klares Ende */
    color: var(--onlion-light-gray);
    padding: 80px 0 60px 0 !important;
    border-top: 4px solid var(--onlion-blue); /* Akzentlinie am Anfang des Footers */
    font-size: 14px;
    line-height: 1.8;
}

#footer h4 {
    color: var(--onlion-white);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

/* Kleiner Unterstrich für Headlines */
#footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--onlion-blue);
}

#footer p, #footer address {
    color: var(--onlion-dark-gray);
    margin-bottom: 20px;
}

#footer address strong {
    color: var(--onlion-white);
}

/* Footer Menüs */
#footer .footer-menu li {
    margin-bottom: 12px;
}

#footer .footer-menu li a {
    color: var(--onlion-dark-gray);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

#footer .footer-menu li a:hover {
    color: var(--onlion-blue);
    padding-left: 5px; /* Kleiner Animationseffekt */
}

/* Kontakt-Links & Icons */
#footer a {
    color: var(--onlion-dark-gray);
    text-decoration: none;
    transition: var(--transition);
}

#footer a:hover {
    color: var(--onlion-blue);
}

#footer i {
    color: var(--onlion-blue);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Social Icons / Buttons im Footer (falls vorhanden) */
#footer .social-icons a {
    font-size: 20px;
    margin-right: 15px;
    color: var(--onlion-white);
}

#footer .social-icons a:hover {
    color: var(--onlion-blue);
}

/* Copyright / Bottom Bar */
#footer .footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--onlion-dark-gray);
    font-size: 12px;
}

/* Responsive Fixes */
@media (max-width: 767px) {
    #footer {
        padding: 60px 0 40px 0 !important;
        text-align: center;
    }
    #footer h4::after {
        left: 50%;
        margin-left: -15px;
    }
    #footer .footer-menu li a:hover {
        padding-left: 0;
    }
}
