/* Grundlegende Stile */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: white;
    text-align: center;
    background: url('https://realvisionstudios.de/Bilder/test.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Overlay für bessere Lesbarkeit */
.overlay {
    background: rgba(0, 0, 0, 0.5); /* 50% dunkler Overlay */
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Header-Stil */
header {
    position: relative;
    z-index: 2;
    background: rgba(0, 66, 34, 0.85); /* 85% transparente grüne Navigation */
    padding: 20px;
}

header h1 {
    margin: 0;
}

/* Navigation */
nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
   background: rgba(0, 0, 0, 0.5);
}

/* Inhalt */
.content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

#home, #about, #services, #contact {
    background: rgba(0, 0, 0, 0.15) !important;
}

}
