/* Ajoutez vos styles personnalisés ici */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

h1 {
    color: #343a40;
}

/* Conteneur du titre */
.title-container {
    position: relative;
    text-align: center;
    padding: 20px 0;
}

/* Style du titre */
.title-main {
    color: #343a40;
    font-size: 2rem; /* ✅ Plus grand pour plus d’impact */
    font-weight: 800; /* ✅ Très gras pour un effet fort */
    text-transform: uppercase; /* ✅ Majuscules pour un rendu premium */
    letter-spacing: 2px; /* ✅ Espacement subtil */
    margin: 20px 0; /* ✅ Espacement équilibré */
    font-family: "Helvetica", sans-serif; /* ✅ Police moderne et élégante */
}

/* Ligne jaune sur toute la largeur */
.title-line {
    width: 100%; /* ✅ S’étend sur toute la page */
    height: 6px; /* ✅ Plus épaisse pour plus de visibilité */
    background-color: #ffe100; /* ✅ Jaune vif */
    position: absolute;
    left: 0;
}

/* Placement des lignes */
.title-line:first-child {
    top: 0;
}

.title-line:last-child {
    bottom: 0;
}

h2 {
    text-align: center;
    font-size: 2.5rem; /* Taille du texte */
    margin-bottom: 20px; /* Espace sous le titre */
    position: static;
}

h2::after {
    content: "";
    display: block;
    width: 240px; /* Taille fixe pour centrer parfaitement */
    height: 5px; /* Épaisseur de la barre */
    background-color: #ffe100;
    margin: 8px auto 0; /* Centre horizontalement */
}

.border-warning {
    --bs-border-opacity: 0;
    border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity));
}

.titrage {
    color: #ffbf00f3;
    font-family: "Helvetica", sans-serif; /* ✅ Police moderne et élégante */
}

.option {
    color: #0000008e;
    font-family: "Helvetica", sans-serif; /* ✅ Police moderne et élégante */
}

/* NAVBAR */
/* Logo */
.logo img {
    height: 70px; /* Augmenté de 50px à 70px */
}

/* Navigation */
.nav {
    display: flex;
    gap: 25px; /* Augmenté pour plus d'espacement */
    font-size: 18px; /* Texte un peu plus grand */
}

.nav a {
    color: white;
    text-decoration: none;
    padding-bottom: 8px; /* Augmenté pour plus de visibilité */
    font-weight: bold; /* Pour un effet plus visible */
}

.nav a:hover {
    color: #ffe100; /* Jaune sur hover */
}

.nav a.active {
    border-bottom: 3px solid #ffe100; /* Plus épais pour plus de visibilité */
}

/* Barre de navigation */
.navbar {
    padding: 15px 0; /* Plus de hauteur pour la barre */
}
/* Bouton hamburger */
.navbar-toggler {
    border: none;
    background: transparent;
  }
  
  .navbar-toggler-icon {
    filter: invert(1); /* Rend l'icône blanche */
  }

  .contact {
    display: block !important; /* Force l'affichage */
    color: #ffe100;
    font-weight: bold;
}


  
  /* Mobile : cacher la navigation par défaut */
  @media (max-width: 991px) {
    .navbar-collapse {
      position: fixed; /* Fixe le menu pour éviter le chevauchement */
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh; /* Occupe toute la hauteur de l'écran */
      background-color: #222;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center; /* Centre les liens verticalement */
      opacity: 0;
      transform: translateY(-100%);
      transition: opacity 0.3s ease, transform 0.3s ease;
      z-index: 1000;
    }
  
    .navbar-collapse.show {
      opacity: 1;
      transform: translateY(0);
    }
  
    .nav {
      flex-direction: column;
      text-align: center;
      width: 100%;
    }
  
    .nav-link {
      color: white !important;
      font-size: 18px;
      padding: 10px;
      transition: color 0.3s ease;
    }
  
    .nav-link:hover {
      color: #ffcc00 !important;
    }
    
    
}

/* Contact */
.contact {
    color: #ffe100;
    font-weight: bold;
}


/* INDEX */
/* Conteneur principal pour encadrer les deux colonnes */
    .left-side {
      background-color: #f0eeee;
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    

    .right-side img {
      width: 100%;
      height: 80vh;
      object-fit: cover;
    }

    .btn-yellow {
      background-color: #ffd900;
      color: black;
      border: none;
      padding: 10px 20px;
      font-weight: bold;
      border-radius: 10px;
    }

    .btn-yellow:hover {
      background-color: #e0c200;
    }

/* Responsive : Ajuster les coins arrondis sur mobile */
@media (max-width: 991px) {
    .image-section img {
        border-radius: 0 0 10px 10px; /* Coins arrondis en bas */
    }
}
.container{
    max-width: 90%;
}

.content-section {
    padding: 40px; /* Ajoute de l'espace autour du texte */
    text-align: justify; /* Justifie le texte */
}

/* CARD */
.service-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 15px; /* ✅ Ajoute un peu d’espace intérieur */
}

/* Image bien intégrée */
.service-card img {
    width: 45%; /* ✅ Réduit la largeur de l'image pour mieux s'intégrer */
    height: auto; /* ✅ Préserve le ratio */
    object-fit: cover;
    border-radius: 8px; /* ✅ Arrondi léger pour un effet plus doux */
    margin-left: 10px; /* ✅ Décale légèrement pour ne pas toucher le bord */
}

/* Ajustement du texte */
.service-card .card-body {
    width: 50%;
    padding: 20px;
}

/* Bouton personnalisé */
.btn-custom {
    background-color: #ffe100;
    color: black;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    width: 50%; /* ✅ Réduction de la largeur */
    display: block; /* ✅ Permet de centrer */
    margin: auto; /* ✅ Centre le bouton */
}

