/**
 * Logopädie Eike - Stellenangebote Seite
 * Ansprechendes, motivierendes Design
 */

/* ============================================
   Hero-Bereich
   ============================================ */

.stellenangebote-hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stellenangebote-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin: 0 0 2.5rem 0;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: #fff;
    color: #007bff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

/* ============================================
   Warum bei uns
   ============================================ */

.warum-bei-uns {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 3rem 0;
    color: #333;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #007bff;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    color: #007bff;
}

.benefit-card p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* ============================================
   Was wir suchen
   ============================================ */

.was-wir-suchen {
    padding: 4rem 2rem;
    background: #fff;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.suche-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 12px;
    border-left: 5px solid #007bff;
}

.suche-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
    color: #333;
}

.suche-liste {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.suche-liste li {
    padding: 0.75rem 0 0.75rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    color: #333;
}

.suche-liste li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.3rem;
}

.suche-highlight {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    font-size: 1.1rem;
    border-left: 4px solid #ffc107;
    font-style: italic;
}

/* ============================================
   Bewerbungsbereich
   ============================================ */

.bewerbung-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin: -1.5rem 0 2rem 0;
}

.logo-eike-bewerbung-form {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Vereinfachtes Formular
   ============================================ */

.logo-eike-form .form-group {
    margin-bottom: 1.5rem;
}

.logo-eike-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.logo-eike-form input[type="text"],
.logo-eike-form input[type="email"],
.logo-eike-form input[type="tel"],
.logo-eike-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.logo-eike-form input:focus,
.logo-eike-form textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.logo-eike-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* File Upload Styling */
.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px dashed #007bff;
    border-radius: 8px;
    background: #f0f7ff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.file-upload-label:hover {
    background: #e0f0ff;
    border-color: #0056b3;
}

.file-upload-icon {
    font-size: 2rem;
}

.file-upload-text {
    flex: 1;
    color: #007bff;
    font-weight: 500;
}

.file-info {
    display: block;
    margin-top: 0.5rem;
    color: #28a745;
    font-size: 0.9rem;
    font-weight: 500;
}

.privacy-check {
    margin: 2rem 0 1.5rem 0;
}

.privacy-check label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: normal;
    cursor: pointer;
}

.privacy-check input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
    cursor: pointer;
}

.privacy-check a {
    color: #007bff;
    text-decoration: underline;
}

.submit-button {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.button-loader {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.logo-eike-form-message {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-radius: 8px;
    display: none;
    font-weight: 500;
}

.logo-eike-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
    display: block;
}

.logo-eike-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
    display: block;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .suche-content {
        padding: 2rem 1.5rem;
    }
    
    .logo-eike-bewerbung-form {
        padding: 2rem 1.5rem;
    }
    
    .stellenangebote-hero {
        padding: 3rem 1.5rem;
    }
    
    .warum-bei-uns,
    .was-wir-suchen,
    .bewerbung-section {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .logo-eike-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Animationen
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card,
.suche-content,
.logo-eike-bewerbung-form {
    animation: fadeInUp 0.6s ease-out;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }

