/* Footer allgemeines Styling */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 50px 0 0 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

/* Begrenzung auf 1200px für Inhalt */


/* 1. Zeile: Logo */
.footer_logo_row {
    margin-bottom: 30px;
    max-width: 1200px;
    width: 100%;
}
.footer_logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.footer_logo img {
    height: 80px;
    width: auto;
}

/* 2. Zeile: Kontakt, Menü, Unternehmen (als Row) */
.footer_columns_row {
    display: flex;
    justify-content: space-between;  /* Spalten nebeneinander platzieren */
    flex-wrap: nowrap;  /* Verhindert das Stapeln */
    margin-bottom: 30px;
    max-width: 1200px;
    width: 100%;
}
.footer_column {
    flex: 1 1 30%;  /* Jede Spalte nimmt bis zu 30% der Breite ein */
    text-align: left;  /* Text linksbündig */
}
.footer_column h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
}
.footer_column p, .footer_column a {
    color: #ddd;
    font-size: 14px;
    margin-bottom: 10px;
    text-decoration: none;
}

/* Listen-Elemente für Menü und Unternehmensinformationen */
.footer_column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.footer_column li {
    margin-bottom: 10px;
}
.footer_column li a {
    color: #ddd;
    text-decoration: none;
}
.footer_column li a:hover {
    text-decoration: underline;
}

/* 3. Zeile: DGNB Logo und Links */
.footer_dgnb_row {
    padding: 50px 0;
    margin-bottom: 20px;
    max-width: 1200px;
    width: 100%;
}
.footer_dgnb {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.footer_dgnb img {
    height: 60px;
    width: auto;
    margin-right: 20px;
}
.footer_dgnb ul {
    list-style-type: none;
    padding: 0;
}
.footer_dgnb li {
    margin-bottom: 10px;
}
.footer_dgnb li a {
    color: #ddd;
    font-size: 14px;
    text-decoration: none;
}
.footer_dgnb li a:hover {
    text-decoration: underline;
}

/* 4. Zeile: Copyright */
.footer_bottom {
    background-color: #000;
    padding: 20px 0;
    width: 100%;
}
.footer_bottom p {
    color: #fff;
    font-size: 12px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer_columns_row, .footer_dgnb_row {
        flex-direction: column;  /* Spalten untereinander auf mobilen Geräten */
        text-align: center;
    }
    .footer_column, .footer_dgnb {
        padding-bottom: 20px;
        justify-content: center;
    }
}
@media only screen and (max-width: 699px){
  .width_element{
    margin: 10px 20px;
  }
}
@media only screen and (min-width: 700px){
  .width_element{
    padding: 10px 50px;
  }


}
@media only screen and (min-width: 1000px){
  .width_element{
    margin:  15px 50px;
  }
}s
