/* assets/css/jobs.css */

/* Hero Section */
.jobs-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    position: relative;
}

.jobs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--moonflow-gradient);
    opacity: 0.1;
    z-index: -1;
}

.jobs-hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.jobs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--moonflow-gradient);
    opacity: 0.1;
    z-index: -1;
}

/* Job Cards */
.job-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(116, 58, 213, 0.1);
    color: inherit;
}

.job-content {
    padding: 1.5rem;
}

.job-title {
    font-size: 1.3rem;
    color: var(--moonflow-purple);
    margin-bottom: 1rem;
}

.job-excerpt {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Contact Person */
.job-contact {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid #dee2e6;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-avatar,
.contact-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.contact-avatar {
    object-fit: cover;
}

.contact-avatar-placeholder {
    background: var(--moonflow-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-name {
    font-weight: 500;
}

.contact-position {
    font-size: 0.85rem;
    color: #6c757d;
}

/* No Jobs Message */
.no-jobs-icon {
    font-size: 4rem;
    color: var(--moonflow-purple);
    opacity: 0.5;
}

/* Benefits Section */
.benefit-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--moonflow-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    color: var(--moonflow-purple);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .jobs-hero {
        text-align: center;
        padding: 3rem 0;
    }
    
    .jobs-hero img {
        margin-top: 2rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
}