.elementor-2707 .elementor-element.elementor-element-f1ac956{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS *//* -------- VARIABLES GLOBALES I/O -------- */
:root {
  --io-gold: #D4A344;           /* Doré Madcat – ajuste si besoin */
  --io-sidebar-width: 230px;    /* Largeur de ta sidebar gauche */
}

/* -------- FOOTER GLOBAL -------- */

.io-footer-full {
  background: #000;
  color: #f5f5f5;
  font-family: inherit;
}

/* Compense la sidebar sur desktop */
@media (min-width: 1025px) {
  .io-footer-full {
    margin-left: var(--io-sidebar-width);
  }
}

/* Zone principale du footer (3 colonnes) */
.io-footer {
  background: radial-gradient(circle at top left, #111111 0%, #050505 55%, #000000 100%);
  border-top: 1px solid #222222;
  padding: 40px 40px 40px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/* Colonnes */
.io-footer-col {
  flex: 1 1 220px;
  min-width: 220px;
}

/* Colonne atelier un peu plus large si la place le permet */
.io-footer-col-atelier {
  max-width: 360px;
}

/* Logo */
.io-footer-logo {
  margin-bottom: 16px;
}

.io-footer-logo-text {
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--io-gold);
}

/* Titres */
.io-footer-heading,
.io-footer-block-title,
.io-footer-title-main {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  margin-bottom: 10px;
  color: var(--io-gold);
}

/* Titre principal I/O */
.io-footer-title-main {
  font-size: 13px;
}

/* Texte */
.io-footer p {
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 6px 0;
}

.io-footer a {
  color: #f5f5f5;
  text-decoration: none;
  position: relative;
  padding-bottom: 1px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.io-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--io-gold);
  transition: width 0.2s ease;
}

.io-footer a:hover {
  color: var(--io-gold);
  transform: translateX(2px);
}

.io-footer a:hover::after {
  width: 100%;
}

/* Navigation */
.io-footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.io-footer-nav li {
  margin-bottom: 4px;
}

/* Icônes sociales */
.io-footer-social {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.io-footer-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #333333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.io-footer-social-icon:hover {
  border-color: var(--io-gold);
  background: #111111;
  transform: translateY(-1px);
}

/* Barre tout en bas */
.io-footer-bottom {
  background: #000000;
  border-top: 1px solid #222222;
  text-align: center;
  padding: 12px 10px;
}

@media (min-width: 1025px) {
  .io-footer-bottom {
    margin-left: var(--io-sidebar-width);
  }
}

.io-footer-bottom p {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.8;
}

/* -------- RESPONSIVE -------- */

@media (max-width: 768px) {
  .io-footer {
    padding: 32px 20px 32px 20px;
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  .io-footer-col {
    max-width: none;
  }

  .io-footer a:hover {
    transform: none; /* évite les petits sauts sur mobile */
  }

  .io-footer-social {
    justify-content: center;
  }
}



/* --- Effet Madcat Glow sur les icônes sociales --- */

.io-footer-social-icon {
  position: relative;
  overflow: visible; /* permet le halo */
  transition: 
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

/* Icône intérieure (SVG) */
.io-footer-social-icon svg {
  transition: color 0.25s ease, fill 0.25s ease;
}

/* Hover: Glow Madcat */
.io-footer-social-icon:hover {
  background: rgba(212, 163, 68, 0.15); /* lumière dorée douce */
  border-color: var(--io-gold);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 0 8px rgba(212, 163, 68, 0.45),
    0 0 15px rgba(212, 163, 68, 0.25),
    0 0 30px rgba(212, 163, 68, 0.15);
}

/* Couleur de l'icône au hover */
.io-footer-social-icon:hover svg {
  fill: var(--io-gold);
}

/* -----------------------
   MADCAT ROYAL GROOVE GLOW (100 BPM ~ 2,4s la mesure)
   ----------------------- */

.io-footer-social-icon {
  position: relative;
  overflow: visible;
  border-radius: 999px;
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

/* Icône (SVG) */
.io-footer-social-icon svg {
  width: 14px;
  height: 14px;
  transition: fill 0.35s ease, transform 0.35s ease;
  fill: url(#io-madcat-gradient);
}

/* Pulsation "mesure de 4 temps" (100 BPM => ~2,4s) */
@keyframes ioBeatGlow {
  0% {
    box-shadow:
      inset 0 0 2px rgba(212, 163, 68, 0.15);
    transform: scale(1);
  }
  25% {
    box-shadow:
      inset 0 0 4px rgba(212, 163, 68, 0.25);
    transform: scale(1.02);
  }
  50% {
    box-shadow:
      inset 0 0 6px rgba(212, 163, 68, 0.40);
    transform: scale(1.04);
  }
  75% {
    box-shadow:
      inset 0 0 4px rgba(212, 163, 68, 0.25);
    transform: scale(1.02);
  }
  100% {
    box-shadow:
      inset 0 0 2px rgba(212, 163, 68, 0.15);
    transform: scale(1);
  }
}

/* Glow de base, discret mais "en rythme" */
.io-footer-social-icon {
  animation: ioBeatGlow 2.4s ease-in-out infinite;
}

/* HOVER : accent royal */
.io-footer-social-icon:hover {
  background: rgba(212, 163, 68, 0.20);
  border-color: var(--io-gold);
  transform: translateY(-4px) scale(1.10);
  box-shadow:
    0 0 10px rgba(212, 163, 68, 0.45),
    0 0 20px rgba(212, 163, 68, 0.35),
    0 0 35px rgba(212, 163, 68, 0.25),
    inset 0 0 6px rgba(212, 163, 68, 0.45);
}

/* L'icône grandit légèrement et se fige en doré net au hover */
.io-footer-social-icon:hover svg {
  transform: scale(1.05);
  fill: var(--io-gold);
}

/* Retire l’underline des icônes sociales */
.io-footer-social-icon::after {
  display: none !important;
}

/* Boost visibilité du F Facebook */
.io-footer-social-icon-facebook svg {
  filter: drop-shadow(0 0 1px rgba(212,163,68,0.6));
}


/* ---------- LOGO IO MADCAT DANS LE BANDEAU ---------- */

/* Le conteneur / ou l'image si la classe est sur <img> */
.io-logo-madcat {
  position: relative;
  display: inline-block;
  max-width: 140px; /* ajuste si besoin */
}

/* Applique l’animation que la classe soit sur <div> ou sur <img> */
.io-logo-madcat,
.io-logo-madcat img {
  display: block;
  width: 30%;
  height: auto;
  filter: drop-shadow(0 0 2px rgba(212,163,68,0.45));
  animation: ioLogoBreath 4.5s ease-in-out infinite;
}

/* Respiration lumineuse douce */
@keyframes ioLogoBreath {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 2px rgba(212,163,68,0.35));
  }
  50% {
    transform: scale(1.02);
    filter: drop-shadow(0 0 6px rgba(212,163,68,0.75));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 2px rgba(212,163,68,0.35));
  }
}

/* Reflet (shine) au survol */
.io-logo-madcat::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -40%;
  width: 40%;
  height: 140%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg) translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.io-logo-madcat:hover::after {
  opacity: 1;
  animation: ioLogoShine 0.9s ease-out;
}

@keyframes ioLogoShine {
  0% {
    transform: skewX(-20deg) translateX(-120%);
  }
  100% {
    transform: skewX(-20deg) translateX(250%);
  }
}/* End custom CSS */