/* 
 * applications.css - Anwendungsbereiche-Sektion Styles
 * LineTrack Website
 */

 .applications {
    background-color: var(--white);
}

.app-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.app-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.app-image {
    height: 200px;
    background-color: #e0e0e0;
    overflow: hidden;
}

.app-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-content {
    padding: 25px;
}

.app-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.app-text {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* Hover-Effekt für Karten */
.app-card:hover .app-title {
    color: var(--secondary-color);
}