@font-face {
    font-family: "DINish";
    src: url("/assets/fonts/DINish-Light.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
  }
  
  @font-face {
    font-family: "DINish";
    src: url("/assets/fonts/DINish-LightItalic.woff2") format("woff2");
    font-weight: 300;
    font-style: italic;
  }
  
  @font-face {
    font-family: "DINish";
    src: url("/assets/fonts/DINish-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
  }
  
  @font-face {
    font-family: "DINish";
    src: url("/assets/fonts/DINish-Italic.woff2") format("woff2");
    font-weight: 400;
    font-style: italic;
  }
  
  @font-face {
    font-family: "DINish";
    src: url("/assets/fonts/DINish-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
  }
  
  @font-face {
    font-family: "DINish";
    src: url("/assets/fonts/DINish-MediumItalic.woff2") format("woff2");
    font-weight: 500;
    font-style: italic;
  }
  
  @font-face {
    font-family: "DINish";
    src: url("/assets/fonts/DINish-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
  }
  
  @font-face {
    font-family: "DINish";
    src: url("/assets/fonts/DINish-SemiBoldItalic.woff2") format("woff2");
    font-weight: 600;
    font-style: italic;
  }
  
  @font-face {
    font-family: "DINish";
    src: url("/assets/fonts/DINish-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
  }
  
  @font-face {
    font-family: "DINish";
    src: url("/assets/fonts/DINish-BoldItalic.woff2") format("woff2");
    font-weight: 700;
    font-style: italic;
  }
  
  @font-face {
    font-family: "DINish";
    src: url("/assets/fonts/DINish-Heavy.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
  }
  
  @font-face {
    font-family: "DINish";
    src: url("/assets/fonts/DINish-HeavyItalic.woff2") format("woff2");
    font-weight: 800;
    font-style: italic;
  }
  
  @font-face {
    font-family: "DINish";
    src: url("/assets/fonts/DINish-Black.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
  }
  
  @font-face {
    font-family: "DINish";
    src: url("/assets/fonts/DINish-BlackItalic.woff2") format("woff2");
    font-weight: 900;
    font-style: italic;
  }
  
  body {
    font-family: "DINish", sans-serif;
    margin: 0;
    padding: 0;
  }
  
  header {
    padding: 1.5rem 2rem;
    padding-right: 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  header > nav:first-child {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
    margin-top: -1rem;
    padding-right: 2rem;
    box-sizing: border-box;
    font-size: 0.75rem;
  }
  
  header > nav:first-child ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.75rem;
    align-items: center;
  }
  
  header > nav:first-child li {
    display: inline-block;
  }
  
  header > nav:first-child li a {
    text-decoration: none;
    color: inherit;
    font-size: 0.75rem;
  }
  
  header > nav:last-child {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.85rem;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  
  header > nav:last-child > a {
    display: flex;
    align-items: center;
    text-decoration: none;
    align-self: flex-start;
    margin-top: -0.35rem;
  }
  
  header > nav:last-child ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.35rem;
    flex: 1;
    align-items: center;
  }
  
  header > nav:last-child li {
    display: inline-block;
  }
  
  header > nav:last-child li a {
    text-decoration: none;
    color: inherit;
    font-size: 1rem;
    font-weight: 500;
  }
  
  header > nav:last-child li a:hover {
    text-decoration: underline;
  }
  
  header > nav:last-child img {
    height: 2rem;
    width: auto;
  }

  .header-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
  }

  .lang-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: inherit;
    line-height: 1;
    min-width: 2.5rem;
    min-height: 2.5rem;
    align-items: center;
    justify-content: center;
  }

  .lang-toggle:hover {
    opacity: 0.7;
  }

  .lang-toggle:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
  }

  .lang-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-width: 150px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    max-height: 400px;
    overflow-y: auto;
  }

  .lang-menu.active {
    display: flex !important;
  }

  .lang-menu li {
    width: 100%;
  }

  .lang-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: inherit;
    font-size: 0.875rem;
  }

  .lang-menu li a:hover {
    background-color: #f5f5f5;
  }

  @media (max-width: 992px) {
    header {
      padding: 1rem 1.5rem;
      padding-right: 0;
      position: relative;
    }

    header > nav:first-child {
      display: none;
    }

    header > nav:last-child {
      order: 2;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      gap: 1.5rem;
    }

    .lang-toggle {
      display: flex;
    }

    .lang-menu {
      display: none;
    }

    header > nav:last-child > a {
      margin-top: 0.35rem;
    }

    header > nav:last-child ul {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 1rem;
      border-bottom: 1px solid #e0e0e0;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 1000;
    }

    header > nav:last-child ul.active {
      display: flex;
    }

    header > nav:last-child li {
      width: 100%;
      border-bottom: 1px solid #f0f0f0;
    }

    header > nav:last-child li:last-child {
      border-bottom: none;
    }

    header > nav:last-child li a {
      display: block;
      padding: 0.75rem 0;
      font-size: 1rem;
    }

    header > nav:last-child img {
      height: 1.75rem;
    }

    .menu-toggle {
      display: block;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      padding: 0.5rem;
      color: inherit;
      line-height: 1;
      min-width: 2.5rem;
      min-height: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .menu-toggle:hover {
      opacity: 0.7;
    }

    .menu-toggle:focus {
      outline: 2px solid currentColor;
      outline-offset: 2px;
    }
  }

  @media (min-width: 993px) {
    .header-controls {
      display: none;
    }
  }
  