/* Allgemeine Stile */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
}

header {
    background: #1f1f1f;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #333;
}

header .logo h1 {
    margin: 0;
    font-size: 2em;
    color: #e91e63;
}

header nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 10px 0 0;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #e91e63;
}

main {
    padding: 20px;
    text-align: center;
}

footer {
    background: #1f1f1f;
    text-align: center;
    padding: 20px;
    border-top: 2px solid #333;
}

footer p {
    margin: 0;
    color: #888;
}

footer .social-icons a {
    margin: 0 10px;
    color: #ffffff;
    font-size: 1.5em;
    transition: color 0.3s;
}

footer .social-icons a:hover {
    color: #e91e63;
}


footer a::after {
    display: inline; /* Verhindert Block-Anzeige */
    content: none; /* Entfernt den Inhalt, falls nicht benötigt */
    box-shadow: none; /* Entfernt jegliche Neon-Effekte */
}


/* Styling für die YouTube-Sektion */
.youtube-channel {
    margin: 20px 0;
    text-align: center;
}

.youtube-channel a {
    display: inline-block;
    background: #FF0000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    transition: background 0.3s ease;
}

.youtube-channel a:hover {
    background: #cc0000;
}

iframe {
    display: block;
    margin: 20px auto;
    border: none;
    max-width: 100%;
}



/* Der Hauptcontainer, der beide Boxen nebeneinander hält */
.container {
	display: flex; /* Flexbox für nebeneinander */
    justify-content: space-between; /* Platz zwischen den Boxen */
    gap: 20px; /* Abstand zwischen den Boxen */
	padding: 20px;
    background-color: #121212; /* Dunkler Hintergrund */
}

/* Styling der einzelnen Boxen */
.containerbox {
    width: 48%; /* Jede Box nimmt 48% der Breite ein (inkl. Abstand passt es auf 100%) */
    background: #1f1f1f; /* Dunkles Grau */
    border-radius: 10px;
    box-shadow: 
        0 0 10px #00ffcc, /* Türkis-Schimmer */
        0 0 20px #00ffcc;
    padding: 20px;
    text-align: center;
    color: #ffffff; /* Weißer Text */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.containerbox:hover {
    transform: scale(1.05); /* Leichtes Vergrößern beim Hover */
    box-shadow: 
        0 0 15px #00ffcc,
        0 0 30px #00ffcc,
        0 0 45px #00ffcc;
}

/* Text-Styling innerhalb der Boxen */
.containerbox h2 {
    color: #00ffcc;
    text-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.containerbox p {
    font-size: 1em;
    color: #ffffff;
}

@media (max-width: 768px) { /* Maximale Breite 768px = Handy-Modus */
    .container {
        flex-direction: column; /* Flexbox vertikal ausrichten */
        align-items: center; /* Zentrierte Ausrichtung */
    }

    .containerbox {
        width: 90%; /* Breite anpassen für kleinere Bildschirme */
        margin-bottom: 20px; /* Abstand zwischen den Boxen */
    }
}





h1 {
    font-size: 3em;
    color: #00d4ff; /* Türkis-blau */
    text-shadow: 0 0 5px #e91e63, 0 0 10px #e91e63;
    text-align: center;
    position: relative;
}

h1::after {
    content: "";
    display: block;
    width: 60%;
    height: 4px;
    background: #e91e63; /* Neonrosa */
    margin: 10px auto 0;
    border-radius: 10px;
    box-shadow: 0 0 5px #e91e63, 0 0 10px #e91e63, 0 0 20px #e91e63;
}




h2 {
 color:#099FFF;	
}

h3 {
 color:#33FF00;	
}


a {
    color: #ff00ff; /* Neon-pink */
    text-decoration: none;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: #00ffcc; /* Türkis beim Hover */
    text-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc, 0 0 20px #00ffcc;
}

a::after {
    content: "";
    display: block;
    height: 2px;
    background: #00ffcc;
    width: 0;
    transition: width 0.3s ease-in-out;
    box-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc;
}

a:hover::after {
    width: 100%;
}




.page-impressum {
    text-align: left; /* Text linksbündig */
    margin: 20px auto;
    padding: 20px;
    width: 90%; /* Optional: Breite für bessere Lesbarkeit */
    max-width: 800px; /* Optional: Begrenzte maximale Breite */
    line-height: 1.6; /* Angenehmer Zeilenabstand */
}







hr {
    height: 4px; /* Dicke der Neonröhre */
    background: #00ffcc; /* Neonfarbe */
    border: none;
    border-radius: 10px; /* Runde Kanten */
    box-shadow: 
        0 0 5px #00ffcc,
        0 0 10px #00ffcc,
        0 0 20px #00ffcc,
        0 0 40px #00ffcc;
    animation: neon-flicker 3s infinite; /* Animation dauert jetzt 3 Sekunden */
}

/* Flacker-Animation */
@keyframes neon-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 100% {
        opacity: 1; /* Lampe an */
        box-shadow: 
            0 0 5px #00ffcc,
            0 0 10px #00ffcc,
            0 0 20px #00ffcc,
            0 0 40px #00ffcc;
    }
    20%, 24%, 55% {
        opacity: 0.6; /* Schwaches Flackern */
        box-shadow: 
            0 0 3px #00ffcc,
            0 0 6px #00ffcc,
            0 0 12px #00ffcc,
            0 0 24px #00ffcc;
    }
    22%, 56% {
        opacity: 0.3; /* Starkes Flackern */
        box-shadow: 
            0 0 2px #00ffcc,
            0 0 4px #00ffcc,
            0 0 8px #00ffcc,
            0 0 16px #00ffcc;
    }
}
