body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    color: #343a40;
}

nav {
    background-color: #007bff;
    padding: 15px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 24px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0056b3;
}

.container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

main {
    min-height: 80vh;
    padding: 20px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #007bff;
    text-align: center;
    margin-top: 30px;
    font-size: 2.5em;
    font-weight: 700;
}

form {
    width: 100%;
    max-width: 400px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

form:hover {
    transform: translateY(-5px);
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #007bff;
}

input[type="text"], input[type="email"], input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    transition: border-color 0.3s;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s, transform 0.3s;
}

button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}
.job-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0; /* Augmenter le padding pour plus d'espace */
    gap: 20px; /* Utiliser gap pour un espacement uniforme */
}

.job-carousel .job-card {
    flex: 0 0 auto;
    width: 900px; /* Multiplier la largeur par 3 */
    scroll-snap-align: start;
    border: 1px solid #ced4da; /* Utiliser la même couleur de bordure que les inputs */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Harmoniser avec le box-shadow des formulaires */
    transition: transform 0.3s, box-shadow 0.3s; /* Ajouter des transitions */
}

.job-carousel .job-card:hover {
    transform: translateY(-5px); /* Effet de survol */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Ombre plus prononcée au survol */
}

.job-carousel .job-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-bottom: 1px solid #ced4da; /* Ajouter une bordure pour séparer l'image du texte */
}

.job-carousel .job-card .job-info {
    padding: 20px; /* Augmenter le padding pour plus de confort */
    background-color: #ffffff; /* Fond blanc pour contraster avec la bordure */
}

.job-carousel .job-card .job-info h3 {
    margin-top: 0;
    color: #007bff; /* Utiliser la couleur principale du site */
    font-size: 1.5em; /* Augmenter la taille du titre */
}

.job-carousel .job-card .job-info p {
    color: #343a40; /* Utiliser la couleur de texte principale */
    font-size: 1em; /* Taille de texte cohérente */
}

.site-footer {
    background-color: #007bff; /* Utiliser la même couleur de fond que la navbar */
    color: white;
    padding: 40px 0 20px;
    font-family: 'Roboto', sans-serif;
}

.site-footer h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.site-footer p {
    color: #f8f9fa; /* Couleur de texte légèrement plus claire pour le contraste */
}

.site-footer a {
    color: #f8f9fa;
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: #0056b3; /* Utiliser la même couleur de survol que la navbar */
}

.site-footer ul {
    list-style: none;
    padding: 0;
}

.site-footer ul li {
    margin-bottom: 10px;
}

.site-footer hr {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

.site-footer .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.site-footer .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.site-footer .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
    box-sizing: border-box;
}

.site-footer .text-center {
    text-align: center;
    width: 100%;
}

.site-footer .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}
.large-textarea {
    width: 410px;
    height: 190px;
}
