/* General Styling */
@import url('https://fonts.googleapis.com/css2?family=Jersey+10&display=swap');

body {
    font-family: 'Jersey 10', sans-serif;
    margin: 0;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000; 
}

/* Fullscreen Slideshow */
.slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slide.active {
    opacity: 1;
}

/* Centered Content */
.center-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Logo Styling */
.logo img {
    width: 280px; /* Anpassen der Logo-Größe */
    transition: transform 0.3s ease;
}


/* Video 1 Button Styling */
.video-button {
    font-family: 'Jersey 10', sans-serif;
    font-size: 18px;
    letter-spacing: 9px;
    padding: 5px 20px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.video-button:hover {
    background-color: #ffffff;
    color: #000000;

}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}
.lightbox video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.close {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 3;
}
.close img {
    width: 30px;
    height: 30px;
    transition: transform 0.2s ease;
}
.close img:hover {
    transform: rotate(180deg);
}

/* Custom Play Button */
.custom-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 4;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.custom-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

footer {
    font-family:'Jersey 10', sans-serif;
    position: fixed;
    width: 100%;
    bottom: 15px;
    font-size: 14px;
    letter-spacing: 3px;
    color: #ffffff;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(3, auto); /* Standard: 3 Spalten */
    justify-content: center; 
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
}

footer a:hover {
    text-decoration: none;
    color: #ffcc00;
}



/* Responsive Footer für kleinere Bildschirme */
@media (max-width: 800px) { /* Testwert für Desktop */
    .footer {
        grid-template-columns: 1fr; /* Elemente untereinander */
        font-size: 16px; /* Größere Schrift für bessere Sichtbarkeit */
        gap: 5px; /* Geringerer Abstand zwischen den Zeilen */
    }
}