/* Font Face */
@font-face {
  font-family: 'Söhne';
  src: url('/path/to/fonts/soehne-regular.woff2') format('woff2'),
       url('/path/to/fonts/soehne-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* Selection */
::selection {
  background: #ffffff; 
  color: #000000; 
}

/* Root Variables */
:root {
  font-size: 16px;
  --royal-blue-light: #000000;
  --royal-blue-dark: #000000;
  --white: #fff;
}

/* Links */
a {
  color: var(--white);
  text-decoration: none;
}

/* Menu */
.menu {
  padding: 5px;
  width: 100%;
  background-color: #080808;
  position: fixed;
  z-index: 1000;
}

/* Menu Container */
.menu-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Menu Logo */
.menu-logo {
  height: 22px;
  user-select: none;
}

/* Menu Items */
.menu-items {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.menu-items li {
  margin: 0 15px;
  position: relative;
}

/* Menu Items Links */
.menu-items a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  -webkit-text-stroke-width: 0.1px;
  -webkit-text-stroke-color: white;
}

/* Fullscreen Overlay */
.fullscreen-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  z-index: 999;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 24px;
  text-align: center;
}

/* Show Overlay on Hover */
.menu-items li:hover .fullscreen-overlay,
.menu-search:hover .fullscreen-overlay {
  display: flex;
}

/* Menu Search */
.menu-search {
  display: flex;
  align-items: center;
  position: relative;
}

/* Search Icon */
.search-icon {
  width: 18px;
  height: 18px;
  fill: var(--white);
  transition: transform 0.5s ease;
  cursor: pointer;
}

/* Hover Effect for Search Icon */
.search-icon:hover {
  transform: rotate(90deg) scale(0.9);
  transition: transform 0.2s ease, scale 0.2s ease;
}
