.form-label {
  width: 100px;
}

.form-group {
  margin-bottom: 15px;
}

.content-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-wrapper {
  max-width: 950px;
  width: 100%;
}

.video-wrapper video {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .content-row {
    flex-direction: column;
    align-items: center;
  }
}

/* Footer */

    .form-label {
      width: 100px;
    }
    .form-group {
      margin-bottom: 15px;
    }

    .content-row {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-top: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .form-wrapper {
      max-width: 950px;
      width: 100%;
    }

    .video-wrapper video {
      max-width: 400px;
      width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }

    @media (max-width: 768px) {
      .content-row {
        flex-direction: column;
        align-items: center;
      }
    }

     footer {
  background-color: #004aad; /* même bleu que le bouton Accueil */
  color: white;
  padding: 20px;
  font-weight: 600;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    footer .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .social-icons {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .social-icons a img {
      width: 30px;
      height: 30px;
      transition: transform 0.3s ease;
    }

    .social-icons a:hover img {
      transform: scale(1.2) rotate(360deg);
    }

    @media (min-width: 768px) {
      footer .container {
        flex-direction: row;
        justify-content: space-between;
      }
    }
    @media (max-width: 576px) {
    footer .container {
      flex-direction: column;
      align-items: flex-start !important;
    }

    .footer-left,
    .location-section,
    .social-icons {
      margin-bottom: 10px;
      width: 100%;
      text-align: left;
    }

    .footer-left span,
    .location-section a {
      display: block;
      margin: 5px 0;
    }

    .social-icons {
      justify-content: start;
      gap: 10px;
    }
  }
.franchise-btn, 
.tassili-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: #cc0000;     
  color: white;
  padding: 12px 28px;            
  border-radius: 50px;
  border: none;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  user-select: none;
}

.franchise-btn, 
.tassili-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: #003366;    
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  user-select: none;
  transition: transform 0.3s ease;
}


.franchise-btn::before,
.tassili-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-25deg);
  animation: slideLight 2s linear infinite;
}

@keyframes slideLight {
  0% {
    left: -60%;
  }
  100% {
    left: 120%;
  }
}

.franchise-btn:hover,
.tassili-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}


/****exposants*****/



.items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px; 
  padding: 15px 20px;
  border-radius: 12px;
  background: white;
  color: #003366;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item img {
  max-width: 100px;
  max-height: 120px;
  margin: 0 auto 10px;
  display: block;
  border-radius: 12px;
}

.item span {
  font-size: 5px;
  margin-top: 0px;
}

.item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

