/* Fullscreen-Bild Section */
.fullscreen-header {
    position: relative;
    height: 90vh;
    background-size: cover;
    background-position: center;
    color: white;
}
.fullscreen-header .title-container {
    position: absolute;
    bottom: 20px;
    left: var(--left-margin);
    font-size: var(--font-size-large_80);
    font-weight: var(--font-weight_bold)
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-decoration: none;
    color: white;
    border-radius: 50%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.play-button svg:hover {
    width: 70px;
    height: 70px;
}

.play-button svg {
    width: 60px;
    height: 60px;
}

.title-container span{
    font-size: var(--font-size-large_34);
    font-weight: var(--font-weight_bold)
}



/* Inhalts-Section mit Zeichnung im Hintergrund */
.content-section {
    position: relative;
    background-color: rgba(255, 255, 255, 0.9); /* Leicht transparenter weißer Hintergrund */
    z-index:1;
}
.content-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1; /* Zeichnung leicht sichtbar */
    z-index: -1;
    margin-top: -1.5rem !important;
}

.head-text p{
    margin-bottom:0px;
}

/* Einheitliche Linksausrichtung von 40px */
.left-margin {
    padding-left: var(--left-margin);
    margin-right: var(--right-margin);
}

.info-wrapper{
    display:flex;
}

.info-wrapper .col-md-6{
    padding-left:0px;
}

/* Stil für Kästen */
.info-box {
    align-items: center;
}

/* Box für Bilder und Text */
.custom-box {
    align-items: center;
    justify-content: center;
}

.press-text{
    font-size: clamp(1.3rem, 2vw, 1.1rem);
}

.custom-box img {
    max-width: 100%;
    height: auto;
}

.movie_left_content{
    margin-right: 4vw;
}

.movie_right_content{
    margin-left: 4vw;
}



/*
FORM
 */
.overlay-form {
    position: fixed;
    top: 10%;
    right: 10%;
    width: 400px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

#current-breakpoint {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

#current-breakpoint span {
    color: #007bff;
}

.overlay-form input {
    width: 100%;
    margin-bottom: 10px;
    padding: 5px;
    font-size: 14px;
}

.overlay-form button {
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
}

.overlay-form button:hover {
    background-color: #0056b3;
}

.head-text{
    padding-top:3vw;
    padding-bottom:2vw;
}

.spacer-bottom{
    padding-bottom:4vw;
}

@media (min-width: 992px) {
   .movie-col-left{
       padding-right:2vw;
   }

    .movie-col-middle{
        padding-left:2vw;
        padding-right:2vw;
    }

    .movie-col-right{
        padding-left:2vw;
    }

}


