@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  margin: 0px;
  background-color: #FFF; }

header {
  text-align: center;
  /* Create the parallax scrolling effect */
  width: 100%;
  height: 450px;
  min-height: 350px;
  position: relative;
  overflow: hidden; }
  @media screen and (max-width: 1240px) {
    header {
      background-size: auto;
      background-position: top; } }
  header img {
    margin-top: 20px;
    width: 150px;
    height: auto; }
  header h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 0 0 5px  white; }
  header p {
    margin-top: 10px;
    margin-bottom: 5px;
    padding: 5px 2px;
    text-shadow: 0 0 5px  white; }
  header i {
    padding: 3px;
    font-size: 0.85rem;
    background-color: rgba(240, 240, 240, 0.4); }
  header .backgroundLayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out; }
  header .backgroundLayer.visible {
    opacity: 1; }
  header #overlayDiv {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

footer {
  text-align: center;
  background-color: #162d50;
  padding: 20px; }
  footer p {
    margin: 30px; }
  footer p:hover {
    margin-top: 0px;
    color: white;
    font-style: normal;
    font-size: 19px !important; }

a {
  text-decoration: none;
  font-weight: 600; }
  a:link {
    color: #162d50; }
  a:hover {
    color: white;
    background-color: #162d50; }
  a:visited {
    color: #162d50;
    background-color: #ccc; }

main {
  height: auto;
  width: 1152px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  background-color: #FFF;
  display: grid !important;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-template-areas: "contenu side"; }
  @media screen and (max-width: 768px) {
    main {
      grid-template-areas: "contenu" "side";
      grid-template-columns: 1fr;
      width: 100%; } }
  main #SIDE {
    grid-area: side;
    font-size: 0.85rem;
    text-align: left;
    color: #333;
    padding: 10px; }
    main #SIDE ul, main #SIDE li {
      margin-left: 0;
      padding-left: 0;
      list-style: none; }
  main #CONTENU {
    grid-area: contenu;
    text-align: left;
    color: #333;
    padding: 10px;
    padding-right: 30px; }
    main #CONTENU img {
      width: 100%;
      height: auto;
      border: solid 10px #FFF;
      border-radius: 15px;
      box-shadow: 0 0 10px #ccc; }

.ti {
  font-size: 9px;
  font-style: italic;
  color: #666; }

article {
  margin-bottom: 30px; }
  article .post-excerpt {
    overflow: hidden;
    /* Assure que les ├®l├®ments flottants sont contenus */
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
    font-size: 0.8rem; }
  article .exc-thumbnail {
    float: left;
    margin-right: 1rem; }
  article .exc-thumbnail img {
    width: 150px;
    height: auto; }
  article .post-content {
    overflow: hidden;
    /* Assure que le contenu ne se propage pas sous lÔÇÖimage */ }
  article .post-title {
    font-size: 1.5rem;
    margin: 0; }
  article .post-excerpt p {
    margin: 0.5rem 0; }
  article .post-meta {
    font-size: 0.9rem;
    color: #777; }
  article .post-meta span {
    display: block; }
  article .post-category a,
  article .post-tags a {
    color: #0073aa;
    text-decoration: none;
    border: solid 1px #ccc;
    padding: 0px 5px;
    border-radius: 5px;
    margin-right: 5px; }
  article .post-category a:hover,
  article .post-tags a:hover {
    color: white;
    text-decoration: underline; }

/* Styles de base pour le conteneur du menu */
#site-navigation {
  text-align: center;
  /* Centre le menu */
  padding: 1rem 0;
  background-color: #f9f9f9; }

/* Styles pour la liste des ├®l├®ments du menu */
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block; }

/* Styles pour chaque ├®l├®ment du menu */
.nav-menu li {
  float: left;
  margin: 0 10px; }

/* Conteneur pour centrer le menu avec les ├®l├®ments flottants */
.menu-menu-1-container {
  display: inline-block;
  /* Permet de centrer l'ensemble des ├®l├®ments */ }

/* Styles pour les liens du menu */
.nav-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 1rem;
  color: #333;
  background-color: rgba(255, 255, 255, 0.8);
  /* Fond blanc semi-opaque */
  border-radius: 4px;
  /* Coins arrondis pour les boutons */
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s; }

/* Effet de survol */
.nav-menu li a:hover {
  background-color: white;
  /* Augmente l'opacit├® au survol */
  color: #0073aa;
  /* Couleur du texte au survol */ }

/* Correction pour ├®viter les d├®bordements caus├®s par les ├®l├®ments flottants */
#site-navigation:after,
.menu-menu-1-container:after {
  content: "";
  display: table;
  clear: both; }

/*# sourceMappingURL=style.css.map */
