/* Section Héros */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px 20px;
    width: 100%;
    height: 100%;
}

.hero-logo {
    width: 80px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 20px auto;
    font-size: 1.2rem;
}

.hero-actions input[type="text"] {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    width: 100%;
    max-width: 300px;
    margin-bottom: 10px;
}

.hero-actions a {
    padding: 10px 20px;
    background-color: #555b60;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.hero-actions a:hover {
    background-color: #555b60;
}

/* Section Présentation */
.presentation-section {
    padding: 60px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    background-color: white;
}

.presentation-text {
    max-width: 600px;
}

.presentation-text h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.presentation-text p {
    font-size: 1.1rem;
    color: #333;
}

.presentation-img {
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 20px;
}

/* Section Candidature */
.candidature-section {
    background-color: #e0e7ff;
    padding: 50px 20px;
    text-align: center;
}

.candidature-box {
    background-color: #01559b;
    color: white;
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    font-size: 1.2rem;
}

.candidature-box a {
    color: #a5f3fc;
    text-decoration: underline;
}
