/* Style global pour la section */
.qr-code-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  max-width: 800px;
}

/* Titre principal */
.qr-code-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

/* Description */
.qr-code-section .section-description {
  font-size: 1.5rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Container pour le QR code */
.qr-code-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* Image du QR code */
.qr-code-container .qr-code {
  border: 5px solid #eaeaea;
  border-radius: 8px;
  max-width: 100%;
  transition: transform 0.3s ease;
}

.qr-code-container .qr-code:hover {
  transform: scale(1.05);
  border-color: #d4af37; /* Couleur dorée pour mettre en valeur */
}

/* Lien alternatif */
.qr-code-container a {
  font-size: 1.6rem;
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.section {
  margin-top: 12rem;
}

.qr-code-container a:hover {
  color: #a6812a;
}

/* Responsiveness */
@media (max-width: 768px) {
  .qr-code-section {
    padding: 20px 15px;
  }

  .qr-code-section .section-title {
    font-size: 1.8rem;
  }

  .qr-code-section .section-description {
    font-size: 1.6rem;
  }

  .qr-code-container .qr-code {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
}
