/**
 * SEO Bezirke Content Styling
 * Professional styling for district-based SEO content
 */

.seo-bezirke-section {
    background: #f8f9fa;
}

.seo-toc {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.bezirk-link {
    background: white;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef !important;
}

.bezirk-link:hover {
    background: linear-gradient(135deg, #c41e3a 0%, #e52a3d 100%);
    color: white !important;
    transform: translateY(-2px);
    border-color: #c41e3a !important;
}

.bezirk-link:hover i,
.bezirk-link:hover strong {
    color: white !important;
}

.hover-shadow {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bezirk-link:hover.hover-shadow {
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.3);
}

.bezirk-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.bezirk-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 2rem;
    padding-bottom: 15px;
    border-bottom: 3px solid #c41e3a;
    display: inline-block;
}

.bezirk-intro {
    color: #555;
    font-size: 1.1rem;
}

.service-card {
    background: #fff;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef !important;
}

.service-card:hover {
    border-color: #c41e3a !important;
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.service-card h3 {
    color: #2c3e50;
    font-weight: 600;
}

.service-card .bi {
    font-size: 1.5rem;
}

.service-card ul li {
    padding: 5px 0;
    color: #666;
}

.district-cta {
    border: 2px dashed #c41e3a;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%) !important;
}

.district-cta h4 {
    color: #c41e3a;
    font-weight: 700;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 768px) {
    .seo-toc {
        padding: 25px;
    }

    .bezirk-section {
        padding: 25px;
    }

    .bezirk-title {
        font-size: 1.5rem;
    }

    .bezirk-link {
        font-size: 0.9rem;
    }
}

/* Print Optimization - Hide SEO content in print */
@media print {
    .seo-bezirke-section {
        display: none;
    }
}
