/**
 * Karriere Styles - CSS für die Bewerbungsseite
 * 
 * Pfad: public/assets/css/pages/karriere.css
 * 
 * Funktionen:
 * - Styles für die Karriere-/Bewerbungsseite
 * - Hero Section mit Einführungstext
 * - Grid-Layout für Unternehmenswerte
 * - Vorteile-Liste mit Icons
 * - Stellenangebote-Cards
 * - Bewerbungs-Kontaktbereich
 * - Responsive Design für alle Bildschirmgrößen
 * 
 * Verwendet CSS-Variablen aus style.css:
 * --primary-color, --secondary-color, --accent-color
 * --text-dark, --text-light, --success-color, --border-color
 */

/* ==========================================================================
   Karriere Hero Section
   ========================================================================== */

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

.karriere-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.karriere-hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #e8f2ff;
}

.karriere-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #f0f7ff;
}

/* ==========================================================================
   Was uns ausmacht Section
   ========================================================================== */

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

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

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(44, 90, 160, 0.15);
}

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

.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;
}

/* ==========================================================================
   Vorteile Section
   ========================================================================== */

.karriere-benefits {
    padding: 80px 0;
    background: white;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--accent-color);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.benefit-description {
    color: var(--text-light);
    line-height: 1.4;
}

/* ==========================================================================
   Stellenangebote Section
   ========================================================================== */

.karriere-positions {
    padding: 80px 0;
    background: var(--secondary-color);
}

.positions-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

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

.position-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.position-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(44, 90, 160, 0.15);
    border-color: var(--primary-color);
}

.position-header {
    margin-bottom: 1.5rem;
}

.position-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #1a4480);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.position-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

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

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

.positions-note {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid var(--success-color);
}

.note-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
}

/* ==========================================================================
   Bewerbung Section
   ========================================================================== */

.karriere-apply {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.apply-intro {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.apply-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-info {
    max-width: 500px;
    margin: 0 auto 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--accent-color);
    border-radius: 16px;
    text-align: left;
}

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

.contact-content {
    flex: 1;
}

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

.contact-description {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #1a4480;
    text-decoration: underline;
}

.cta-button-wrapper {
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), #1a4480);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(44, 90, 160, 0.4);
    color: white;
    text-decoration: none;
}

/* ==========================================================================
   Icon Classes (Placeholder für Icon-Font)
   ========================================================================== */

.icon-team::before { content: "👥"; }
.icon-heart::before { content: "❤️"; }
.icon-communication::before { content: "💬"; }
.icon-growth::before { content: "📈"; }
.icon-location::before { content: "📍"; }
.icon-money::before { content: "💰"; }
.icon-time::before { content: "⏰"; }
.icon-family::before { content: "👨‍👩‍👧‍👦"; }
.icon-education::before { content: "🎓"; }
.icon-nature::before { content: "🌿"; }
.icon-nurse::before { content: "👩‍⚕️"; }
.icon-care::before { content: "🤝"; }
.icon-house::before { content: "🏠"; }
.icon-mail::before { content: "📧"; }

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

@media (max-width: 768px) {
    .karriere-hero {
        padding: 60px 0;
    }
    
    .karriere-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .karriere-hero .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .karriere-hero .hero-title {
        font-size: 2rem;
    }
    
    .value-item,
    .position-card,
    .contact-item {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}