/* ==========================
   FOOTER PANEL (Contact / Mentions)
   ========================== */

:root {
  --footer-max-h: 30vh;
  --footer-bg: #f4f4f4;
  --footer-fg: black;
}

.footer-panel {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 10000;

  transform: translateY(100%);
  transition: transform .32s ease;
  will-change: transform;

  background: var(--footer-bg);
  color: var(--footer-fg);
  border-top: 1px solid #000;

  max-height: var(--footer-max-h);
  overflow: hidden;
  padding: 0;
}

.footer-panel.is-open {
  transform: translateY(0);
}

.footer-content {
  display: flex;
  width: 100%;
  height: var(--footer-max-h);
}

.footer-left {
  width: 80%;
  display: flex;
  min-height: 0;
}

.footer-left-menu {
  width: 0%;
  padding-left: 1.2vh;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.footer-left-main {
  width: 100%;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-right: 3vh;

  max-height: 100%;
  overflow: auto;

  font-family: "Warnock Pro", serif;
  font-weight: 400;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.footer-left-main a {
  font-family: initial;
}

.footer-left-main::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}

.footer-left-main p {
  margin-bottom: 1rem;
}

.footer-right {
  width: 20%;
  border-left: 1px solid #000;
  padding-left: 1.2vh;
  padding-right: 1.2vh;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background-color: #f4f4f4;
  overflow: hidden;
}

.footer-right img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Logos Soutiens : niveaux de gris, hauteur normalisée — partagé drawer + overlay mobile + bande desktop */
.footer-left-main img,
.menu-overlay-contact img,
.partenaires-grid img {
  height: 35px;
  width: auto;
  display: block;
  filter: grayscale(100%);
}

.footer-panel,
.footer-panel p,
.footer-panel a {
  color: black;
}

.nous-contacter a:link,
.nous-contacter a:visited,
.nous-contacter a:hover,
.footer-left-main a:link,
.footer-left-main a:visited,
.footer-left-main a:hover {
  color: black;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer-panel {
    display: none !important;
  }
}
