/* Skip link for keyboard navigation */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
  border-radius: 4px;
}

.skip-link:focus {
  top: 6px;
}

/* Breadcrumb styling */
.breadcrumb {
  padding: 1em 0;
  background: rgba(255,255,255,0.1);
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  margin: 0 auto;
  max-width: 1000px;
  width: 90%;
  padding: 0;
}

.breadcrumb li {
  font-size: 14px;
}

.breadcrumb li:not(:last-child)::after {
  content: " > ";
  margin: 0 0.5em;
  color: #666;
}

.breadcrumb a {
  color: var(--darker-green);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Loading spinner */
.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2em;
  color: var(--darker-green);
  font-style: italic;
}

.loading-spinner::after {
  content: "";
  width: 20px;
  height: 20px;
  margin-left: 10px;
  border: 2px solid var(--lighter-green);
  border-top: 2px solid var(--darker-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Print styles */
@media print {
  .cookie-banner,
  .loading-spinner,
  .hamburger,
  nav,
  .elfsight-app-8176e3b4-e56b-49a1-8978-da44fc290046,
  .elfsight-app-febf3f71-72cf-4911-b40e-d4d65de084d4 {
    display: none !important;
  }
  
  header {
    background: none !important;
    color: black !important;
    height: auto !important;
  }
  
  header h1, header h2, header p {
    color: black !important;
    text-shadow: none !important;
  }
  
  .photo-row {
    display: none;
  }
  
  section {
    page-break-inside: avoid;
  }
}

/* Focus indicators - only for keyboard navigation */
*:focus-visible {
  outline: 2px solid #4A90E2;
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .button {
    border: 2px solid currentColor;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Screen reader only text */
.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;
}