/**
 * Careers Page CSS - Karriere, Jobs, Stellenausschreibungen
 * Für Alka-Go B2B Website
 */

/* Careers Page Specific Styles */
.careers-page {
    background: var(--light-gray);
}

.page-header {
    text-align: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--primary-white), var(--light-gray));
}

.page-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-neon));
    border-radius: 2px;
}

.page-subtitle {
    font-size: var(--font-size-xl);
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.value-card {
    background: var(--primary-white);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-neon));
    transform: translateY(-4px);
    transition: var(--transition-medium);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-red);
}

.value-card:hover::before {
    transform: translateY(0);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 8px rgba(220, 38, 38, 0.2));
}

.value-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: var(--font-size-base);
}

/* Job Listings */
.jobs-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.job-card {
    background: var(--primary-white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all var(--transition-medium);
    position: relative;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-neon));
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.job-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.job-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.job-title::before {
    content: '💼';
    font-size: var(--font-size-xl);
    filter: drop-shadow(0 2px 4px rgba(220, 38, 38, 0.3));
}

.job-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.job-location,
.job-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--medium-gray);
    font-size: var(--font-size-sm);
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.job-location::before {
    content: '📍';
    font-size: var(--font-size-sm);
}

.job-type::before {
    content: '⏰';
    font-size: var(--font-size-sm);
}

.job-content {
    padding: 2rem;
}

.job-content > p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: var(--font-size-lg);
    margin-bottom: 2rem;
}

.job-requirements {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.job-requirements h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--accent-red);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.job-requirements h4::before {
    content: '✓';
    color: var(--accent-neon);
    font-weight: 700;
}

.job-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-requirements li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

.job-requirements li:last-child {
    margin-bottom: 0;
}

.job-requirements li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-red);
    font-weight: 700;
}

.job-actions {
    padding: 0 2rem 2rem;
    display: flex;
    justify-content: flex-start;
}

.job-actions .btn {
    min-width: 160px;
}

/* Application Process */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    background: var(--primary-white);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    position: relative;
    transition: all var(--transition-medium);
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-red), #b91c1c);
    color: white;
    border-radius: 50%;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.process-step h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Process Step Connectors (Desktop only) */
@media (min-width: 1024px) {
    .process-step:not(:last-child)::after {
        content: '→';
        position: absolute;
        top: 50%;
        right: -1rem;
        transform: translateY(-50%);
        font-size: var(--font-size-2xl);
        color: var(--accent-neon);
        font-weight: 700;
        z-index: 2;
    }
}

/* Initiative Application */
.initiative-application {
    background: linear-gradient(135deg, var(--accent-neon), #00cc66);
    color: white;
    padding: 3rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.initiative-application::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    transform: rotate(45deg);
}

.initiative-application h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.initiative-application p {
    font-size: var(--font-size-lg);
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--accent-neon);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Button Variations */
.btn-large {
    padding: 1rem 2rem;
    font-size: var(--font-size-lg);
    min-width: 200px;
}

/* Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: var(--font-size-3xl);
    }
    
    .page-subtitle {
        font-size: var(--font-size-lg);
        padding: 0 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-icon {
        font-size: 2.5rem;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .job-card {
        border-radius: var(--border-radius);
    }
    
    .job-header {
        padding: 1.5rem;
    }
    
    .job-title {
        font-size: var(--font-size-xl);
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .job-meta {
        justify-content: center;
        gap: 1rem;
    }
    
    .job-content {
        padding: 1.5rem;
    }
    
    .job-requirements {
        padding: 1.25rem;
    }
    
    .job-actions {
        padding: 0 1.5rem 1.5rem;
        justify-content: center;
    }
    
    .job-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-xl);
        margin-bottom: 1rem;
    }
    
    .initiative-application {
        padding: 2rem 1.5rem;
        border-radius: var(--border-radius);
    }
    
    .initiative-application h2 {
        font-size: var(--font-size-2xl);
    }
    
    .initiative-application p {
        font-size: var(--font-size-base);
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: var(--font-size-2xl);
    }
    
    .value-card,
    .job-card,
    .process-step {
        border-radius: var(--border-radius);
    }
    
    .value-card,
    .process-step {
        padding: 1.25rem;
    }
    
    .value-card h3,
    .process-step h3 {
        font-size: var(--font-size-lg);
    }
    
    .job-header,
    .job-content {
        padding: 1.25rem;
    }
    
    .job-title {
        font-size: var(--font-size-lg);
    }
    
    .job-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .job-location,
    .job-type {
        font-size: var(--font-size-xs);
        padding: 0.4rem 0.8rem;
    }
    
    .job-requirements {
        padding: 1rem;
    }
    
    .job-actions {
        padding: 0 1.25rem 1.25rem;
    }
    
    .initiative-application {
        padding: 2rem 1rem;
    }
    
    .initiative-application h2 {
        font-size: var(--font-size-xl);
    }
}

/* Dark theme adjustments */
@media (prefers-color-scheme: dark) {
    .job-location,
    .job-type {
        background: var(--dark-gray);
        color: var(--light-gray);
    }
    
    .job-requirements {
        background: var(--dark-gray);
    }
}