
@font-face {
  font-family: 'icomoon';
  src:  url('/fonts/icomoon.eot?iu5o1u');
  src:  url('/fonts/icomoon.eot?iu5o1u#iefix') format('embedded-opentype'),
    url('/fonts/icomoon.ttf?iu5o1u') format('truetype'),
    url('/fonts/icomoon.woff?iu5o1u') format('woff'),
    url('/fonts/icons.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

[data-icon]:before {
  font-family: "icomoon";
  content: attr(data-icon);
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-envelop:before {
  content: "\e945";
}
.icon-twitter:before {
  content: "\ea96";
}
.icon-github:before {
  content: "\eab0";
}
.icon-linkedin:before {
  content: "\eac9";
}




.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

/* ==========================================
Single-colored icons can be modified like so:
.icon-name {
  font-size: 32px;
  color: red;
}
========================================== */

.icon-connection {
  width: 1.25em;
}

.icon-books {
  width: 1.125em;
}

.icon-library {
  width: 1.0625em;
}

/* Language Switcher Styles - integrated as menu item */
.language-switcher {
  position: relative;
  display: inline-block;
}

.lang-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 1.2rem;
  color: black;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.lang-toggle:hover,
.lang-toggle:focus {
  color: DarkOrange;
  outline: none;
}

.lang-toggle[aria-expanded="true"] .lang-arrow {
  transform: rotate(180deg);
}

.lang-arrow {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 120px;
  z-index: 1000;
  display: none;
}

.lang-menu.show {
  display: block;
}

.lang-menu a {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: black;
  border-bottom: 1px solid #eee;
  transition: all 0.2s ease-in-out;
  font-size: 1rem;
}

.lang-menu a:last-child {
  border-bottom: none;
}

.lang-menu a:hover,
.lang-menu a:focus {
  background-color: #f5f5f5;
  color: DarkOrange;
  outline: none;
}

.lang-menu a[aria-current="page"] {
  background-color: #e6f3ff;
  font-weight: bold;
}

/* Skip to content link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  z-index: 1001;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* Responsive adjustments for language switcher */
@media (max-width: 768px) {
  .lang-menu {
    right: auto;
    left: 0;
  }
}