/* Allgemeine Einstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f0f0f0;
    color: #333;
    overflow-x: hidden; /* Verhindert horizontales Scrollen */
    padding-top: 80px; /* Verhindert, dass der Header von der Splash Animation verdeckt wird */
}

/* Splash Screen Animation */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #2c3e50; /* Dunkles Blau */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    z-index: 1000;
    transition: opacity 2s ease-in-out;
}

.splash-content h1 {
    font-size: 60px;
    color: #ff6347; /* Tomatenrot */
    font-weight: bold;
    animation: fadeInLeft 2s ease-out; /* Neue Animation */
}

.splash-content p {
    font-size: 24px;
    color: white;
    margin-top: 20px;
    animation: fadeInRight 2s ease-out 0.5s; /* Neue Animation */
}

/* Animation für die Einfahrt von links (Name der Sängerin) */
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation für die Einfahrt von rechts (Andere Elemente) */
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Header - Navigation */
header {
    background-color: #000; /* Schwarz */
    color: white;
    padding: 25px 30px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000; /* Header muss über dem Splash Screen liegen */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #ff6347; /* Tomatenrot */
    transform: scale(1.1);
}

/* Hero Section mit Parallax-Effekt */
.hero {
    background-image: url('https://via.placeholder.com/1920x800'); /* Placeholder-Bild */
    background-size: cover;
    background-position: center;
    min-height: 75vh;
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    flex-direction: column; /* Ändert die Richtung der Flexbox */
    justify-content: center; /* Vertikale Zentrierung */
    align-items: center; /* Horizontale Zentrierung */
    text-align: center;
    padding: 0 20px;
    background-attachment: scroll; /* Parallax-Effekt */
}

.hero-content {
    z-index: 1;
    animation: fadeIn 2s ease-in-out;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInLeft 1.5s ease-out; /* Text fährt von links */
}

.hero-content p {
    font-size: 24px;
    margin-top: 20px;
    animation: fadeInRight 2s ease-out 0.5s; /* Text fährt von rechts */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-image {
    margin-top: 30px; /* Abstand zwischen Text und Bild */
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}

/* Abschnitts-Stil */
.section {
    padding: 50px 20px;
    background-color: white;
    max-width: 1000px;
    margin: 20px auto;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section h2 {
    font-size: 36px;
    color: #000; /* Schwarz für die Überschrift */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInLeft 1.5s ease-out; /* Fährt von links ein */
}

.section p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    animation: fadeInRight 2s ease-out 0.5s; /* Fährt von rechts ein */
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    font-size: 18px;
    margin: 10px 0;
    transition: color 0.3s ease-in-out;
}

ul li:hover {
    color: #ff6347;
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #000; /* Schwarz für den Footer */
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer p {
    font-size: 14px;
    line-height: 1.5;
}

/* Animierte Übergänge für die Sections */
.section:nth-child(odd) {
    background-color: #f9f9f9;
}

.section:nth-child(even) {
    background-color: #eaf2f8;
}

.section h2, .section p {
    transition: color 0.3s ease-in-out;
}

.section:hover h2 {
    color: #ff6347;
}

/* Hover-Effekt für die Abschnitte */
.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Kontakt-Link */
a {
    text-decoration: none;
    color: #3498db;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

/* Splash Screen Aufhebung */
#splash-screen.hidden {
    display: none;
}

.hamburger {
    display: none;
}

/* MOBILE ANSICHT */
@media (max-width: 768px) {

    body {
        padding-top: 70px;
    }

    .hamburger {
        display: block;
        color: white;
        font-size: 32px;
        position: absolute;
        right: 20px;
        top: 15px;
        cursor: pointer;
    }

    nav {
        justify-content: flex-start;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 10px;
        width: 220px;
        background: #000;
        padding: 15px;
        border-radius: 8px;
        gap: 15px;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 0;
    }

    .hero {
        min-height: auto;
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-image {
        margin-top: 20px;
    }

    .hero-image img {
        max-width: 100%;
    }

    .section {
        margin: 15px 10px;
        padding: 30px 20px;
    }

    .section h2 {
        font-size: 28px;
    }

    .section p,
    ul li {
        font-size: 16px;
    }

    .splash-content h1 {
        font-size: 38px;
    }

    .splash-content p {
        font-size: 18px;
    }
}