.btn-custom:hover {
    background-color: #ffd700;
}

/* Texte amélioré */
.text-style {
    font-weight: 600;
    font-size: 1.2rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
}

/* 🔹 CHANGEMENT UNIQUEMENT SUR MOBILE */
@media (max-width: 991px) {
    .service-card {
        flex-direction: column; /* Passe en colonne */
        padding: 10px; /* Ajoute un peu d’espace intérieur */
    }
    
    .service-card img {
        width: 90%; /* ✅ Image plus grande mais pas collée */
        margin: 0 auto 15px; /* ✅ Centre l’image et ajoute un espace en bas */
    }

    .service-card .card-body {
        width: 100%; /* ✅ Texte prend toute la largeur */
        padding: 10px;
    }

    .btn-custom {
        background-color: #ffe100;
        color: black;
        border: none;
        padding: 10px 15px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        width: 100%; /* ✅ Réduction de la largeur */
        display: block; /* ✅ Permet de centrer */
        margin: auto; /* ✅ Centre le bouton */
    }
}
/* Renseignements */ 
.info-container2 {
    display: flex;
    align-items: center; /* Centre verticalement */
    justify-content: center; /* Centre horizontalement */
    gap: 15px;
    max-width: 600px;
    margin: auto;
    text-align: center; /* Centre le texte */
    flex-direction: column; /* Met les éléments en colonne */
}



.custom-btn {
    background-color: #ffe100;
    border: none;
    color: black;
}

/* FORMULES */

.section-container {
    position: relative;
    width: 100%;
    height: 450px; /* Ajustable */
    background-color: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    width: 50%;
    height: 100%;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-card {
    position: absolute;
    top: 50%;
    left: 25%; /* Ajustement pour être centré */
    transform: translate(0, -50%);
    background: rgba(255, 255, 255, 0.514);
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 40%;
    text-align: left;
}

hr {
    border: 2px solid #ffe100;
    width: 50px;
    margin-left: 0;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .section-container {
        height: auto;
        display: block;
    }

    .image-container {
        width: 100%;
        height: 300px;
    }

    .content-card {
        position: relative;
        width: 100%;
        left: 0;
        transform: none;
        top: 0;
    }
}
.formule {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.formule:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.image-details {
    max-width: 50%;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.h5-formule {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    border-bottom: 4px solid #d6c540;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

img {
    max-width: 80%; /* Réduction de la taille des images */
    height: auto;
    border-radius: 8px;
}

ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

ul li {
    font-size: 14px;
    margin: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul li i {
    color: #d4af37;
    margin-right: 8px;
}

.price {
    font-size: 16px;
    font-weight: bold;
    color: #555;
}

.price span {
    color: #d4af37;
    font-size: 18px;
}

/* Centrage du titre + texte */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header p {
    max-width: 700px;
    margin: auto;
}

/* Conteneur principal */
.confiance {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px; /* Baisse tout le bloc confiance */
}

/* Déplacement de l'image à gauche et vers le haut */
.confiance img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transform: translate(-20%, -13%); /* Gauche (-20%), Haut (-13%) */
}

/* Boîtes d’informations en grille */
.info-container {
    position: absolute;
    width: 100%;
    max-width: 700px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 colonnes */
    gap: 20px;
    top: 10%;
    left: 55%;
    transform: translateX(-30%);
}

/* Style des boîtes */
.info-box {
    background: rgba(255, 255, 255, 0.85);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive : Mobile → une colonne + plus d'espace sous l'image */
@media (max-width: 768px) {
    .confiance {
        margin-top: 30px; /* Baisse tout le bloc confiance */
        flex-direction: column;
        align-items: center;
    }

    .confiance img {
        transform: none; /* Suppression du décalage sur mobile */
        margin-bottom: 30px; /* Ajoute plus d’espace entre l’image et la première boîte */
    }

    .info-container {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .info-box {
        width: 90%;
    }
}

/* RELIGIEUX - ACTIVITES - TRANSFERTS */

.junior-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px;
    background-color: #f8f9fa;
}

.main-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    text-align: center;
    width: 45%; /* Pour afficher 2 cartes par ligne */
    max-width: 500px;
    padding: 25px;
}

.main-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.main-card hr {
    border: 1px solid #ddd;
    margin: 15px 0;
}

.main-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.main-card p {
    font-size: 16px;
    color: #555;
    margin: 12px 0;
}

.main-card strong {
    color: #d4af37;
    font-size: 18px;
}

.main-card .btn {
    display: inline-block;
    background: #FFE100;
    color: black;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
}

.main-card .btn:hover {
    background: #e6ca00;
}

/* Pour assurer le bon affichage sur mobile */
@media (max-width: 768px) {
    .main-card {
        width: 100%; /* Une seule carte par ligne sur mobile */
    }
}

/* ABOUT */

.content-about {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.content-about h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
}

.content-about p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #28a745;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
    background-color: #ffe100;
    border: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background-color: #e6c900;
    color: #222;
}

.image-section {
    text-align: center;
    padding: 20px;
}

.image-section img {
    width: 100%; /* Utilise toute la largeur du conteneur */
    height: auto; /* Garde les proportions */
    max-width: 700px; /* Taille max pour éviter qu'elle soit trop grande */
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}


/* spinner */ 
#loadingOverlay {
    display: none; /* ✅ Caché par défaut */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
    z-index: 9999; /* Toujours au-dessus */
    justify-content: center;
    align-items: center;
}

.spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
}

/* avis */ 
#avisContainer {
    margin-bottom: 20px;
}

.avis {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    background: #f9f9f9;
}

.avis strong {
    display: block;
    color: #333;
}

.avis-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

