:root {
    --bg-color: #003602;
    --text-color: #FFEAD7;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow: hidden; /* Scrollen verhindern */
    touch-action: none; /* Touch-Scroll auf Mobilgeräten verhindern */
}

/* Logo oben links */
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
}

.logo img {
    height: 150px;
    width: auto;
}

/* Footer links unten */
.footer {
    position: absolute;
    left: 20px;
    bottom: 20px;
    text-align: left;
    line-height: 1.4;
}

.footer .tagline {
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: bold;
}

.footer .email a {
    color: var(--text-color);
    text-decoration: none;
}

.footer .email a:hover {
    text-decoration: underline;
}

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -2;
}

.video-bg video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.7);
}

.green-filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 54, 2, 0.831); /* #003602 mit weniger Transparenz */
    mix-blend-mode: multiply;
    z-index: 1;
}