.site-footer {
  background-color: #ffffff;
  padding: 4px 0 8px 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap; /* permet le responsive */
  align-items: flex-start;
  margin: 0 3%;
}

/* Colonnes */
.footer-col {
  padding: 8px;
  flex: 1;
  min-width: 180px; 
}

.col-1 { flex: 1; }
.col-2 { flex: 2; }
.col-3 { flex: 1; }
.col-4 { flex: 1; }
.col-5 { flex: 1; }


/* Logo collé à gauche */
.footer-image {
  position: relative;
  height: 140px;
  overflow: visible;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.footer-image img {
  width: 145px;
  height: auto;
  position: relative;
  margin-bottom: 8px;
}

/* Titres */
.footer-title {
  font-size: 58px !important;
  font-weight: 900;
  font-family: benzin-regular;
  color: #734B8C;
  margin: 12px auto 0 auto;
  padding: 0 auto;
  line-height: 0.6;  
}
.footer-subtitle1 {
  font-size: 1.6rem;
  font-family: benzin-regular;
  font-style: italic;
  color: #734B8C;
  font-weight: 700;
  margin: 0 auto;
  padding: 0 auto;
  line-height: 0.6;  
}
.footer-subtitle2 a {
    font-style: italic;
    font-size: 1rem;
    color: #734B8C;
    text-decoration: none;
    margin: 0 auto;
    padding: 0 auto;
    line-height: 0.6;  
}

/* Menu */
.footer-menu {
  list-style: none;
  margin-top: 15px;
  padding: 0;
}
.menu-item {
  margin-bottom: 8px;
}
.footer-menu li,
.footer-menu a,
.menu-toggle-footer,
.submenu li a {
  background: none;
  border: none;
  font-family: 'Benzin', sans-serif;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  color: #734B8C;
  font-style:  normal;
}
.submenu {
  display: none;
  list-style: none;
  color: #3D3259;
  padding-left: 5px;
  font-size: 0.9rem;
}
.menu-item.active .submenu {
  display: block;
}

/* Boutons */
.button-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.btn-custom {
  width: 200px;
  height: 55px;
  border: none;
  color: #fff;
  font-size: 16px;
  font-family: 'Benzin', sans-serif;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  margin: 10px 20px 10px 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.2s ease;
	display: flex;
  justify-content: center;
  align-items: center;
}

.btn-custom:hover {
  transform: scale(1.05);
}

.billetterie-footer {
  background-image: url('https://usbparugby-v2.preprod.ab6net.net/wp-content/uploads/btn-dark-1.png');
}
.boutique-footer {
  background-image: url('https://usbparugby-v2.preprod.ab6net.net/wp-content/uploads/bouton.png');
}

/* Réseaux sociaux */
.footer-social {
  display: flex;
  justify-content: center;
  margin-top: 0;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  margin: 0 6px;
  transition: transform 0.2s ease;
}
.footer-social a:hover img {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-image {
    justify-content: center;
  }
}

/* Masquer les menus sur mobile et tablette */
@media (max-width: 1024px) {
  .col-3,
  .col-4 {
    display: none;
  }
  
  .footer-image {
      display: none;
  }
  
  .btn-custom {
      margin: 10px 0 10px 0;
  }
}