/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Police globale */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  color: #000;
}

/* ============================ */
/* 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 Section */
.services-hero {
  display: flex;
  flex-wrap: nowrap;           /* Empêche le passage à la ligne */
  align-items: center;         /* Centre verticalement */
  justify-content: space-between; /* Texte à gauche, image à droite */
  background-color: #222222;   /* Fond rouge */
  color: #ffffff;
  padding: 80px 20px;
}

.hero-text {
  flex: 0 1 40%;               /* Réduit un peu la largeur du texte */
  max-width: 500px;            /* Limite largeur texte */
  padding: 20px;
}

.hero-text h1 {
  font-size: 34px;             /* Réduit la taille du titre */
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-text p {
  font-size: 18px;             /* Réduit légèrement le texte */
  margin-bottom: 30px;
  line-height: 1.5;
}

.cta-btn {
  font-weight: 700;
  font-size: 18px;
  color: #222222;
  background: #ffb700;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #ff0000;
  color: #ffffff;
}

.hero-image {
  flex: 0 1 55%;               /* Agrandit l'image */
  max-width: 850px;            /* Image plus grande sur desktop */
  padding: 20px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Responsive : texte en haut, image en bas */
@media (max-width: 900px) {
  .services-hero {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }

  .hero-text {
    order: 1;
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .hero-image {
    order: 2;
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
  }
}




/* ===== Section Services Détaillés ===== */
.detailed-services {
  background-color: #ffffff; /* Fond clair premium */
  padding: 100px 20px;
  font-family: 'Montserrat', sans-serif;
}

.services-title {
  font-size: 38px;
  font-weight: 800;
  color: #FF0000; /* Rouge Leano Studio */
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: 1px;
}

/* Container des services */
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* Distribue les services uniformément */
  gap: 40px;
}

/* Chaque service - 3 par ligne */
.service-item {
  flex: 1 1 calc(33.333% - 26px); /* Ajuste pour espacement égal */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

/* Icônes */
.service-item i {
  font-size: 48px; /* Taille pro */
  color: #FF0000; /* Rouge Leano Studio */
  margin-bottom: 20px;
}

/* Texte du service */
.service-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000000; /* Noir pour sérieux et lisibilité */
  margin-bottom: 12px;
}

.service-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
}

/* CTA section */
.services-cta {
  text-align: center;
  margin-top: 60px;
}

.services-cta .cta-btn {
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  background: #FF0000;
  padding: 16px 35px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.services-cta .cta-btn:hover {
  background: #FFD700;
  color: #000;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services-container {
    gap: 30px;
  }

  .service-item {
    flex: 1 1 calc(50% - 15px); /* 2 par ligne tablette */
  }
}

@media (max-width: 600px) {
  .service-item {
    flex: 1 1 100%; /* 1 par ligne mobile */
  }

  .service-item i {
    font-size: 40px;
  }
}



/* Section Bénéfices */
.benefits-section {
  background-color: #fff0f0; /* fond clair assorti au site */
  padding: 80px 20px;
}

.benefits-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 40px;
}

.benefits-image {
  flex: 1 1 400px;
  text-align: center;
}

.benefits-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.benefits-text {
  flex: 1 1 400px;
}

.benefits-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: #b80000; /* rouge site */
  margin-bottom: 20px;
}

.benefits-detail {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000; /* texte lisible noir */
  margin-bottom: 15px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.benefits-list li {
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  color: #000;
}

.benefits-list li::before {
  content: '✔';
  color: #b80000; /* icône rouge */
  position: absolute;
  left: 0;
  top: 0;
}

.benefits-cta {
  display: inline-block;
  background-color: #b80000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.benefits-cta:hover {
  background-color: #ffd700; /* jaune site */
  color: #000;
}

/* Responsive */
@media (max-width: 991px) {
  .benefits-container {
    flex-direction: column;
  }

  .benefits-image, .benefits-text {
    flex: 1 1 100%;
  }

  .benefits-title {
    text-align: center;
  }

  .benefits-cta {
    display: block;
    text-align: center;
    margin: 0 auto;
  }
}


.gallery-section {
  background-color: #b80000; /* fond rouge */
  padding: 80px 20px;
}

.gallery-title {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: #fff;
  margin-bottom: 60px;
}

.gallery-category {
  margin-bottom: 60px;
  color: #fff;
  text-align: center;
}

.gallery-category-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
}

.gallery-category-detail {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #fff;
}

/* Images locales */
.gallery-images {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.gallery-images img {
  width: calc(50% - 10px); /* 2 images par ligne desktop */
  border-radius: 8px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 991px) {
  .gallery-images img {
    width: 100%; /* 1 image par ligne sur mobile */
  }
}


.stats-section {
  background-color: #ffffff; /* fond clair */
  padding: 80px 20px;
  font-family: 'Montserrat', sans-serif;
  color: #000000;
  text-align: center;
}

.stats-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #b80000; /* rouge accent */
}

.stats-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.stat-item {
  flex: 1 1 45%;
  min-width: 280px;
  margin-bottom: 30px;
}

.stat-label {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  text-align: left;
}

.stat-bar {
  width: 100%;
  background: #f0f0f0;
  height: 30px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.stat-progress {
  height: 100%;
  width: 0;
  background: #b80000; /* rouge */
  border-radius: 15px;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 2s ease;
}






/* ====================================== */
/* 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;
}
