/* ==========================================
   HERO.CSS - Hero-Sektionen & Banner
   ========================================== */

/* Standard Hero */
.hero {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 22px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }
}

.hero-left {
    padding: 26px;
}

.hero-image {
    margin: 16px 0;
    border-radius: 12px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 300px;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hero-right {
    padding: 26px;
    background: linear-gradient(180deg, #fff, #fff) padding-box,
        linear-gradient(180deg, rgba(216, 27, 96, .35), rgba(17, 24, 39, .05)) border-box;
    border: 1px solid transparent;
}

.hero-right h2 {
    margin: 0 0 8px;
    font-size: 18px;
}

/* Modern Hero Section */
.modern-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    margin-top: -20px;
}

.modern-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.modern-hero-content {
    padding: 40px 0;
}

.modern-hero-content .kicker {
    display: inline-block;
    background: linear-gradient(135deg, #D81B60 0%, #A11245 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
}

.modern-hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D81B60;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.modern-hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #D81B60 0%, #A11245 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.badge-text {
    font-weight: 600;
    color: #1a1a1a;
}

/* Responsive Design für Modern Hero */
@media (max-width: 992px) {
    .modern-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .modern-hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        padding: 50px 0;
    }

    .modern-hero-content h1 {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-main-image {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .modern-hero {
        padding: 30px 0;
    }

    .modern-hero-content {
        padding: 20px 0;
    }

    .modern-hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-lead {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-stats {
        gap: 15px;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 40%;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-main-image {
        height: 250px;
    }

    .hero-badge {
        bottom: 20px;
        left: 20px;
        padding: 12px 20px;
    }

    .badge-icon {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }

    .badge-text {
        font-size: 14px;
    }
}
