/* Teide Seilbahn Tickets - 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, #fef3c7 0%, #fed7aa 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;
}

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

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

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

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

/* Article content styles */
.article-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #374151;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.article-content p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

.article-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.article-content li {
  margin-bottom: 0.5rem;
  line-height: 1.75;
}

.article-content strong {
  font-weight: 600;
  color: #1f2937;
}

