/* Kooperations-Sektion */
.cooperation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0efed 0%, #e8e6e3 100%);
    position: relative;
    overflow: hidden;
}

.cooperation-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 100, 66, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cooperation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cooperation-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #c96442;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.cooperation-info h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1e1e1e;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.cooperation-info p {
    font-size: 16px;
    color: #1e1e1e;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.8;
    font-weight: 300;
}

.cooperation-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(8px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #c96442;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 16px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e1e1e;
    margin-bottom: 4px;
}

.feature-text span {
    font-size: 14px;
    color: #1e1e1e;
    opacity: 0.7;
    font-weight: 300;
}

.cooperation-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cooperation-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.cooperation-btn.primary {
    background-color: #c96442;
    color: #f0efed;
}

.cooperation-btn.primary:hover {
    background-color: #b55438;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 100, 66, 0.3);
}

.cooperation-btn.secondary {
    background-color: transparent;
    color: #1e1e1e;
    border: 1px solid #1e1e1e;
}

.cooperation-btn.secondary:hover {
    background-color: #1e1e1e;
    color: #f0efed;
}

/* Fotograf-Karte */
.photographer-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 40px rgba(30, 30, 30, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.photographer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #c96442, #e8796a);
}

.photographer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 60px rgba(30, 30, 30, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.photographer-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 16px;
    border: 3px solid #c96442;
}

.photographer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photographer-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 4px;
}

.photographer-info span {
    font-size: 14px;
    color: #c96442;
    font-weight: 500;
}

.card-content p {
    font-size: 15px;
    color: #1e1e1e;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
    opacity: 0.8;
    font-weight: 300;
}

.portfolio-preview {
    display: flex;
    gap: 8px;
    align-items: center;
}

.preview-item {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #f0efed;
    transition: transform 0.2s ease;
}

.preview-item:hover {
    transform: scale(1.1);
    z-index: 10;
    position: relative;
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-more {
    width: 48px;
    height: 48px;
    background: #c96442;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #f0efed;
}

/* Responsive */
@media (max-width: 768px) {
    .cooperation-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cooperation-buttons {
        justify-content: center;
    }
    
    .cooperation-info h2 {
        font-size: 32px;
    }
    
    .photographer-card {
        margin: 0 auto;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .cooperation-section {
        padding: 60px 0;
    }
    
    .card-header {
        text-align: center;
        flex-direction: column;
    }
    
    .photographer-avatar {
        margin-right: 0;
        margin-bottom: 12px;
    }
}