/* styles.css */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: black;
}

.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.background-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.container {
    text-align: center;
    z-index: 1;
    padding: 20px;
}

/* Stil für "Kurze Pause" */
.hover-effect {
    font-size: 3rem;
    font-weight: bold;
    color: gold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.5);
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

/* Hover-Effekt für "Kurze Pause" */
.hover-effect:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Popup-Bild */
.image-popup {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.image-popup img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
}

/* Bild anzeigen, wenn über den Text gehovt wird */
.hover-effect:hover ~ .image-popup {
    display: block;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.time-box {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    flex: 1 1 100px;
}

.time-box span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsives Design */
@media (max-width: 768px) {
    .hover-effect {
        font-size: 2rem;
    }

    .time-box span {
        font-size: 1.5rem;
    }

    .label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hover-effect {
        font-size: 1.5rem;
    }

    .time-box {
        padding: 10px 15px;
    }

    .time-box span {
        font-size: 1.2rem;
    }

    .label {
        font-size: 0.7rem;
    }
}
