﻿/* Overlay über Video */
.apply-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    padding: 84px 16px 24px; /* Platz für Navbar */
}

/* Card */
.apply-card {
    width: min(880px, 100%);
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,.25);
    backdrop-filter: blur(10px);
    padding: 22px;
}

/* Head */
.apply-back {
    display: inline-block;
    margin-bottom: 10px;
    text-decoration: none;
    color: rgba(255,255,255,0.85);
}

    .apply-back:hover {
        color: #fff;
    }

.apply-title {
    margin: 0;
    font-weight: 800;
}

.apply-subtitle {
    margin: 6px 0 0;
    opacity: .95;
}

.apply-hero {
    margin: 0 0 10px 0;
    line-height: 1.2;
    font-weight: 400;
}

    .apply-hero strong:first-child {
        font-weight: 800;
        font-size: 1.6rem;
    }

.apply-als {
    font-weight: 400;
    margin: 0 6px;
    opacity: 0.85;
}

.apply-job {
    font-weight: 900;
    font-size: 2rem;
    color: #ff7a00; /* Orange */
}


/* Form layout */
.apply-form {
    margin-top: 18px;
}

.apply-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.apply-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    opacity: .95;
}

.apply-field input,
.apply-field textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
    color: #fff;
    padding: 10px 12px;
    outline: none;
}

    .apply-field input:focus,
    .apply-field textarea:focus {
        border-color: rgba(255,255,255,0.35);
        background: rgba(255,255,255,0.10);
    }

.apply-field-wide {
    grid-column: 1 / -1;
}

.apply-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 6px;
}

.apply-hint {
    margin-top: 14px;
    font-size: .95rem;
    opacity: .85;
}

@media (max-width: 768px) {
    .apply-grid {
        grid-template-columns: 1fr;
    }

@media (min-width: 768px) {
    .apply-hero strong:first-child {
        font-size: 2rem;
    }

    .apply-job {
        font-size: 2.6rem;
    }
}
