@charset "utf-8";
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, sans-serif;
  color: #fff;
}

/* Empêche tout débordement global */
* {
  box-sizing: border-box;
}
/* Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
logo {
  all: unset;
}
.sa-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: rgba(0,0,0,0.40);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
  z-index: 2000;
}

.header-left .logo {
  height: 58px;
  display: flex;
  align-items: center;
  margin-left:10px;
}
/* STYLE DES RUBRIQUES — DESKTOP */
.header-center .nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s ease;
}

.header-center .nav-link:hover {
  color: #ff8800;
}

.header-center .nav-link.active {
  color: #ff8800; /* orange Zoopoxy */
  font-weight: 600;
}
/* NAV DESKTOP */
.desktop-menu {
  display: flex;
  gap: 40px;
}
/* DROITE */
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
/* AUDIO — intégré dans le flux du header */
.audio-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 30px; /* espace avant le bord droit */
  cursor: pointer;
}
.audio-btn {
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.audio-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

.hidden {
  display: none;
}
@media (max-width: 768px) {
 .sa-header {
  background: rgba(0,0,0,0.0);
  backdrop-filter: blur(0px);
  border-bottom: 0px solid rgba(255,255,255,1);
}
}
/* BURGER */
.burger-btn {
  font-size: 30px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: none; /* mobile only */
}

/* MENU MOBILE */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(0,0,0,0.85);
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.mobile-menu a {
  color: white;
  padding: 12px 0;
  font-size: 1.2rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu .nav-link.active {
  color: #ff8800; /* orange Zoopoxy */
}
.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-close {
  font-size: 32px;
  background: none;
  border: none;
  color: white;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .header-center .nav-link {
    color: white !important;
  }
}
/* MOBILE */
@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }

  .burger-btn {
    display: block;
  }
}
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3000;
  border-top: 1px solid #e5e5e5;
}

/* ANIMATIONS GLOBALES */
.footer-hidden {
  opacity: 0;
  transform: translateY(50px);
}

.footer-animate {
  animation: footerSlideUp 0.5s ease-out forwards;
}

@keyframes footerSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInText {
  from { opacity: 0; }
  to { opacity: 1; }
}


/* OVERLAY GLOBAL */
.footer-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 12px 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}

/* BLOCS GÉNÉRAUX */
.footer-block {
  white-space: nowrap;
  color: white;
  font-size: 1rem;
  opacity: 0;
  animation: fadeInText 2s ease-out 1.5s forwards;
}

/* TITRE */
.footer-title {
  font-size: 1rem;
}

.footer-title a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

/* SÉPARATEUR VERTICAL */
.footer-separator {
  width: 1px;
  height: 22px;
  background-color: white;
  opacity: 0.7;
}

/* ADRESSE */
.footer-address-only {
  font-size: 0.85rem;
}

/* LÉGAUX (DESKTOP) */
.footer-legals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  opacity: 0;
  animation: fadeInText 1.2s ease-out 1.6s forwards;
 }

.footer-legals a {
  color: #ffffff;
  text-decoration: none;
  padding: 2px 6px;
  transition: opacity 0.25s ease, transform 0.18s ease;
  white-space: nowrap;
  margin-top: -10px;
}

.footer-legals a:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

/* RÉSEAUX SOCIAUX */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 29px;
 } 

/* ---------- VERSION MOBILE ---------- */
@media screen and (max-width: 768px) {

  footer {
    height: auto;
  }

  .footer-overlay {
    padding: 5px 5px;
    flex-direction: column;
    gap: 5px;
  }

  .footer-title {
    font-size: 0.9rem;
    letter-spacing: 1px;
    white-space: normal;
  }

  .footer-address-only {
    display: none;
  }

  .footer-separator {
    display: none;
  }

  .footer-legals {
    display: none;
  }

  .social-icons {
    justify-content: center;
    gap: 12px;
  }

  .social-icons img {
    width: 26px;
  }
}