/* Über uns Sektion */
.about-us {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000000;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: -120px;
    padding-top: 120px;
    z-index: 1;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 1) 70%);
    z-index: 1;
}

.about-us .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.about-us .row {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
}

/* Text-Bereich - modernisiert ohne Kachel */
.about-text {
    padding: 2rem;
    height: 100%;
}

/* Titel auf einer Linie */
.about-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.nowrap {
    white-space: nowrap !important;
}

/* Pulsierende Animation für "digital" */
.about-text h2 .text-white {
    display: inline-block;
    position: relative;
    animation: glow-strong 2s ease-in-out infinite alternate;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}

@keyframes glow-strong {
    0% {
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
    }
    100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 1),
                    0 0 35px rgba(240, 58, 112, 0.8),
                    0 0 50px rgba(240, 58, 112, 0.5);
    }
}

.about-text h2 .text-gradient {
    background: linear-gradient(45deg, var(--logo-gradient-start), var(--logo-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

/* Untertitel mit Zeilenumbruch */
.about-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-color);
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.about-text p.lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Bild-Bereich mit leuchtendem Kreis - DEUTLICH größer */
.about-image-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
    padding-left: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-20px);
}

.about-image {
    width: 180% !important; /* NOCH größer */
    height: auto;
    display: block;
    border-radius: 15px;
    position: relative;
    z-index: 1;
    max-width: none !important; /* Bootstrap img-fluid überschreiben */
    transform: scale(1.2); /* Zusätzliche Vergrößerung */
}

/* Leuchtender Kreis-Effekt */
.about-image-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -65%);
    width: 280px; /* Größerer Kreis */
    height: 280px; /* Größerer Kreis */
    border-radius: 50%;
    background: rgba(240, 58, 112, 0.1);
    box-shadow: 
        0 0 30px 10px rgba(240, 58, 112, 0.2),
        0 0 60px 20px rgba(240, 58, 112, 0.1),
        0 0 100px 30px rgba(240, 58, 112, 0.05);
    filter: blur(5px);
    z-index: 0;
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.7;
        box-shadow: 
            0 0 30px 10px rgba(240, 58, 112, 0.2),
            0 0 60px 20px rgba(240, 58, 112, 0.1),
            0 0 100px 30px rgba(240, 58, 112, 0.05);
    }
    100% {
        opacity: 1;
        box-shadow: 
            0 0 40px 15px rgba(240, 58, 112, 0.3),
            0 0 80px 25px rgba(240, 58, 112, 0.2),
            0 0 120px 35px rgba(240, 58, 112, 0.1);
    }
}

/* Mobile First - Komplette Neudefinition */
@media (max-width: 768px) {
    .about-us {
        position: static !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 2rem 1rem !important;
        min-height: auto !important;
        display: block !important;
        background: #000000 !important;
        overflow: visible !important;
    }
    
    .about-us::before {
        display: none !important;
    }
    
    .about-us .container {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .about-us .row {
        display: block !important;
        flex-direction: column !important;
        margin: 0 !important;
    }
    
    .about-text {
        margin-bottom: 2rem !important;
        padding: 1rem !important;
        text-align: center !important;
    }
    
    .about-text h2 {
        font-size: 2rem !important;
        white-space: normal !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }
    
    .about-text h3 {
        font-size: 1.2rem !important;
        white-space: normal !important;
        margin-bottom: 1rem !important;
    }
    
    .about-text p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1rem !important;
    }
    
    .about-image-container {
        padding: 1rem !important;
        transform: none !important;
        text-align: center !important;
    }
    
    .about-image-container::before {
        display: none !important;
    }
    
    .about-image {
        width: 80% !important;
        max-width: 200px !important;
        transform: none !important;
        border-radius: 50% !important;
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    .about-us {
        padding: 3rem 1rem !important;
        margin-top: 0 !important;
        width: 100% !important;
        margin-left: 0 !important;
        display: block !important;
        min-height: auto !important;
    }
    
    .about-us .row {
        flex-direction: column !important;
    }
    
    .about-text {
        text-align: center !important;
        margin-bottom: 2rem !important;
    }
    
    .about-text h2 {
        font-size: 2.5rem !important;
        white-space: normal !important;
    }
    
    .about-text h3 {
        font-size: 1.4rem !important;
        white-space: normal !important;
    }
}
