/* Fullscreen banner container */
.fullscreenbanner-container {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    height: 79vh;
    max-width: 100vw;
    overflow: hidden;
}

/* Overlay for the banner */
.fullscreenbanner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Video iframe styles (YouTube, Vimeo) */
.fullscreenbanner-video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Direct video styles */
.fullscreenbanner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Images inside video fallback */
.fullscreenbanner-video img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content container */
.fullscreenbanner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    color: white;
    top: 50%;
    transform: translateY(-50%);
}

/* Text styling */
.fullscreenbanner-text {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

/* Button styling */
.fullscreenbanner-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.fullscreenbanner-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .fullscreenbanner-text {
        font-size: 1.8rem;
    }
}

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