/* Styles professionnels pour la page Carrières */

/* Hero Section */
.page-hero {
    background: linear-gradient(135deg, #003366 0%, #0052a3 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.page-hero p {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Intro Section */
.carrieres-intro {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 48px;
    color: #DC143C;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Offres Section */
.offres-section {
    padding: 80px 0;
    background-color: white;
}

.no-offres {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.no-offres p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

/* Candidature Section */
.candidature-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.candidature-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.candidature-info-box {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.candidature-info-box h2 {
    font-size: 32px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 20px;
}

.candidature-info-box > p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.candidature-process {
    margin-bottom: 40px;
}

.candidature-process h3 {
    font-size: 24px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 20px;
}

.candidature-process ul {
    list-style: none;
    padding: 0;
}

.candidature-process li {
    font-size: 16px;
    color: #444;
    line-height: 2;
    padding-left: 30px;
    position: relative;
}

.candidature-process li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #DC143C;
    font-weight: bold;
    font-size: 18px;
}

.profils-recherches h3 {
    font-size: 24px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 20px;
}

.profil-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    background: linear-gradient(135deg, #003366 0%, #0052a3 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tag:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.3);
}

/* Form Box */
.candidature-form-box {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.candidature-form-box h2 {
    font-size: 32px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 30px;
}

.candidature-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.candidature-form .form-group {
    margin-bottom: 25px;
}

.candidature-form label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.candidature-form input,
.candidature-form select,
.candidature-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.candidature-form input:focus,
.candidature-form select:focus,
.candidature-form textarea:focus {
    outline: none;
    border-color: #003366;
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.candidature-form small {
    display: block;
    font-size: 13px;
    color: #999;
    margin-top: 6px;
}

.candidature-form .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 32px;
    }
    
    .page-hero p {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .candidature-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .candidature-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .candidature-info-box,
    .candidature-form-box {
        padding: 30px 25px;
    }
    
    .candidature-info-box h2,
    .candidature-form-box h2 {
        font-size: 26px;
    }
}
