/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #F8FAFC;
    color: #333;
}

/* CONTAINER GLOBAL */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* HEADER */

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 1000;
}

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

.logo img {
    height: 60px; /* Taille imposée */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav ul li a.active {
    color: #0057B7; /* Remplace cette couleur par celle que tu veux */
    /* Facultatif pour rendre le texte plus visible */
}
nav ul li {
    display: inline;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.btn-header {
    background-color: #6CBF43;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
}
/* VIDEO SECTION */
.video-section {
     margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 50px;
    text-align: center;
}

.video-section h1 {
    font-size: 2.5em;
    color: #0057B7;
}

.video-section iframe {
    width: 80%;
    max-width: 800px;
    height: 400px;
}

/* SERVICES SECTION */
/* SECTION SERVICES */
.services {
    padding: 80px 20px;
    text-align: center;
    background-color: #F8F9FA;
}

/* Conteneur du carrousel */
.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
    position: relative;
}

/* Carrousel - il doit permettre un défilement horizontal */
.services-carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 500px; /* Largeur du carrousel */
    scroll-behavior: smooth;
}

/* Cartes */
.card {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 20px;
    min-width: 100%; /* Une seule carte visible */
    max-width: 100%;
    text-align: left;
    transition: transform 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Images dans les cartes */
.card img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Flèches */
.arrow-left, .arrow-right {
    background: #6CBF43;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1.5em;
    cursor: pointer;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.arrow-left {
    left: -50px;
}

.arrow-right {
    right: -50px;
}

/* Points du carrousel */
.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    transition: background-color 0.3s ease-in-out;
    cursor: pointer;
}

.dot.active {
    background-color: #6CBF43;
}
/* FOOTER */
footer {
    background: #2C3E50;
    color: white;
    text-align: center;
    padding: 20px 0;
}
