/* Styles généraux */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
}

/* En-tête */
header {
    background: #007bff;
    color: white;
    text-align: center;
    padding: 20px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Bannière principale */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: url('../images/hero-banner.jpg') no-repeat center center/cover;
    color: white;
}

/* Boutons */
.btn {
    display: inline-block;
    margin: 10px;
    padding: 12px 25px;
    background: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: 0.3s;
}

.btn:hover {
    background: #218838;
}

.btn-primary {
    background: #007bff;
}

.btn-primary:hover {
    background: #0056b3;
}

/* Section Fonctionnalités */
.features {
    text-align: center;
    padding: 50px 20px;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Section Témoignages */
.testimonials {
    background: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: #007bff;
    color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
}

/* Section FAQ */
.faq-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: #007bff;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.faq-answer {
    display: none;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

/* Formulaire Contact */
.contact-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #28a745;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1.2em;
}

button:hover {
    background: #218838;
}

/* Bouton WhatsApp flottant */
#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

#whatsapp-button img {
    width: 40px;
    height: 40px;
}

/* Pied de page */
footer {
    text-align: center;
    background: #333;
    color: white;
    padding: 20px;
    margin-top: 20px;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
#google_translate_element {
    display: block !important;
    text-align: right;
    margin: 10px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9999;
}
/* Styles généraux pour la vidéo */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* Largeur maximale sur desktop */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
}

.video-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9; /* Maintient le ratio 16:9 pour éviter le débordement */
}

@media (max-width: 768px) {
    .video-container {
        max-width: 100%; /* Prend toute la largeur sur mobile */
        padding: 0 10px;
    }
}
