/* Category Page Styles - Service/Portfolio Layout */

.service-intro {
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
    padding: 60px var(--spacing) 0;
}

.service-intro h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.service-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.service-content {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 var(--spacing);
}

.service-description {
    margin-bottom: 60px;
}

.service-description h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-description p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 15px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0 40px 0;
}

.service-item {
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid var(--color-border);
    border-radius: 4px;
}

.service-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 60px 0;
}

.cta-section h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: #9b9b9b;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #9b9b9b;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
}

.cta-btn:hover {
    background: #9b9b9b;
    color: #ffffff;
    border-color: #9b9b9b;
    transform: translateY(-2px);
}

/* Examples Section */
.examples-section {
    margin-top: 80px;
}

.examples-section h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.example-item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.example-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: var(--color-text-light);
}

.example-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.example-info {
    padding: 20px;
}

.example-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.example-info p {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
}

.example-info .werk-kunde {
    font-size: 13px;
    color: var(--color-text-light);
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .service-intro {
        padding: 40px var(--spacing) 0;
    }
    
    .service-intro h2 {
        font-size: 32px;
    }
    
    .service-intro p {
        font-size: 16px;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .example-image {
        height: 250px;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-section h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .service-intro h2 {
        font-size: 28px;
    }
    
    .examples-section h3 {
        font-size: 28px;
    }
}

