/* Style du header */
header {
    padding: 2px 0;
}

.articlecontent h2 {
    color: #19478e;
}

/* Blockquote minimal avec barre à gauche */
blockquote{
  margin: 1rem 0;
  padding-left: 1rem;
  border-left: 4px solid #19478e; /* barre à gauche */
  background: transparent;
  color: #19478e;
  font-style: italic; /* version standard */
}


.logo {
    height: 90px; /* Taille ajustable selon le logo */
}

.navbar-brand {
    padding: 0px;
}

.navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 500;
    padding: 10px 15px;
    color: #019fcb; /* Bleu Rotary */
}

.navbar-nav .nav-link:hover {
    color: #ffc008; /* Jaune Rotary */
}

/* Menu mobile */
.navbar-toggler {
    border: none;
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    text-align: center;
}

.footer-logo {
    height: 60px;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    color: #FFD700; /* Jaune Rotary */
}

hr {
    border-top: 1px solid #666;
}

/* Section Hero */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Vidéo en arrière-plan */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajuste la vidéo pour couvrir toute la section */
}

/* Overlay sombre pour améliorer la lisibilité */
.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Ajuste l'opacité si besoin */
    z-index: 0;
}

/* Contenu visible */
.hero .container {
    position: relative;
    z-index: 2;
}

/* Chiffres Clés */
.stats h2 {
    font-size: 2.5rem;
}

/* Témoignages */
.testimonials {
    background: url('assets/rotary-testimonials.jpg') center/cover no-repeat;
    padding: 60px 0;
}

/* CTA Final */
.cta {
    background: url('assets/rotary-cta.jpg') center/cover no-repeat;
    background-attachment: fixed;
    padding: 50px 0;
}

/* Cartes */
.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Images des cartes */
.card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Style général du breadcrumb */
.breadcrumb {
    background-color: #f8f9fa; /* Fond clair */
    border-radius: 0.25rem !important;
    padding: 0.75rem 1rem !important;
    border: 1px solid #dee2e6; /* Bordure autour */
    display: flex;
    flex-wrap: wrap;
}

/* Style des éléments du breadcrumb */
.breadcrumb-item {
    font-size: 16px;
    color: #6c757d;
    display: flex;
    align-items: center;
}

/* Lien dans le breadcrumb */
.breadcrumb-item a {
    color: #019fcb; /* Couleur du lien */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

/* Lien au survol */
.breadcrumb-item a:hover {
    color: #ffc008; /* Bleu plus foncé */
    text-decoration: none;
}

/* Élément actif */
.breadcrumb-item.active {
    font-weight: 600;
    color: #495057;
}

/* Icônes ou séparateurs entre les items */
.breadcrumb-item + .breadcrumb-item::before {
    content: "›"; /* Séparateur flèche */
    color: #6c757d;
    padding: 0 8px;
    font-weight: bold;
}