@font-face {
  font-family: 'Capture';
  src: url('../fonts/capture.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.titleCapture {
  font-family: 'Capture', sans-serif;
  font-weight: 20;
}


html{scroll-behavior:smooth}

.important{
	color: #A5C325;
}

.important a,a:hover{
	color: #A5C325;
	text-decoration: none;
}

.description a,a:hover{
	color: #D1D1D1;
	text-decoration: none;
}

.note{
	color:grey;
	font-style: italic;
}

.justify{
	text-align: justify;
}

.doc-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  transition: transform 0.2s ease, color 0.2s ease;
}
.doc-icon i {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #9acd32; /* ou une autre couleur vive */
}
.doc-icon:hover {
  transform: scale(1.1);
  color: #c4ff75;
}
.doc-icon p {
  margin: 0;
  font-weight: bold;
}

.custom-col {
  flex: 0 0 20%; /* Force 5 blocs sur une ligne */
  max-width: 20%;
}

@media (max-width: 991px) {
  .custom-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 576px) {
  .custom-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.legacy-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
}

.zoomable {
cursor: zoom-in;
transition: transform 0.2s;
}

.zoomable:hover {
transform: scale(1.05);
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 30vw;
  max-height: 50vh;
  border-radius: 10px;
}

.lightbox:target {
  display: flex;
}

.lightbox-close {
position: absolute;
top: 20px;
right: 30px;
font-size: 30px;
color: white;
cursor: pointer;
text-decoration: none;
}

.fb-color {
  color: #1877F2; /* Bleu Facebook */
}

.ig-color {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.equip-link {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #e0e0e0; /* gris clair */
  color: #111;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.equip-link:hover {
  background-color: #d0d0d0; /* un peu plus foncé au survol */
  color: #000;
}

@keyframes pulseBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.bounce-in {
  animation: pulseBounce 1s ease-in-out infinite;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-timing-function: ease-in-out;
}
