.footer-condensed {
    color:white;
}

.switch-language {
    font-style: normal;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: #4f4f4f;
}
/* Taille du texte pour le menu principal */
.navbar-nav > li > a,
.navbar-default .navbar-nav > li > a {
  font-size: 14px; /* Remplacez "15px" par la taille souhaitée */
}

/* Taille du texte pour les sous-menus de premier niveau */
.navbar-nav .dropdown-menu > li > a {
  font-size: 14px; /* Assurez-vous que cette taille correspond à celle du menu principal */
}

/* Taille du texte pour les sous-menus de deuxième niveau */
.navbar-nav .dropdown-menu .dropdown-menu > li > a {
  font-size: 14px; /* Ajustez cette taille selon vos besoins */
}
/* STYLE POUR ARTICLES HISTORIQUES */
.article-historique {
  font-family: 'Montserrat', sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #fafafa;
  border-radius: 8px;
  color: #222;
  line-height: 1.7;
}

.article-historique h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.article-historique p {
  margin-bottom: 1.2rem;
}

.article-historique em {
  font-style: italic;
}

.article-historique strong {
  font-weight: 600;
}
body::before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYszlCk9m8c6hpayotZqAuQ4/asset/images/Carte_du_gouvernement_de_Québec_levée_en_l'année_1709_-_Isle_d_Orleans.jpg") no-repeat center center fixed;
  background-size: contain; /* ou cover selon l'effet voulu */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.08; /* ajuste pour un vrai effet "filigrane" */
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  body::before {
    background-size: 200%; /* rétrécit un peu l’image */
    opacity: 0.06; /* un peu plus visible sur petits écrans */
    background-position: center top; /* mieux centré pour mobile */
}

}