/* Additional styles for narkosearzt-wien.at */

:root {
  --primary: #0369a1;
  --primary-dark: #075985;
  --secondary: #0891b2;
  --text-main: #334155;
  --text-light: #64748b;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 8px;
  z-index: 100;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* Focus styles */
.focus-visible:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(3, 105, 161, 0.2);
}

/* Glass effect */
.glass {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* Background pattern */
.bg-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230ea5e9' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Hover effect for services */
.service-card {
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Animation for CTA buttons */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(3, 105, 161, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(3, 105, 161, 0);
  }
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* Print styles */
@media print {
  header, footer, .mobile-sticky, .no-print {
    display: none !important;
  }
  
  body {
    color: black;
    background: white;
  }
  
  main {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  a {
    text-decoration: none;
    color: black;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
  
  img {
    max-width: 100% !important;
  }
  
  .container {
    width: 100%;
    max-width: 100%;
  }
}

/* Reduced motion preference support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary: #005b99;
    --primary-dark: #004d80;
  }
  
  body {
    color: black;
    background: white;
  }
  
  a {
    text-decoration: underline;
  }
}