@charset "UTF-8";
/* CSS Document */

.video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* Pulsante audio */
.mute-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 8px 14px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.mute-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.audio-label {
  font-size: 14px;
  white-space: nowrap;
}

/* Overlay AVVIA VIDEO (commentato/disattivato) */
.video-overlay {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.start-btn {
  background: #0066cc;
  color: #fff;
  border: none;
  font-size: 18px;
  padding: 12px 24px;
  border-radius: 5px;
  cursor: pointer;
}
