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

html, body {
    width: 100%;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
}

/* Hintergrundbild */
.background {
    position: fixed;
    inset: 0;
    background-image: url("Kiez_Pack_Web_Background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Content Overlay */
.content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.45);
}

/* Headline */
h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Band Info – enger gesetzt */
.band-info {
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.35;   /* engerer Zeilenabstand */
    max-width: 650px;
    text-align: center;  /* wieder mittig */
}

.band-info p {
    margin: 0.2rem 0;    /* weniger Abstand zwischen Zeilen */
}

/* Link Buttons */
.links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.links a {
    padding: 0.75rem 1.5rem;
    border: 2px solid #ffffff;
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all 0.2s ease;
}

.links a:hover {
    background: #ffffff;
    color: #000000;
}

/* Mobile Optimierung */
@media (max-width: 600px) {

    h1 {
        font-size: 2.5rem;
        letter-spacing: 0.15em;
    }

    .tagline {
        font-size: 1rem;
    }

    .band-info {
        font-size: 0.95rem;
        padding: 0 1rem;
        line-height: 1.3;
    }

    .links a {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
}