/**
 * Team-Seite Styles - Teamdarstellung mit Cards
 * Datei: public/assets/css/pages/team.css
 * 
 * Funktionen:
 * - Grid-Layout für Teambereiche
 * - Platzhalter für Teamfoto
 * - Team-Cards für verschiedene Fachbereiche
 * - Values-Grid für Teamwerte
 * - Call-to-Action für Karriereseite
 * - Responsive Design
 * 
 * Verwendet CSS-Variablen aus style.css:
 * --primary-color, --secondary-color, --accent-color
 * --text-dark, --text-light, --border-color
 */

/* ==========================================================================
   Team Intro Section
   ========================================================================== */

.intro-section {
    padding: 60px 0;
    background: white;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content .lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ==========================================================================
   Team Photo Placeholder
   ========================================================================== */

.team-photo-section {
    padding: 40px 0;
    background: var(--secondary-color);
}

.team-photo-placeholder {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    border: 2px dashed var(--border-color);
    transition: all 0.3s ease;
}

.team-photo-placeholder:hover {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.placeholder-content i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.placeholder-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.placeholder-note {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ==========================================================================
   Team Areas Grid
   ========================================================================== */

.team-areas-section {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--secondary-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.1);
    border-color: var(--primary-color);
}

.team-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.team-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.team-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-tasks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-tasks li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.4;
}

.team-tasks li:before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.25rem;
}

/* Hervorgehobene Team Card (Palliative Care) */
.team-highlight {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border: 2px solid rgba(255, 107, 107, 0.2);
}

.team-highlight .team-icon {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
}

/* ==========================================================================
   Team Values Section
   ========================================================================== */

.team-values-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.value-description {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* ==========================================================================
   Team CTA Section
   ========================================================================== */

.team-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4480 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: #e8f2ff;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    .team-areas-section,
    .team-values-section,
    .team-cta-section {
        padding: 60px 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .team-card {
        padding: 1.5rem;
    }
    
    .team-title {
        font-size: 1.25rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}