@font-face {
    font-family: 'OatMeal';
    src: url('fonts/OatMeal.ttf') format('truetype');
}
@font-face {
    font-family: 'Microwaves.ttf';
    src: url('fonts/Microwaves.ttf') format('truetype');
}
@font-face {
    font-family: 'Dieselpower';
    src: url('fonts/DieselpowerPersonalUse-axaY5.ttf') format('truetype');
}
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* verhindert Klicks */
    z-index: -1;
    background: rgba(255, 255, 255, 0.9);
}
.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Füllt den Bereich, schneidet ggf. zu */
    filter: invert(1) brightness(1);
}

.video-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* 0.4 = leicht abdunkeln */
}
body {
    /*background-image: url('land.jpg');*/
    font-family: 'Dieselpower', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    overflow: hidden;
}

h1 {
    position: absolute;  /* Fixiert es relativ zum Body */
    text-decoration: none;
    top: 2%;          /* Abstand vom oberen Rand */
    left: 2%;         /* Abstand vom linken Rand */
    color: #999999;       /* Weiße Schrift für bessere Sichtbarkeit */
    font-family: 'Microwaves.ttf', sans-serif;  /* Schriftart */
    font-size: 7vw;    /* Angepasste Größe wie bei Analog Works */
    margin: 0;
    padding: 1%;
}
/* Container for the two-column layout */
.container {
    display: flex;
    width: 100%;
}

/* Left column - Menu */
.left {
    width: 25%;
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 80%;
}

.menu li {
    margin: 1.6em 0;
    position: center;
    text-align: left;
}

.menu a {
    text-decoration: none;
    color: #aeaeae;
    font-size: 2em;
    display: block;
    padding: 6px 3px;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #ffffff;
}

/* Mobile-specific homepage fixes */
@media (max-width: 768px) {
    body {
        height: 100vh;
        overflow: hidden;
    }
    
    .container {
        flex-direction: column;
        height: 100vh;
    }
    
    .left {
        width: 100%;
        height: 60vh;
        position: relative;
        top: 0;
    }
    
    .content {
        width: 100%;
        height: 40vh;
    }
    
    h1 {
        font-size: 4vw;
    }
}

@media (max-width: 480px) {
    .left {
        height: 70vh;
    }
    
    .content {
        height: 30vh;
    }
    
    h1 {
        font-size: 3vw;
    }
}

/* Right column - Content */
.content {
    width: 55%;
    padding: 20px;
    min-height: 100vh;
}

.footer {
    color: grey;
    font-family: 'Arial', 'Helvetica', 'sans-serif';
    font-size: 0.6em;
    letter-spacing: 0.1em;
    justify-content: center;
    align-items: center;
    min-height: 5vh;
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}
