*{
font-family: 'Raleway', sans-serif;
}
body {
    margin: 0px;
    padding: 0px;
}

.vente-container {
  background: url('../images/venteimg.jpg') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
  
}

/* Zone des boutons */
.boutons {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* Style des boutons */
.vente-btn {
  padding: 15px 30px;
  background: linear-gradient(135deg, #ff9900, #e68a00);
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 8px;
  transition: transform 0.2s, background 0.2s;
}

.vente-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #e68a00, #cc7a00);
}

/* Responsive */
@media (max-width: 600px) {
  .vente-btn {
    font-size: 1rem;
    padding: 12px 24px;
  }
}
.main-buttons {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  z-index: 10;
  transform: translateY(-60px);
}

.floating-cloud {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  height: 600px;
  pointer-events: none;
}

.floating-label {
  position: absolute;
  padding: 8px 16px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  color: white;
  font-size: 1rem;
  pointer-events: auto;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: float 5s ease-in-out infinite;
}

.floating-label:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Positions spécifiques améliorées */
.sonorisation { top: 10%; left: 20%; animation-delay: 0s; }
.eclairage { top: 30%; left: 10%; animation-delay: 0.5s; }
.djshop { top: 50%; left: 5%; animation-delay: 1s; }
.homestudio { top: 70%; left: 0%; animation-delay: 1.5s; }
.cablage { top: 85%; left: 10%; animation-delay: 2s; }
.flightcases { top: 100%; left: 20%; animation-delay: 2.5s; }

.guitares { top: 10%; right: 20%; animation-delay: 0s; }
.percussions { top: 35%; right: 12%; animation-delay: 0.5s; }
.claviers { top: 70%; right: 0%; animation-delay: 1s; }
.partitions { top: 100%; right: 20%; animation-delay: 1.5s; }


@media (max-width: 768px) {
  .vente-btn {
    font-size: 1rem;
    padding: 12px 24px;
  }

  .floating-label {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
} 

.floating-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  top: 0;
  left: 0;
  z-index: 0; /* ça met les fils derrière les bulles flottante */
}

.line {
  stroke: white;
  stroke-width: 1.5;
  opacity: 0.8;
}
.floating-label {
  text-decoration: none;
}
