/* Über uns Hero Section - Dreamteam CI */

/* Main Container */
#ueber-uns-hero {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: var(--dt-blau, #8dcaea); /* Dreamteam blue background */
}


/* Image Wrapper */
.ueber-uns-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* Image Styling */
.ueber-uns-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Press Logos Section */
.ueber-uns-press-logos {
    margin-top: 50px;
    padding: 30px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border separator */
}

.ueber-uns-press-logos-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    width: 100%;
}

/* Press Logo Styling */
.ueber-uns-press-logo {
    max-height: 50px;
    max-width: 190px;
    opacity: 0.9;
    filter: brightness(0) invert(1); /* Makes logos white/light for visibility on blue background */
    transition: opacity 0.3s ease;
}

.ueber-uns-press-logo:hover {
    opacity: 1;
}

/* Responsive Design - Tablet */
@media (max-width: 991.98px) {
    .ueber-uns-main-box {
        padding: 50px 40px;
    }
    
    .ueber-uns-press-logos-row {
        gap: 35px;
        justify-content: space-between;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 767.98px) {
    #ueber-uns-hero {
        padding: 40px 0;
    }
    
    .ueber-uns-main-box {
        padding: 40px 30px;
        border-radius: 16px;
    }
    
    .ueber-uns-text.white p {
        margin-bottom: 15px;
    }
    
    .ueber-uns-image {
        max-width: 100%;
        margin-top: 30px;
    }
    
    .ueber-uns-press-logos {
        margin-top: 40px;
        padding: 20px 0 0 0;
    }
    
    .ueber-uns-press-logos-row {
        gap: 25px;
        justify-content: space-between;
    }
    
    .ueber-uns-press-logo {
        max-height: 40px;
        max-width: 140px;
    }
}

/* Extra Small Devices */
@media (max-width: 575.98px) {
    .ueber-uns-main-box {
        padding: 30px 20px;
    }
    
    .ueber-uns-press-logos-row {
        gap: 20px;
        justify-content: space-between;
    }
    
    .ueber-uns-press-logo {
        max-height: 30px;
        max-width: 110px;
    }
}

