* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: white;
    text-align: center;
    background-color: black;
}

a {
    color: red;

}

p {
    margin-bottom:10px;
}

/* Hero Section mit Video */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.logo {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.release-date {
    font-size: 24px;
    margin-top: 10px;
}

.scroll-down {
    font-size: 30px;
    margin-top: 20px;
    animation: bounce 1.5s infinite;
    cursor: pointer;
}

/* Pfeil-Animation */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Trailer Sektion */
.trailer {
    background: black;
    padding: 50px 20px;
}

.trailer h2 {
    font-size: 28px;
    margin-bottom: 5px;
}

.trailer h3 {
    margin-bottom: 20px;
}

.synopsis h2 {
    font-size: 28px;
    margin-bottom: 5px;
}

.synopsis h3 {
    margin-bottom: 20px;
}



.video-container iframe {
    width: 80%;
    max-width: 800px;
    height: 450px;
}

/* Kino Liste */
.cinemas {
    background: black;
    padding: 50px 20px;
}

.cinemas h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.cinemas ul {
    list-style: none;
    font-size: 20px;
}

.cinemas li {
    margin: 10px 0;
}

/* Footer */
footer {
    background: #333;
    padding: 20px;
    font-size: 16px;
}

footer a {
    color: white;
    text-decoration: none; /* Unterstreichung entfernen */
}

footer a:hover {
    text-decoration: underline; /* Unterstreichung beim Hover */
}

/* Synopsis Section */
.synopsis-container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.synopsis {
    width: 100%;
    max-width: 800px;
    margin: 50px 0;
    padding: 40px;
    color: #eee;
    line-height: 1.7;
    font-size: 1.1em;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    box-sizing: border-box;
}

.synopsis h2 {
    font-size: 2.2em;
    margin-bottom: 5px;
    color: #fff;
    text-align: center;
}

.synopsis h3 {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 20px;
    color: #ccc;
    text-align: center;
    font-weight: normal;
    font-style: italic;
}

.synopsis p {
    margin-bottom: 20px;
    text-align: justify;
    hyphens: auto;
}

.synopsis img {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    border-radius: 4px;
}

/* Gallery Slider */
.gallery-slider {
    background: #000;
    padding: 50px 0;
    text-align: center;
    overflow: hidden;
}

.gallery-slider h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #fff;
    padding: 0 20px;
}

.slider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
}

.slider div {
    outline: none;
}

.slider img {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}

/* Slick slider custom styles */
.slick-prev:before,
.slick-next:before {
    color: #fff;
    font-size: 30px;
}

.slick-prev {
    left: -35px;
}

.slick-next {
    right: -35px;
}

.slick-dots li button:before {
    color: #fff;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: #fff;
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slider {
        padding: 0 20px;
    }
    
    .slick-prev {
        left: -20px;
    }
    
    .slick-next {
        right: -20px;
    }
    
    .logo {
        width: 80%;
        max-width: 100%;
    }
}
