/* style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f7fa;
    color: #1f2937;
    line-height: 1.6;
}

/* Navigationsleiste */
nav {
    width: 100%;
    background: linear-gradient(to right, black, green);
    padding: 10px 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: block;
    margin: 10px auto;
	  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
	  height: 80px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 45px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
    color: #bfdbfe;
    transform: scale(1.05);
}

/* Allgemeine Sektionen */
section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
    
}

section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: green;
    border-radius: 20px;
}

section p {
    font-size: 1.1rem;
    color: black;
    margin-bottom: 30px;
}

/* Video-Platzhalter im Projekt-Bereich */
.video-container {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background-color: #e5e7eb;
    border: 3px dashed #9ca3af;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #6b7280;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Unterschiedliche Hintergründe pro Abschnitt */
#home {
    background-color: #ffffff;
}

#projekt {
    background-color: #f9fafb;
}

#dokumentation {
    background-color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 20px 0;
    }

    nav ul {
        gap: 25px;
        flex-wrap: wrap;
    }

    nav ul li a {
        font-size: 1.1rem;
    }

    section {
        padding: 60px 20px;
    }

    section h1 {
        font-size: 2rem;
    }

    .video-container {
        font-size: 1.1rem;
        border-radius: 12px;
    }
}


nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}



p + p {font-family: helvetica;
    width: 70%;
    margin: 30px auto;
    font-size: 18px;
    line-height: 1.6;
    color: black;}










