/*
 * system.css - Systemübersicht-Sektion Styles
 * CleanCityPlus Website
 */

.system-overview {
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: var(--spacing-xl) 0;
}

.system-overview .section-title,
.system-overview .section-subtitle {
    color: var(--white);
}

.system-overview .section-subtitle {
    opacity: 0.9;
}

.system-content {
    display: flex;
    gap: 60px;
    margin-top: 50px;
    align-items: center;
}

.system-image {
    flex: 1;
    text-align: center;
}

.system-image img {
    max-width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.system-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.system-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    transition: var(--transition);
}

.system-feature:hover {
    background-color: rgba(255, 255, 255, 0.18);
    transform: translateX(5px);
}

.system-feature-icon {
    color: var(--secondary-color);
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.system-feature-text h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.system-feature-text p {
    opacity: 0.85;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .system-content {
        flex-direction: column;
    }

    .system-image {
        order: 1;
    }

    .system-features {
        order: 2;
    }
}
