/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* Body & Global */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #009369;
    margin: 0;
    padding: 0;
}



/* ============================ */
/* NAVBAR */
/* ============================ */

.navbar {
    width: 100%;
    background: #222222; /* FOND ROUGE */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.navbar .container {
    max-width: 1250px;
    padding: 0 20px;
    margin: auto;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 55px;
}

/* Desktop nav */
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

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

.nav-links li a:hover {
    opacity: 0.7;
}

.btn-nav {
    background: rgb(252, 181, 0);
    color: #222222 !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
}

/* ============================ */
/* MOBILE */
/* ============================ */

.mobile-menu {
    background: #222222;
    display: none;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    padding: 12px 0;
    font-size: 18px;
}

.btn-mobile {
    background: white;
    color: #222222 !important;
    padding: 10px 0;
    margin-top: 10px;
    border-radius: 6px;
    font-weight: 700;
}

/* ============================ */
/* RESPONSIVE */
/* ============================ */

@media(max-width: 900px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}






/* ---------------- HERO ---------------- */
/* ---------------- HERO ---------------- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 80px 50px;
    background: linear-gradient(135deg, #710303 0%, #0abf95 100%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

/* --- TEXTE À GAUCHE --- */
.hero-text {
    flex: 1 1 450px;
    max-width: 550px;
}

.hero-text h1 {
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 0px; /* pas de bouton, pas de gap inutile */
}

/* --- FORMULAIRE À DROITE --- */
.hero-form {
    flex: 1 1 380px;
    display: flex;
    justify-content: center;
}

.newsletter-wrapper {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
    max-width: 420px;
    width: 100%;
}

/* Titres internes */
.newsletter-wrapper h2 {
    font-size: 20px;
    font-weight: 700;
    color: #03715c;
    margin-bottom: 20px;
    text-align: center;
}

/* Champs */
.newsletter-form input,
.newsletter-form select {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #03715c;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
}

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

.phone-row {
    display: flex;
    gap: 10px;
}

/* Bouton */
.newsletter-form button {
    width: 100%;
    background: #03715c;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.newsletter-form button:hover {
    background: #0abf95;
    transform: translateY(-3px);
}

/* Messages */
.newsletter-message {
    display: none;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.newsletter-message.error {
    background: #ffcece;
    color: #900;
}

.newsletter-message.success {
    background: #d5f7e6;
    color: #0a7a4f;
}

/* --------- MOBILE --------- */
@media (max-width: 900px) {
    .hero {
        padding: 50px 20px;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-form {
        width: 100%;
        margin-top: 30px;
    }

    .newsletter-wrapper {
        max-width: 100%;
    }
}




/* ---------------- TESTIMONIALS ---------------- */
.testimonials-section {
    background: #f9f9f9;
    color: #333;
    padding: 50px 20px;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

.testimonials-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.testimonial {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    max-width: 300px;
    flex: 1 1 250px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: left;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-header img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #03715c;
}

.user-info strong {
    display: block;
    font-weight: 600;
    font-size: 16px;
}

.stars {
    color: #f5c518; /* couleur étoiles Google */
    font-size: 14px;
}

.testimonial p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* Note style Google */
.testimonials-note {
    margin-top: 30px;
    font-size: 13px;
    color: #777;
    font-style: italic;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .testimonials-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .testimonial {
        max-width: 100%;
    }
}



/* ====================================== */
/* FOOTER                                */
/* ====================================== */
/* Footer CSS */
.footer-section {
    background: #222222;
    color: white;
    padding: 60px 20px 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    width: 150px;
    margin-bottom: 10px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.footer-column ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
}

@media screen and (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-logo {
        align-items: center;
    }
}


#background-audio {
    display: none;
}
