/* Billet Pyramides de Gizeh - 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 - warm amber/sand theme */
.ticket-decoration {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px dashed rgba(217, 119, 6, 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 #d97706;
  outline-offset: 2px;
}

/* Amber theme overrides for CTAs (if Tailwind amber not in build) */
.bg-amber-500 { background-color: #f59e0b; }
.bg-amber-600 { background-color: #d97706; }
.hover\:bg-amber-600:hover { background-color: #d97706; }
.hover\:bg-amber-700:hover { background-color: #b45309; }
.text-amber-700 { color: #b45309; }
.border-amber-400\/30 { border-color: rgba(251, 191, 36, 0.3); }
.bg-amber-500\/30 { background-color: rgba(245, 158, 11, 0.3); }
.text-amber-100 { color: #fef3c7; }
.shadow-amber-200 { box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.2); }
.bg-amber-50 { background-color: #fffbeb; }
.hover\:bg-amber-100:hover { background-color: #fef3c7; }
.text-amber-600 { color: #d97706; }
.hover\:text-amber-600:hover { color: #d97706; }
.focus\:ring-amber-500:focus { --tw-ring-color: rgba(245, 158, 11, 0.5); }

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

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