/* Mobile Hero Section */
.hero-mobile {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    padding: 1rem 0;
}

.hero-mobile-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin: 0 auto 1rem;
    display: block;
}

.hero-mobile-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 540px;
    margin: 0 auto;
}

.hero-mobile-content h1 {
    font-size: 2rem;
    margin: 0;
    color: #fff;
}

.hero-mobile-content h2 {
    font-size: 1.5rem;
    margin: 0;
}

.hero-mobile-content .lead {
    font-size: 1.15rem;
    margin: 0;
}

/* Tablet Anpassungen */
@media (min-width: 576px) {
    .hero-mobile-img {
        width: 150px;
        height: 150px;
        margin-bottom: 1.25rem;
    }
    
    .hero-mobile-content {
        gap: 0.75rem;
    }
    
    .hero-mobile-content h1 {
        font-size: 2.25rem;
    }
}

/* Höhere Bildschirme */
@media (min-height: 700px) {
    .hero-mobile {
        min-height: auto;
        padding: 1.5rem 0;
    }
}

/* Optimierte Abstände für mobile Ansicht */
.mobile-hero-inner .text-center.mb-4 {
    margin-bottom: 1rem !important;
}

.mobile-hero-inner .lead {
    margin-bottom: 1.25rem !important;
}

.mobile-hero-inner h1 {
    margin-bottom: 0.75rem !important;
}

.mobile-hero-inner h2 {
    margin-bottom: 1rem !important;
}

.mobile-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.mobile-hero-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.hero-section-mobile .container {
    position: relative;
    z-index: 2;
}

.mobile-hero-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    clip-path: ellipse(50% 60px at 50% 60px);
    z-index: 3;
}

/* Mobile Responsive Styles */
@media (max-width: 576px) {
    .hero-section-mobile .display-4 {
        font-size: 2.5rem;
    }
    
    .hero-section-mobile .lead {
        font-size: 1.1rem;
    }
    
    .mobile-hero-image {
        width: 150px;
        height: 150px;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 768px) {
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    .btn {
        white-space: normal;
        word-wrap: break-word;
    }
}
