/**
 * HOG Dienstleistungen - Unified styles
 * Tailwind is loaded via CDN; this file contains base overrides and utilities.
 */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
body {
  font-family: 'Inter', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}
/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 0.75rem 1rem;
  background: var(--primary, #1132d4);
  color: white;
  z-index: 100;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* Contact form – select dropdown: single arrow, no duplicate */
.contact-form-select-wrapper {
  position: relative;
}
.contact-form-select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
  padding-right: 2.75rem;
}
.contact-form-select-wrapper .select-icon {
  position: absolute;
  top: 50%;
  right: 0.875rem;
  transform: translateY(-50%);
  pointer-events: none;
  color: #6b7280;
}
.dark .contact-form-select-wrapper .select-icon {
  color: #9ca3af;
}
