body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 400;
}

/* NEU: Hauptcontainer für die Bildebenen */
.hintergrund-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hintergrund-bild {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-size: cover;
    background-position: center center;
    animation: zoomEffect 25s infinite alternate ease-in-out;
    /* NEU: Übergang für die Deckkraft (für Crossfade) */
    transition: opacity 2.0s ease-in-out;
}

/* Startzustand: Die zweite Bildebene ist unsichtbar */
.hintergrund-bild:last-child {
    opacity: 0;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1); /* Zoom-Effekt leicht verstärkt */
    }
}

#text-container {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 45%;
    z-index: 3; /* Muss über dem Link liegen */
    color: white;
    font-size: 3.8em;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

#text-zeile {
    display: inline-block;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

/* Keyframe-Animation für den Puls-Effekt des Buy Button */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 15px 25px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.buy-link {
    position: absolute;
    top: 30px;
    right: 40px;
    z-index: 2; /* Liegt unter dem Text, aber über dem Bild */
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.buy-link:hover {
    background-color: white;
    color: black;
}

/* ... (bestehender CSS Code bleibt unverändert) ... */

.buy-link:hover {
    background-color: white;
    color: black;
}

/*pulse-animation Klasse für den buy-button

.pulse-animation {
    animation: pulse 2s infinite;
}

/* NEU: STYLES FÜR DAS FIRMENLOGO */
.company-logo {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 2;
    max-width: 130px;
    height: auto;

    /* NEU: Fügt einen weichen, dunklen Schatten direkt um das Logo-Motiv hinzu */
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.7));
}