body {
    font-family: Arial, sans-serif;
    background-image: url('1.jpeg'); /* Passe den Pfad zum Bild an */
    background-size: cover;
    background-position: center;
    color: #fff; /* Textfarbe auf Weiß setzen */
    margin: 0;
    padding: 20px;
    text-align: center;
}

/* Neon-Effekt für Überschriften */
h1, h2 {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9),
                  0 0 20px rgba(255, 255, 255, 0.9),
                  0 0 30px rgba(255, 255, 255, 0.9),
                  0 0 40px rgba(255, 255, 255, 0.9);
}

#profile-image {
    max-width: 30%;
    border-radius: 50%;
}

#second-image {
    position: absolute;
    width: 100%;
    top: 100%;
    transform: translateY(-100%);
    left: 0;
    z-index: -1;
}

nav {
    display: flex;
    justify-content: space-around;
    background-color: #c0392b;
    padding: 10px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

section {
    padding: 20px;
}

#spotify-player {
    margin-top: 20px;
}

#concerts {
    margin-top: 20px;

}

#concerts h1 {
    color: #fff;
}
#merch-store {
    margin-top: 20px;
}

#booking {
    margin-top: 20px;
}


body {
    font-family: Arial, sans-serif;
    background-color: transparent;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 20px;
}

h1 {
    color: #333;
}

form {
    max-width: 400px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 8px;
    color: #555;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    background-color: #c0392b;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #a93226;
}

#latest-video {
    margin-top: 20px;
}
body {
    font-family: Arial, sans-serif;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 20px;
}

h1 {
    color: #333;
}

.marquee-container {	/* coming events */
    width: 100%;
    overflow: hidden;
    background-color: transparent;
    white-space: nowrap;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: #fff; /* Ändere die Schriftfarbe auf Weiß */

}

.marquee-item {
    display: inline-block;
    margin-right: 20px;
    animation: marquee 40s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Füge dies zu deinem bestehenden CSS hinzu oder aktualisiere es */

.social-links {
    margin-top: 10px;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    color: #fff; /* Standardmäßige Farbe auf Weiß setzen */
    text-decoration: none;
}

.social-links a i {
    font-size: 2em; /* Ändere die Größe der Symbole */
    transition: color 0.3s; /* Füge eine sanfte Farbübergangseffekt hinzu */
}

.social-links a:hover i {
    color: inherit; /* Farbe ändern, wenn Hover auf die Originalfarbe */
}

footer {
    color: white; /* Stelle sicher, dass der Text kontrastreich ist */
    padding: 10px;
    text-align: center;

}
/* Füge dies zu deinem bestehenden CSS hinzu oder aktualisiere es */

p a {
    color: white; /* Ändere die Schriftfarbe auf Weiß */
    text-decoration: underline; /* Hinzugefügt: Unterstreichung für bessere Sichtbarkeit */
    transition: color 0.3s; /* Hinzugefügt: Farbübergangseffekt bei Hover */
}

p a:hover {
    color: #a93226; /* Hinzugefügt: Ändere die Farbe bei Hover, falls gewünscht */
}

/* Der restliche CSS-Code für die Seite bleibt unverändert */
/* Füge dies zu deinem bestehenden CSS hinzu oder aktualisiere es */

.social-links a {
    display: inline-block;
    margin-right: 15px;
    text-decoration: none;
    background-color: #405de6; /* Hintergrundfarbe für Instagram-Logo */
    padding: 10px; /* Hinzugefügt: Padding für bessere Sichtbarkeit */
    border-radius: 5px; /* Hinzugefügt: Abgerundete Ecken für das Logo */
}

.social-links a i {
    font-size: 2em;
    color: #fff; /* Schriftfarbe auf Weiß setzen */
    transition: color 0.3s;
}

.social-links a:hover i {
    color: inherit;
}

/* Der restliche CSS-Code für die sozialen Links bleibt unverändert */
