body {
    background-image: url("img/hintergrund.jpg");
    background-size: cover; /* Damit das Hintergrundbild den gesamten Bereich abdeckt */
    background-attachment: fixed; /* Hintergrund fixieren beim Scrollen */
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif; /* Standard-Schriftart festlegen */
}

.logo img {
    width: 300px; 
    height: auto;
    margin-left: 130px; 
}

.istaf img {
    width: 150px; 
    height: auto;
    margin-right: 210px; 
}

.oben {
    display: flex;
    align-items: center; /* vertikale Ausrichtung */
    justify-content: space-between; /* optional: Abstand zwischen den Elementen */
    gap: 20px; /* optional: Abstand zwischen den Elementen */
    padding: 10px;
}

.spalten-container {
    display: flex;
    width: 100%;
    gap: 20px;
    padding: 0 20px;    
    box-sizing: border-box;
}

.spalte {
    padding: 20px;
    text-align: center;
    color: white;
    box-sizing: border-box;
    min-width: 0; 
}

.spalte1 {
    background-size: cover;
    flex: 200%;
    height: 500px; 
    border: 4px solid rgba(0, 0, 0, 0.3); 
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); 
}

.spalte2 {
    background-size: cover;
    flex: 100%;
    height: 500px; 
    border: 4px solid rgba(0, 0, 0, 0.3); 
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    
    display: flex;
    flex-direction: column;
    justify-content: center;  /* Zentriert vertikal */
    align-items: center;      /* Zentriert horizontal */
    gap: 20px;                /* Gleichmäßiger Abstand zwischen Buttons */
}

.bestellung {        
    display: flex;
    flex-direction: row;
    align-items: flex-start; /* Oben ausgerichtet */
    gap: 40px;               /* Abstand zwischen Formular und Bild */
    padding: 20px;
    flex: 1;
    padding: 0;
    float: none;
}

.sitzplatz img {
    width: 600px;       
    height: auto;     
    object-fit: contain;    
}

.sitzplatz {
    display: flex;
    justify-content: right;
    align-items: flex-start; 
    float: left;  
}

.button-row {
    display: flex;
    gap: 10px;
    justify-content: left;
    flex-wrap: wrap;
    margin: 20px 0;
    margin-left: 20px; 
}

.button-mitte {
    display: flex;
    flex-direction: column;     /* untereinander */
    align-items: center;        /* horizontal zentriert */
    justify-content: center;
    gap: 10px;                  /* Abstand zwischen den Buttons */
    margin: 20px 0;
}

.button-unten {
    display: flex;
    gap: 10px;
    justify-content: left;
    flex-wrap: wrap;
    margin: 20px 0;
    margin-left: 20px; 
}

button {
    border-radius: 4px;
    background-color: rgb(54, 14, 6);
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 17px;
    padding: 8px;
    width: 200px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}
  
button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}
  
button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}
  
button:hover span {
    padding-right: 25px;
}
  
button:hover span:after {
    opacity: 1;
    right: 0;
}

h4 {
    display: flex;
    justify-content: flex-end;      
    gap: 10px;                  /* Abstand zwischen den Buttons */
    margin: 20px 0;
    padding: 0 20px;  
}

