/*Bootstrap surchargé*/
.py-5 {
    padding-top: 7rem !important;
    padding-bottom: 8rem !important;
}
.fs-1 {
      font-size: .8rem !important;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #6c757d;
      margin: 10px 0 5px;
      padding: 0;
      min-height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
} 
.btn.bgreen {
    background: #ABC428 none repeat scroll 0 0;
    border-radius: 30px;
    color: #fff;
    font-family: "futura_ltbold",sans-serif;
    font-size: 16px;
    padding: 10px 20px;
    text-transform: uppercase;
    border:1px solid transparent;
}


/* Contact*/
.form-control {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);  
    transition: box-shadow 0.3s ease; 
    border-color: #5a5e62 !important; 
}

.form-control:focus {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);  /* Ombre plus marquée lors du focus */
    border-color: #007bff;  
}
        
/*.topbar {
    transition: top 0.4s ease-in-out;
    padding-top: .4rem !important;
    padding-bottom: .3rem !important;
}*/



.hero {
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

/*.card {
    border-radius: 10px;
}*/
.section-container {
    height: auto; /* Évite que la section prenne toute la hauteur de l'écran en mobile */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    flex-wrap: wrap;
}

/* Image à gauche, 30% de largeur */
.image-left, .image-right {
    width: 30%;
    object-fit: cover;
    height: 100vh; /* Hauteur complète de l'écran */
}

/* Texte avec padding ajusté */
.text-left {
    padding: 40px 40px 40px 100px;
}
.text-right {
    padding: 40px 100px 40px 40px;
}
.text-right, .text-left {
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centre verticalement */
    align-items: center; /* Centre horizontalement */
    text-align: center;
}

.bi-telephone {
    color: black !important;  /* Pour la couleur de l'icône */
    stroke: none !important;  /* Pour supprimer le contour */
}
.form-control-sm {
    height: calc(1.5em + .5rem + 2px);
    padding: .25rem .4rem;
    font-size: .7rem;
    line-height: 1.5;
    border-radius: .2rem;
    margin-top: .2rem;
}
.btn-sm {
    line-height: 1.3;
    border-radius: .2rem;
    margin-top: .2rem;
    font-size: 1em;
}

/*social-links*/
.social-links {
    margin-top: 10px;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    font-size: 40px; /* Taille des icônes */
    color: #333; /* Couleur par défaut */
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff; /* Couleur au survol */
}

@media (min-width: 1200px) {
  .display-3 {
    font-size: 3rem;
  }
    .display-5 {
    font-size: 1.5rem;
  }
}
@media (min-width: 993px) {
  .py-lg-5 {
    padding-top: 1rem !important;
    padding-bottom: 2rem !important;
  }
}
@media (max-width: 992px) {
    .section-container {
        flex-direction: column;
        text-align: center;
    }

    .image-left, .image-right {
        width: 100%; /* L'image prend toute la largeur */
        height: auto;
    }

    .text-right, .text-left {
        width: 100%;
        padding: 15px;
    }

    .image-left img, .image-right img {
        height: auto;
        max-width: 100%;
    }
    .display-5{
        font-size: 1.2rem !important;
    }
    .form-control{
        padding: .15rem .75rem !important; 
        
    }
}