/* Style général */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Styles généraux */
.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-color: #fff;
}

/* Top Bar */
.top-bar {
    background-color: #302487; /* Couleur bleu foncé */
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

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

.social-links a {
    color: #fff;
    margin-right: 10px;
}

.contact-info i {
    margin-right: 5px;
}

/* Navigation */
nav {
    padding: 20px 0;
    background: linear-gradient(to right, #f2d7a5, #d08848); /* Gradient orange */
}

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

.logo img {
    height: 50px; /* Ajustez la taille du logo */
}

.search-bar {
    display: flex;
}

.search-bar input {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    width: 200px;
}

.search-bar button {
    background-color: #198754; /* Vert */
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.connexion-btn {
    background-color: #198754; /* Vert */
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
}
.connexion-btn i {
    margin-right: 5px;
}
/* Navigation Links */
.nav-links-container {
    background-color: #302487; /* Couleur bleu foncé */
    padding: 10px 0;
}

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

.nav-links li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}

.nav-links li a:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Léger survol */
}

.nav-links li a.faq-btn {
    background-color: #198754; /* Vert */
    border-radius: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    color: #fff;
}

.hero-image img {
    width: 100%;
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Whatsapp button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366; /* Vert WhatsApp */
    color: #fff;
    font-size: 2em;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 2;
}

/* Formulaire d'inscription */
.registration-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 20px auto;
}

.registration-form h1 {
    text-align: center;
    color: #007BFF;
    margin-bottom: 20px;
}

.registration-form h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
}

.registration-form .container {
    max-width: 800px;
}

.registration-form form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.form-group input[type="file"] {
    padding: 5px;
}

.form-group p {
    font-size: 12px;
    color: #666;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 0.9em;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 5px;
}

/* Bouton de soumission */
.registration-form button {
    background-color: #00bcd4; /* Couleur bleu clair */
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    width: auto;
    align-self: center; /* Centrer le bouton horizontalement */
}

button.next-button {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    margin-top: 20px;
}

button.next-button:hover {
    background-color: #0056b3;
}

button.back-button {
    background-color: #6c757d;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    margin-top: 10px;
}

button.back-button:hover {
    background-color: #5a6268;
}

button {
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    transform: scale(1.05);
}

/* Barre de progression */
.progress-bar {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 0 10px;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #007bff;
    top: 50%;
    left: 0;
    z-index: -1;
}

.step.active::after {
    background: #198754; /* Vert */
}

.step.completed::after {
    background: #6c757d; /* Gris */
}

.step:first-child::after {
    content: none;
}

.step.completed {
    color: #6c757d; /* Gris */
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        align-items: flex-start;
    }

    nav .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
    }

    .nav-links li {
        margin-bottom: 10px;
    }

    .hero-content {
        font-size: 1.5em;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group {
        width: 100%;
        margin-bottom: 15px;
    }

    .progress-bar {
        flex-direction: column;
    }

    .step {
        margin-bottom: 10px;
    }

    .registration-form {
        padding: 10px;
        width: 90%;
    }

    button {
        font-size: 14px;
    }
}

/* START: Footer Styles */
.footer-container {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    margin: 10px;
    min-width: 200px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #f1c40f;
}

.footer-section p, .footer-section ul, .footer-section li {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #f1c40f;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 12px;
    color: #bbb;
}
/* END: Footer Styles */