/**
 * Erweiterte Stile für den Service-Bereich
 * Verbesserte Darstellung und Filteroptionen
 */

/* Service Filter Navigation - Verbesserte Darstellung */
.service-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    background-color: #f0f0f0;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.filter-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 3px 8px rgba(76, 175, 80, 0.3);
}

/* Erweiterte Service-Karten mit verbesserter Animation */
.service-card {
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.service-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Wichtig: Sorgt dafür, dass die Karten beim ersten Laden sichtbar sind */
.services .service-card {
    opacity: 1;
    transform: translateY(0);
}

/* Saisonale Hervorhebung */
.seasonal-highlight {
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: visible;
}

.seasonal-highlight::before {
    content: 'Aktuell besonders gefragt';
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-bright);
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* Service-Übersicht-Box */
.service-overview-box {
    background-color: var(--primary-light);
    color: white;
    padding: 30px;
    border-radius: 6px;
    margin-top: 50px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-overview-box h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-overview-box p {
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-overview-box .cta-button {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 12px 25px;
}

.service-overview-box .cta-button:hover {
    background-color: var(--accent-color);
    color: white;
}

/* 
 * Die folgenden CSS-Regeln wurden am 05.04.2025 entfernt, da sie nirgends genutzt werden:
 * - .filter-hint und .filter-count sind in keiner HTML-Datei vorhanden
 * - In service-filter.js (Zeile 28) findet sich nur ein Kommentar, dass der Filter-Hint entfernt wurde
 * - Es gibt keine JS-Funktionen, die diese Klassen dynamisch hinzufügen oder abfragen
 */

/* Keine Ergebnisse Anzeige */
.no-results {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 6px;
    border: 1px dashed #ddd;
    margin-top: 20px;
    display: none;
}

.no-results i {
    font-size: 32px;
    color: #aaa;
    margin-bottom: 15px;
}

.no-results p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .service-filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .seasonal-highlight::before {
        right: 10px;
        font-size: 0.7rem;
        padding: 3px 10px;
    }
}

@media (max-width: 480px) {
    .service-filter {
        flex-direction: column;
        align-items: center;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .filter-btn {
        width: 100%;
        text-align: center;
        padding: 8px 5px;
    }
}
