.logo-footer {
    margin-bottom: 40px;
 }

footer {
    color: rgb(255, 255, 255);
    font-family: 'Roboto', sans-serif;
 }

footer p, a {
    font-size: 12px;
    padding-bottom: 10px;
    padding-left: 2px;
    
}

footer h6 {
    font-family: 'Tim', sans-serif;
    margin-bottom: 15px;                            /*Hier sag ich wieviel abstand der text zu überschrift haben soll im Footer*/
    padding-top: 10px;
    color: orange;
    position: relative;
}

/* START-Test Anpassung für überschrift*/
/*footer h5 {
    font-family: 'Tim', sans-serif;
    margin-bottom: 15px;                            Hier sag ich wieviel abstand der text zu überschrift haben soll im Footer
    padding-top: 10px;
    color: orange;
    position:fixed;
}*/
/* ENDE-Test Anpassung für überschrift*/


/* START -- Hier wird die Trennlinie gestylt.*/
footer h6:after {
    position: absolute;
    content: "";
    background: grey;
    width: 100%;                                    /* Linie erstreckt sich über die volle Breite */
    height: 1px;
    left: 0;
    bottom: -6px;                                   /* Zwischen abstand zwischen Gelber überschrift und der Linie */
}
/* ENDE -- Hier wird die Trennlinie gestylt.*/

.btn-footer {
    color: grey;   
    text-decoration: none;
    border: 1px solid;
    border-radius: 43px;
    font-size: 13px;
    padding: 7px 7px;
    line-height: 47px;
 }

.btn-footer:hover {
    text-decoration: none;
}

.form-footer input[type="text"] {
    border: none;
    border-radius: 16px 0 0 16px;
    outline: none;
    padding-left: 10px;
}

::placeholder {
    font-size: 10px;
    padding-left: 10px;
    font-style: italic;
}

.form-footer input[type="button"] {
    border: none;
    background:#232323;
    margin-left: -5px;
    color: #fff;
    outline: none;
    border-radius: 0 16px 16px 0;
    padding: 2px 12px;
}

.social-icons .fa {
    color: #3c3c3c;
    /*font-size: 22px;*/
    padding: 2px;
    background: #3c3c3c;
}

.icon-facebook {
    width: 40px;  /* Größe anpassen */
    height: 40px;
    fill: grey; /* Standard Facebook-Blau */
    transition: fill 0.3s ease-in-out, transform 0.2s ease-in-out;
    filter: grayscale(100%) brightness(68%);
}

.icon-facebook:hover {
    /*fill: grey; /* Dunkleres Blau beim Hover */
    transform: scale(1.1); /* Leichter Zoom-Effekt */
}


footer ul li {
    list-style: none;
    display: block;
}

footer ul  {
    padding-left: 0;
}

footer ul  li a{
    text-decoration: none;
    color: grey;
    
}
a:hover {
text-decoration: none;
color: #f5f5f5 !important;
}
