/* Grundlayout */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    
}
/* Hintergrund-GIF mit Zoom */
.background-gif {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('pic/rauch_hintergrund_10fps_nahtlos.gif') no-repeat center center fixed;
    background-size: cover;
    z-index: -1;

    /* Zoom Animation */
    animation: zoomBackground 10s ease-in-out infinite alternate;
}

/* Zoom-Keyframes */
@keyframes zoomBackground {
    0% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1.5); /* Zoom bis 1,2x */
    }
}

/* Banner */
header {
    text-align: center;
    margin-top: 10px;
}

.banner {
    width: 100%;
    max-width: 1080px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

/* Button-Bereich */
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap; /* für Handy */
}

.image-button img {
    width: 250px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border-color: rgba(255, 40, 183, 0.445);
    border-width: 0px;
    border-style: solid;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.image-button img:hover {
    transform: scale(1.2); border-width: 10px;
}

/* Footer */
footer {
    margin-top: auto;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

footer nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer nav a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
    .button-container {
        flex-direction: column;
        gap: 15px;
    }

    .image-button img {
        width: 80%;
        max-width: 300px;
    }
}