/* Billet Colisée - Custom Styles */

/* Floating ticket animations */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-30px) rotate(8deg); }
  50% { transform: translateY(-15px) rotate(-8deg); }
  75% { transform: translateY(-40px) rotate(5deg); }
}

.ticket-float {
  animation: float 25s infinite ease-in-out;
}

/* Ticket Visual Styling */
.ticket-decoration {
  background: linear-gradient(135deg, #e0e7ff 0%, #f3e8ff 100%);
  border: 2px dashed rgba(99, 102, 241, 0.2);
  border-radius: 16px;
  position: absolute;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 0;
  opacity: 0.6;
}

.ticket-decoration::before,
.ticket-decoration::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background: #f9fafb;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.ticket-decoration::before { left: -12px; }
.ticket-decoration::after { right: -12px; }

/* Partner Logo Grayscale Hover */
.partner-logo {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Mobile menu transition */
#mobileMenu {
  transition: all 0.3s ease;
}

#mobileMenu.hidden {
  display: none;
}

/* FAQ accordion smooth transitions */
details summary::-webkit-details-marker {
  display: none;
}

details[open] summary ~ * {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #6366f1;
  outline-offset: 2px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #c7d2fe;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a5b4fc;
}

