body {
    background: url("Bilder/statue.jpg") no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

/* Overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(246, 241, 231, 0.75); /* dein beige-light mit Transparenz */
    pointer-events: none;
    z-index: -1;
}

.video-photos {
    display: flex;
    flex-direction: column;
    gap: 1.2rem; /* Abstand zwischen den Bildern */
}

.video-area {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

video {
    width: 360px;
    border-radius: 12px;
}

.video-photos img {
    width: 360px;
    border-radius: 12px;
    display: block;
}

/* HEADER */
header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


nav a {
    margin-right: 0.8rem;
    text-decoration: none;
    color: var(--text);
    font-size: 0.92rem;
}
/* FOOTER */
footer {
 
    padding: 2rem 0;
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.sprache button {
    background-color: #ffffff;   /* deine Wunschfarbe */
    color: #000000;              /* Textfarbe */
    border: 1px solid #ccc;      /* optional */
    padding: 6px 12px;
    border-radius: 6px;          /* abgerundete Ecken */
    cursor: pointer;
}

.sprache button:hover {
    background-color: #e6e6e6;   /* Hover-Farbe */
}

