@charset "utf-8";

/* Structure globale */
html, body {
  height: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  /* Background global */
  background-image: url('assets/images/art_digital/bg_artdigital.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;

  /* Empêche tout débordement horizontal */
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
}
/* Layout sticky footer propre */
body {
  display: flex;
  flex-direction: column;
  font-family: system-ui, sans-serif;
  color: #fff;
}

/* Contenu principal qui pousse le footer en bas */
#main-content {
  flex: 1 0 auto;
}

/* Footer stable, jamais flottant */
footer {
  flex-shrink: 0;
  position: static !important;
  width: 100%;
}
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;
}

/* 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;
  }
}
/* 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;
}
.epoxy-hero {
  margin-top: -30px;
  text-align: center;
  padding: 80px 20px 40px;
}
.epoxy-hero p {
  margin-top: -35px;
  font-size: 18px;
  font-weight: 700;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.epoxy-title {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  font-family: Orbitron, sans-serif;
  color: #ffffff;
  text-shadow:
  0 0 8px rgba(255,123,0,0.9),
  0 0 16px rgba(255,123,0,0.7),
  0 0 28px rgba(255,123,0,0.5),
  0 0 40px rgba(255,123,0,0.4);
}
.epoxy-title span {
  color: #ff7b00;
  text-shadow:
  0 0 8px rgba(255,255,255,0.9),
  0 0 16px rgba(255,255,255,0.7),
  0 0 28px rgba(255,255,255,0.5),
  0 0 40px rgba(255,255,255,0.4);
}
.digital-article {
  background: rgba(0,0,0,0.55);
  padding: 15px;
  margin: 0 auto 40px auto;
  max-width: 1100px;
  text-align: center;
  border-radius: 6px;
}
/* BOUTON ORANGE */
.btn-orange {
  display: inline-block;
  padding: 12px 24px;
  background: #ff7b00;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 16px;
  letter-spacing: 0.05em;
  transition: 0.3s;
}

/* Bouton */
.article-col .btn-orange {
  margin-top: 25px;
  margin-bottom: 25px;
  margin-left: 125px;
  align-self: flex-start;
}
.btn-orange:hover {
  background: #ff9a3c;
}

/* VIDÉOS */
.video-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.video-block {
  display: flex;
  flex-direction: column;
  width: 480px;
}

.video-block video {
  width: 100%;
  border-radius: 6px;
}

.video-info {
  background: rgba(0,0,0,0.55);
  padding: 15px;
  margin-top: 10px;
  border-radius: 6px;
  text-align: center;
  font-weight: 700;
}

.video-info p {
  color: #fff;
  margin-bottom: 10px;
}

.link-orange {
  color: #ff7b00;
  text-decoration: none;
  font-weight: bold;
}

.link-orange:hover {
  text-shadow: 0 0 8px #ff7b00;
}
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.1s 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;
  }
}
