/* -------------------------------------------------- */
/* === STYLE GLOBAL === */
/* -------------------------------------------------- */

body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  color: #1e1e1e;
  text-align: center;
  margin: 0;
  padding: 0;
}

h2 {
  font-size: 1.8rem;
  color: #1e1e1e;
  font-weight: 800;
  margin: 40px 0 20px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background-color: #f5c518;
  margin: 10px auto 0;
  border-radius: 2px;
}




/* Hockey section CSS - override rules here */


.hockey-section {
  position: relative;
  width: 100vw;
  margin-left: -50vw;
  left: 50%;
  text-align: center;
  padding: 120px 20px;
  Padding top: 2em;
  color: #fff;
  background: radial-gradient(circle at 95% 0%, rgba(247, 200, 92, 0.2) 0%, rgba(0, 0, 0, 0.95) 70%), 
              linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 100%);
}

.hockey-section h2 {
  font-size: 2.6em;
  color: #f7c85c;
  margin-bottom: 70px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px rgba(247, 200, 92, 0.3);
}

.hockey-section .cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 150px;
}

.hockey-section .card {
  width: 320px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  background: #1e1e1e;
  transition: transform 0.3s ease, box-shadow 0.4s ease;
}

.hockey-section .card:hover {
   box-shadow: 0 0 25px rgba(247, 200, 92, 0.6);
}

.hockey-section .card-image {
  background-size: cover;
  background-position: center;
  height: 180px;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.hockey-section .card:hover .card-image {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.hockey-section .card-content {
  padding: 25px;
}

.hockey-section .card-content h3 {
  color: #f7c85c;
  font-size: 1.2em;
  margin-bottom: 10px;
}

.hockey-section .card-content p {
  font-size: 0.95em;
  color: #ccc;
}

/* Partenaires slider CSS - override rules here */

.partenaires-slider {
  text-align: center;
  overflow: hidden;
  background: none;
  margin: 0;
  padding: 0;
}

.partenaires-slider h2 {
  color: #1e1e1e;
  font-size: 2em;
  font-weight: 700;
  margin: 0;
  padding: 40px 0 10px 0;
  width: 100%;
  text-align: center;
}

.partenaires-slider h2::after {
  display: none;
}

.slider {
  height: 100px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slide-track {
  display: flex;
  width: calc(300px * 12);
  animation: scroll 50s linear infinite;
}

.slide {
  height: 100px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  max-height: 80px;
  max-width: 100px;
  filter: brightness(0.9);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.slide a:hover img {
  filter: brightness(1.2);
  opacity: 1;
  transform: scale(1.3);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 6)); }
}

.separator-partners {
  width: 100%;
  height: 2px;
  background-color: #f7c85c;
  margin: 60px 0 80px 0;
}

