.elementor-8751 .elementor-element.elementor-element-5e61d51{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-e739597 *//* ===================== */
/* === BARRES GLOBALES === */
/* ===================== */
.top-bar-container,
.bottom-bar-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
}

/* ===================== */
/* === TOP-BAR (HAUT) === */
/* ===================== */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: #91a6bb;
  padding: 0 16px;
  height: 50px;
  font-family: 'Times New Roman', Times, serif;
  font-size: 15px;
}

.top-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  padding: 0 40px;
  font-weight: 500;
  transition: filter 0.2s;
  border-left: 1px solid #fff;
  height: 100%;
}

.top-bar a:first-child {
  border-left: none;
}

.top-bar a:hover {
  filter: brightness(0.85);
}

/* ===================== */
/* === BOTTOM-BAR DESKTOP === */
/* ===================== */
.bottom-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: #26547c;
  padding: 0 16px;
  height: 60px;
  font-family: 'Times New Roman', Times, serif;
  font-size: 15px;
  position: relative;
}

.bottom-bar > a,
.bottom-bar > .dropdown > a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  padding: 0 20px; /* réduit l’espace horizontal entre liens desktop */
  font-weight: 600;
  transition: filter 0.2s;
  border-left: 2px solid #fff;
  height: 100%;
}

.bottom-bar > a:first-child,
.bottom-bar > .dropdown:first-child > a {
  border-left: none;
}

.bottom-bar > a:hover,
.bottom-bar > .dropdown > a:hover {
  filter: brightness(1.15);
}

/* Dropdown desktop */
.bottom-bar .dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.bottom-bar .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #26547c;
  min-width: 220px;
  flex-direction: column;
  z-index: 1000;
  font-family: 'Times New Roman', Times, serif;
  font-size: 15px;
}

.bottom-bar .dropdown-content a {
  padding: 10px 20px;
  border-left: none;
  border-bottom: 1px solid #fff;
  font-weight: 500;
  color: #fff;
  justify-content: center;
}

.bottom-bar .dropdown-content a:last-child {
  border-bottom: none;
}

.bottom-bar .dropdown:hover .dropdown-content {
  display: flex;
}

.bottom-bar .dropdown-content a:hover {
  filter: brightness(1.15);
}

/* ===================== */
/* === FLÈCHES MENU === */
/* ===================== */
/* Supprime flèche auto */
.bottom-bar .dropdown > a::after {
  display: none;
}

/* Flèche desktop (blanche) */
@media screen and (min-width: 769px) {
  .bottom-bar .dropdown-arrow {
    color: #fff;
    font-size: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    margin-right: 10px;
    transition: transform 0.3s ease;
  }

  .bottom-bar .dropdown.active .dropdown-arrow {
    transform: rotate(-180deg);
  }
}

/* Flèche mobile (noire, à droite) */
@media screen and (max-width: 768px) {
  .bottom-bar .dropdown-arrow {
    color: #000;
    font-size: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: 15px;
    transition: transform 0.3s ease;
  }

  .bottom-bar .dropdown.active .dropdown-arrow {
    transform: rotate(-180deg);
  }
}

/* ===================== */
/* === HAMBURGER MOBILE === */
/* ===================== */
.bottom-bar-toggle {
  display: none;
  background-color: #26547c;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 4px;
  z-index: 10000;
}

/* ===================== */
/* === MENU MOBILE === */
/* ===================== */
@media screen and (max-width: 768px) {

  /* Top-bar mobile */
  .top-bar-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .top-bar {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
  }

  .top-bar a {
    padding: 6px 14px;
    font-size: 14px;
  }

  /* Hamburger sous top-bar */
  .bottom-bar-toggle {
    display: block;
    position: relative;
    margin-top: 12px;
    margin-right: 16px;
    float: right;
  }

  /* Menu mobile (slide gauche) */
  .bottom-bar {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 250px;
    flex-direction: column;
    background-color: #afc1d0;
    padding-top: 10px; 
    z-index: 9999;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.35s ease-in-out;
    box-shadow: 3px 0 8px rgba(0,0,0,0.15);
  }

  .bottom-bar.active {
    display: flex;
    transform: translateX(0);
  }

  /* Liens principaux mobile (compact) */
  .bottom-bar > a,
  .bottom-bar > .dropdown > a {
    width: 100%;
    padding: 4px 10px; /* espace réduit */
    text-align: left;
    color: #000;
    font-size: 14px;
    line-height: 1.2;
    border: none;
    border-bottom: 1px solid #fff;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 4px;
    transition: background 0.2s;
  }

  .bottom-bar > a:hover,
  .bottom-bar > .dropdown > a:hover {
    background: rgba(0,0,0,0.05);
  }

  /* Dropdowns mobile */
  .bottom-bar .dropdown {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .bottom-bar .dropdown > a {
    flex: 1;
  }

  /* Sous-menus */
  .bottom-bar .dropdown-content {
    display: none;
    flex-direction: column;
    padding-left: 10px;
    background-color: #afc1d0;
  }

  .bottom-bar .dropdown.active .dropdown-content {
    display: flex;
  }

  .bottom-bar .dropdown-content a {
    padding: 4px 10px; /* resserré verticalement et horizontalement */
    font-size: 13px;
    line-height: 1.1;
    border-bottom: 1px solid #fff;
    color: #000;
    text-align: left;
    margin-bottom: 1px; /* mini espace entre chaque lien */
    border-radius: 4px;
    transition: background 0.2s;
  }

  .bottom-bar .dropdown-content a:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }

  .bottom-bar .dropdown-content a:hover {
    background: rgba(0,0,0,0.05);
  }
}/* End custom CSS */