
.container {
    width: 100%;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}



header {
    background-color: #800000;
    color: white;
    padding: 1em 0;
    text-align: center;
}

body {
    font-family: Arial, sans-serif;
}

h1, h2 {
    text-align: center;
    margin-bottom: 20px;
}

section {
    padding: 2em;
    margin: 1em 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* ###############   Menü  ################## */

.nav {
  list-style-type: none;
  text-align: center;
  margin: 0;
  padding: 0;
}


nav ul {
    list-style-type: none;
    padding: 0;
}
nav ul li {
    
    display: inline-block;
    margin: 0 1em;
}
nav ul li a {
    color: white;
    text-decoration: none;
}




/* ###############    Bildergallerie ################## */


.gallery-item {
    flex: 1 1 calc(25% - 10px);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #white;
}

.gallery-item img {
    width: 150px;
    height: auto;
    border-radius: 8px;
}


/* ################### Kontaktformular ############## */

/* Allgemeine Formularelemente */
form {
    max-width: 100%;
    margin: 0 auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

td {
    padding: 8px;
    vertical-align: top;
}

label {
    display: block;
    font-weight: bold;
}

input, textarea, button {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    box-sizing: border-box;
}

/* #############   Stil für den Senden-Button ############  */

button {
    background-color: #a00000;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 16px;
}

button:hover {
    background-color: #45a049;
}

/* ########### Zusätzliche Stile, um die Tabelle unsichtbar zu machen ######## */
table, td {
    border: none;
}


#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow: auto;
    text-align: center;
}

#lightbox-img {
    margin-top: 10%;
    max-width: 90%;
    max-height: 80%;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 100px;
    color: white;
    cursor: pointer;
}

     
     
     footer {
         text-align: center;
         padding: 1em 0;
         background-color: #800000;
         color: white;
         
         width: auto;
         bottom: 0;
     }
     
