body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

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

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

nav a:hover {
    color: #aaa;
}

.container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
}

.hero {
    height: 80vh;
    background: url('hintergrund-index.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.song-item {
    background: #111;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

audio {
    width: 100%;
    margin-top: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.8em;
    border-top: 1px solid #333;
}
/* Styling für das Kontaktformular */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #111;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #333;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="text"], 
input[type="email"], 
textarea {
    width: 100%;
    padding: 12px;
    background: #222;
    border: 1px solid #444;
    color: #fff;
    border-radius: 4px;
    box-sizing: border-box; /* Verhindert, dass Felder über den Rand ragen */
}

input:focus, textarea:focus {
    outline: none;
    border-color: #888;
}

button {
    background-color: #fff;
    color: #000;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
}

button:hover {
    background-color: #ccc;
}
/* Styling für die Music-Übersicht */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.album-card {
    background: #111;
    border: 1px solid #333;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.album-card:hover {
    transform: scale(1.03);
    border-color: #555;
}

.album-card img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.btn-more {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: bold;
}
.center-image-container {
    text-align: center; /* Zentriert das Bild horizontal */
    padding: 20px 0;    /* Gibt dem Bild oben und unten etwas Platz */
}

.centered-image {
    max-width: 100%;    /* Verhindert, dass das Bild breiter als der Bildschirm wird */
    height: auto;       /* Behält das Seitenverhältnis bei */
    border-radius: 8px; /* Optional: leicht abgerundete Ecken */
}/* Styling für den Abschluss-Satz */
.call-to-action {
    text-align: center;
    padding: 60px 20px; /* Viel Platz nach oben und unten */
    margin-top: 40px;
    border-top: 1px solid #222; /* Eine sehr feine Trennlinie */
}

.call-to-action p {
    font-size: 1.2rem;
    line-height: 1.8;
    letter-spacing: 1px;
    color: #cccccc; /* Ein helles Grau für edlen Look */
    max-width: 800px;
    margin: 0 auto;
}

/* Akzent für wichtige Begriffe */
.call-to-action span.highlight {
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
}
