/****  
Hetz Enterprises - My(Web)Sphere  
Subtheme specific CSS  
****/

/* Stile für den Hero-Banner */
.mws-hero-banner {
    position: relative;
    height: 50vh; /* Beispielhöhe, kann angepasst werden */
    width: 100%;
    overflow: hidden;
    background-color: #F0F0F0; /* Hintergrundfarbe */
}

/* Mediencontainer */
.mws-hero-media {
    width: 50%;
    height: 100%;
}

/* Video-Styling */
.mws-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bild-Styling */
.mws-image-wrapper {
    width: 100%;
    height: auto;
}

/* Overlay-Styling */
.mws-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    min-width: 320px;
    border-radius: 5px; /* Abgerundete Ecken für ein moderneres Design */
}

/* Titel im Overlay */
.mws-overlay-title {
    font-size: 24px;
    font-weight: bold;
}

/* Text im Overlay */
.mws-overlay-text {
    margin-top: 10px;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .mws-hero-banner {
        height: 40vh;
    }

    .mws-overlay {
        bottom: 10px;
        left: 10px;
        min-width: 280px;
        padding: 8px;
    }

    .mws-overlay-title {
        font-size: 20px;
    }
}