/* Bootstour Stockholm - Custom Styles */

/* Floating wave animations */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-25px) rotate(5deg); }
  50% { transform: translateY(-12px) rotate(-5deg); }
  75% { transform: translateY(-35px) rotate(3deg); }
}

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

/* Wave Visual Styling */
.wave-decoration {
  background: linear-gradient(135deg, #e0f2fe 0%, #cffafe 50%, #a5f3fc 100%);
  border: 2px dashed rgba(6, 182, 212, 0.2);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: absolute;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 0;
  opacity: 0.5;
}

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

.wave-decoration::before { left: -10px; }
.wave-decoration::after { right: -10px; }

/* 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 #0891b2;
  outline-offset: 2px;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: #22d3ee;
}

/* Card hover effects */
.group:hover img {
  transform: scale(1.05);
}

/* Prose styling adjustments */
.prose h2 {
  margin-top: 2rem;
}

.prose h3 {
  margin-top: 1.5rem;
}

.prose p {
  margin-bottom: 1rem;
}

/* Button hover animations */
a[class*="rounded-full"],
a[class*="rounded-xl"] {
  transition: all 0.3s ease;
}

/* Image loading placeholder */
img {
  background-color: #e2e8f0;
}

/* Print styles */
@media print {
  header, footer, .wave-decoration, .wave-float {
    display: none !important;
  }
  
  body {
    background: white !important;
  }
  
  .max-w-4xl {
    max-width: 100% !important;
  }
}

