/* Sanitas Consulting Kft - Modern Blue-Green Design */

/* Modern hero gradient - Blue to Teal to Green */
.hero-gradient {
  background: linear-gradient(135deg, #0EA5E9 0%, #14B8A6 50%, #10B981 100%);
}

/* Card hover effect - Modern elevation */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
}

/* Logo icon gradient */
.logo-gradient {
  background: linear-gradient(135deg, #0EA5E9 0%, #10B981 100%);
}

/* Mobile menu animation */
.mobile-menu {
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Accent badges with gradients */
.badge-blue {
  background: linear-gradient(135deg, #0EA5E9, #0284C7);
}

.badge-green {
  background: linear-gradient(135deg, #10B981, #059669);
}

/* Responsive text utilities */
@media (max-width: 640px) {
  .break-all {
    word-break: break-all;
    overflow-wrap: break-word;
  }
}

/* Accessibility improvements */
:focus-visible {
  outline: 2px solid #0EA5E9;
  outline-offset: 2px;
}

/* Screen reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reduced motion preference */
@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;
  }
}
