.jost-font {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
}

.grenze-gotisch-font {
  font-family: "Grenze Gotisch", serif;
  font-optical-sizing: auto;
}

.delius-swash-caps-font {
  font-family: "Delius Swash Caps", cursive;
  font-weight: 400;
  font-style: normal;
}

.solitreo-regular-font {
  font-family: "Solitreo", cursive;
  font-weight: 400;
  font-style: normal;
}

::placeholder {
  color: #898989;
  opacity: 1;
}

* {
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  background: #1c1c1c;
  color: #f8fafc;
}
[data-theme=light] body {
  background: #f8fafc;
  color: #0a0f0f;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -2;
  display: none;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#loader.bg-black {
  background: #000;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #fff;
  border-top: 6px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loading-area {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  overflow: hidden;
}

.loading-box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  z-index: 9999;
}

.loading-pic {
  width: 100%;
  position: absolute;
  top: 50%;
  z-index: 99999;
  text-align: center;
  transform: translateY(-50%);
}

.loading-cover,
.loading-srh-bar,
.loading-map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

#theme-toggle {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222222;
  color: #f8fafc;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 0 1px #334155;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
#theme-toggle svg {
  width: 20px;
  height: 20px;
  transition: transform 0.4s ease;
}
#theme-toggle .icon-sun {
  display: block;
}
#theme-toggle .icon-moon {
  display: none;
}
@media (min-width: 1024px) {
  #theme-toggle:hover {
    transform: scale(1.12) rotate(15deg);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.5), 0 0 0 1px #475569;
  }
}
#theme-toggle:active {
  transform: scale(0.95);
}
[data-theme=light] #theme-toggle {
  background: #f8fafc;
  color: #0a0f0f;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px;
}
[data-theme=light] #theme-toggle .icon-sun {
  display: none;
}
[data-theme=light] #theme-toggle .icon-moon {
  display: block;
}

nav {
  display: block;
  width: 100%;
  z-index: 10;
  padding: 20px 0;
  text-align: center;
}
nav .social-media-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
nav .social-media-wrap a {
  padding-inline: 10px;
  font-size: 1.25rem;
}
nav .nav-toggle {
  display: none;
}
nav .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 110;
}
nav .hamburger span {
  width: 25px;
  height: 3px;
  background: #f8fafc;
  display: block;
  transition: 0.3s ease;
}
[data-theme=light] nav .hamburger span {
  background: #0a0f0f;
}
nav .logo {
  display: block;
  padding: 10px 0;
  width: 150px;
  text-align: center;
  margin: 0 auto;
  z-index: 110;
}
[data-theme=light] nav .logo {
  filter: invert(1);
}
nav .logo img {
  width: 100%;
  height: auto;
}
nav ul {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  background-color: #222222;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 20px;
  transition: background-color 0.3s ease;
}
[data-theme=light] nav ul {
  background-color: #f8fafc;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px;
}
nav ul li {
  display: flex;
}
nav ul li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  color: #f8fafc;
  padding: 15px 25px;
}
[data-theme=light] nav ul li a {
  color: #0a0f0f;
}
@media (min-width: 1024px) {
  [data-theme=light] nav ul li a:hover {
    background-color: #e6e6e6;
  }
}
@media (min-width: 1024px) {
  nav ul li a:hover {
    background-color: #2f2f2f;
  }
}
@media (max-width: 1024px) {
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    margin-top: 10px;
  }
  nav .social-media-wrap a {
    font-size: 1.5rem;
  }
  nav .logo {
    margin: 0;
  }
  nav .hamburger {
    display: flex;
  }
  nav ul {
    width: 100%;
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 15, 0.85);
    backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.3, 1), transform 0.5s cubic-bezier(0.25, 1, 0.3, 1), visibility 0.5s cubic-bezier(0.25, 1, 0.3, 1);
    border-radius: 0;
    box-shadow: none;
    z-index: 100;
  }
  nav ul li {
    display: block;
  }
  nav ul li a {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    padding: 10px;
  }
  nav .nav-toggle:checked ~ ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  nav .nav-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  nav .nav-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }
  nav .nav-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}