/* Hero Section - Image éclatante */
.hero-section {
    position: relative;
    max-height: 400px;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
}

/* Contenu centré */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
}

/* Container pour logo + bulle titre côte à côte */
.hero-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

/* Logo Hero */
.hero-logo {
    max-width: 200px;
    max-height: 150px;
    width: auto;
    height: auto;
}

/* Bulle pour le titre - version légère */
.hero-title-bubble {
    background-color: rgba(0, 0, 0, 0.4); /* Beaucoup plus clair */
    border-radius: 8px;
   padding: 8px 20px 10px 20px;

}

/* Titre Hero */
.titre-hero {
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    text-align: left;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .titre-hero {
        font-size: 2.2rem;
    }
    
    .hero-logo {
        max-width: 180px;
        max-height: 135px;
    }
    
    .hero-row {
        gap: 15px;
    }
    
    .hero-title-bubble {
        padding: 8px 20px 10px 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        max-height: 350px;
        height: 350px;
    }
    
    .hero-row {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .titre-hero {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-logo {
        max-width: 150px;
        max-height: 112px;
    }
    
    .hero-title-bubble {
        padding: 5px 16px 8px 16px;
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .hero-section {
        max-height: 300px;
        height: 300px;
    }
    
    .titre-hero {
        font-size: 1.7rem;
    }
    
    .hero-logo {
        max-width: 120px;
        max-height: 90px;
    }
    
    .hero-row {
        gap: 12px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title-bubble {
        padding: 4px 12px 6px 12px;
    }
}

/* Section Qui sommes nous */
.qui-sommes-nous {
   
    margin-top: 1rem;
}



.qui-sommes-nous .img-fluid {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
}

/* Section 3 colonnes actu */
.trois-colonnes {
    background-color: #fff;
}

/* Responsive spécifique */
@media (max-width: 768px) {
    .qui-sommes-nous .row {
        flex-direction: column;
    }
    
  
  
    
    .qui-sommes-nous .img-fluid {
        max-height: 300px;
    }
}