* {
  box-sizing: border-box;
}

body {
  background-color: #1d201f;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

@font-face {
  font-family: "BebasNeue";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/Bebas_Neue/BebasNeue-Regular.ttf") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 200;
  src: url(/assets/fonts/Inter/Inter_18pt-Light.ttf) format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100;
  src: url(/assets/fonts/Inter/Inter_18pt-Thin.ttf) format("truetype");
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: auto;
}
.lenis.lenis-stopped {
  overflow: clip;
}

html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.desktop-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease-in-out;
}

header.scrolled {
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
  transition: all 0.3s ease-in-out;
}

.desktop-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.7rem 3.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-links a {
  font-family: "Inter", sans-serif;
  font-weight: 100;
  font-size: 1.2rem;
  color: #fcf6ec;
  text-decoration: none;
}

.current-site {
  color: #4a9c9d !important;
  font-weight: 200 !important;
}

.desktop-header button {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #4a9c9d;
  border: none;
  color: #fcf6ec;
  cursor: pointer;
  padding: 0.9rem 1.4rem;
  font-size: 1rem;
  font-weight: 100;
  font-family: "Inter", sans-serif;
}

.mobile-header {
  display: none;
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  padding: 1.2rem 1rem;
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.mobile-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-mobile {
  width: 180px;
  height: auto;
}

.nav-menu {
  background: transparent;
  border: none;
}

.line-menu {
  background-color: #fcf7eb;
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
}

.line-small {
  background-color: #fcf7eb;
  width: 20px;
  height: 1px;
  margin-bottom: 5px;
  float: right;
}

.menu-mobile {
  display: none;
  background-color: #1d201f;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  height: 100%;
  height: 100dvh;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}

.menu-mobile-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.menu-close {
  height: 20px;
  position: relative;
  width: 20px;
}

.menu-closing {
  position: absolute;
  right: 1.4rem;
  top: 1.8rem;
}

.menu-links {
  display: flex;
  flex-direction: column;
  top: 30%;
  left: 1.4rem;
  padding: 30% 2rem 2rem 2rem;
}

.menu-mobile-bottom {
  padding-bottom: 1rem;
}

.menu-links a {
  text-decoration: none;
  padding: 0.7rem 0;
  color: #fcf7eb;
  font-family: "BebasNeue", sans-serif;
  font-weight: 100;
  font-size: 2.2rem;
  line-height: 2rem;
}

.menu-divider {
  display: block;
  margin: 2rem 2rem 0 auto;
  width: calc(100% - 4rem);
  height: 2px;
}

.menu-divider line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.icons-menu {
  display: flex;
  color: #fcf7eb;
  font-family: "BebasNeue", sans-serif;
  font-weight: 100;
  font-size: 1.5rem;
  line-height: 2rem;
  padding: 0.8rem 0 0 1.5rem;
}

.icons-menu a {
  margin: 0 0.5rem;
}

main {
  position: relative;
  margin: 12% 6rem 0 6rem;
}

.racing-lines-1 {
  position: absolute;
  top: -20px;
  left: -30px;
  z-index: 1;
}

h1 {
  color: #fcf6ec;
  font-family: "BebasNeue", sans-serif;
  font-weight: 400;
  font-size: 4rem;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.page-intro p {
  color: #fcf6ec;
  font-weight: 100;
  font-size: 1.3rem;
  margin-top: 3.4rem;
}

.contact-section {
  margin: 6rem 6rem 0 6rem;
}

.contact-layout {
  display: flex;
  justify-content: space-between;
}

.contact-form-wrapper {
  border-right: 1px solid #303030;
  width: 50%;
}

.contact-item {
  width: 50%;
  padding: 2rem 2rem 2rem 0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.row {
  display: flex;
  gap: 20px;
}

.row > div {
  flex: 1;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #fcf6ec;
  padding: 8px 4px;
  font-size: 16px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 1.3rem;
  font-weight: 100;
  color: #fcf6ec;
  font-family: "Inter", sans-serif;
  margin-top: 2rem;
}

input[type="file"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: #555555;
  font-size: 1.3rem;
  font-weight: 200;
  font-family: "Inter", sans-serif;
}

textarea {
  resize: vertical;
  min-height: 200px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4rem;
}

#datenschutz {
  cursor: pointer;
}

.checkbox-container label {
  font-size: 0.9rem;
  font-weight: 100;
  color: #fcf6ec;
  cursor: pointer;
}

.checkbox-container a {
  color: #4a9c9d;
  text-decoration: none;
}

.send-wrapper {
  margin-top: 3rem;
}

.send-btn {
  gap: 4px;
  background-color: #4a9c9d;
  border: none;
  color: #fcf6ec;
  cursor: pointer;
  padding: 0.9rem 1.4rem;
  font-size: 1.1rem;
  font-weight: 100;
  font-family: "Inter", sans-serif;
}

.items-layout {
  display: flex;
  justify-content: center;
  gap: 3rem;
  height: auto;
  margin-bottom: 3rem;
}

.info-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  cursor: pointer;
  padding: 1rem;
  width: 300px;
  border-radius: 15px;
  transition: all 0.2s ease-in-out;
}

.info-item:hover {
  background-color: #171717;
}

.info-item h2 {
  color: #fcf6ec;
  font-size: 1.9rem;
  font-weight: 200;
  margin-top: 1rem;
  margin-bottom: 0.8rem;
}

.info-item a {
  font-weight: 100;
  color: #fcf6ec;
  font-size: 1.3rem;
  text-decoration: none;
}

.info-item p {
  color: #fcf6ec;
  font-weight: 100;
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 0;
}

.map-wrapper {
  width: 100%;
  height: 300px;
  position: relative;
  margin-top: 3rem;
  margin-left: 1.6rem;
}

#map {
  width: 100%;
  height: 100%;
}

#map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  color: #fff6ec;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
}

#map-overlay p {
  font-size: 1.1rem;
  font-weight: 100;
  margin-bottom: 20px;
  padding: 0 20px;
}

#map-overlay a {
  font-size: 1rem;
  font-weight: 200;
  color: #4a9c9d;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

#accept-map {
  font-size: 1rem;
  font-weight: 100;
  background-color: #4a9c9d;
  border: none;
  color: #fcf6ec;
  cursor: pointer;
  padding: 0.9rem 1.4rem;
  font-family: "Inter", sans-serif;
  color: #fff6ec;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
}

.hd-dsktp {
  display: none;
}

footer {
  background-color: #171717;
  margin-top: 10rem;
  padding: 6rem 6rem 0.2rem 6rem;
  position: relative;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
}

.logo-side {
  width: 30%;
}

.logo-side img {
  width: 200px;
  height: auto;
}

.logo-desktop {
  width: 180px;
}

.logo-side p {
  color: #fcf6ec;
  font-size: 1rem;
  font-weight: 100;
  width: 50%;
  margin-top: 1.8rem;
}

.links-side {
  width: 60%;
  display: flex;
  justify-content: space-evenly;
  padding-top: 3.4rem;
}

.links-side h4 {
  font-family: "BebasNeue", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: #fcf6ec;
}

.links-side ul {
  padding: 0;
}

.links-side ul li {
  list-style: none;
  line-height: 1.6rem;
}

.links-side ul li a {
  font-size: 1rem;
  color: #fcf6ec;
  list-style: none;
  font-weight: 100;
  text-decoration: none;
}

.bottom-line {
  margin-top: 4rem;
  margin-bottom: 0.3rem;
  background: linear-gradient(
    270deg,
    rgba(47, 47, 47, 0.07) 12%,
    rgba(252, 246, 236, 0.2) 50.5%,
    rgba(47, 47, 47, 0.07) 87.5%
  );
  width: 100%;
  height: 1px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #fcf6ec;
  font-size: 0.9rem;
  font-weight: 100;
}

.footer-bottom a {
  color: #fcf6ec;
  font-size: 0.9rem;
  font-weight: 100;
  text-decoration: none;
}

.credits:hover {
  color: #4a9c9d;
}

@media (max-width: 768px) {
  .desktop-header {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .cta-btns-wrapper {
    gap: 0.8rem;
    margin-top: 1rem;
  }
  main {
    margin: 35% 1.5rem 0 1.5rem;
  }
  h1 {
    font-size: 4rem;
    margin-top: 0;
  }
  .racing-lines-1 {
    top: -15px;
  }
  .contact-section {
    margin: 4rem 1rem 0 1rem;
  }
  .contact-layout {
    flex-direction: column-reverse;
    gap: 4rem;
  }
  .contact-item {
    width: 100%;
    padding: 0;
  }
  .items-layout {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
  }
  .map-wrapper {
    margin: 0;
  }
  .contact-form-wrapper {
    border: none;
  }
  .rmv-mb {
    display: none;
  }
  .hd-dsktp {
    display: block;
    margin-top: 6rem;
  }
  footer {
    margin-top: 0;
    padding: 4rem 1.5rem 0.2rem 1.5rem;
  }
  .racing-lines-wrapper-footer {
    top: calc(-50% - 2rem);
    left: 0;
  }
  .footer-card-wrapper {
    top: -50%;
    left: 1.5rem;
    right: 1.5rem;
  }
  .footer-card-layout {
    grid-template-columns: 1fr;
  }
  .footer-card {
    width: 100%;
  }
  .footer-card h3 {
    font-size: 2rem;
  }
  .quick-link-item {
    gap: 0.8rem;
  }
  .footer-card p {
    font-size: 1.1rem;
  }
  .quick-link-item a {
    font-size: 1.1rem;
  }
  .footer-layout {
    flex-direction: column;
  }
  .logo-side {
    width: 100%;
    margin-top: 2rem;
  }
  .logo-side p {
    width: 100%;
  }
  .links-side {
    flex-direction: column;
    padding-top: 0;
  }
  .links-side h4 {
    margin-bottom: 1rem;
    margin-top: 1.4rem;
  }
  .footer-bottom {
    flex-direction: column;
    padding-bottom: 0.6rem;
  }
  .footer-bottom p {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .desktop-header {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .cta-btns-wrapper {
    gap: 0.8rem;
    margin-top: 1rem;
  }
  main {
    margin: 24% 1.5rem 0 1.5rem;
  }
  h1 {
    font-size: 4rem;
    margin-top: 0;
  }
  .racing-lines-1 {
    top: -15px;
  }
  .contact-section {
    margin: 4rem 1rem 0 1rem;
  }
  .contact-layout {
    flex-direction: column-reverse;
    gap: 4rem;
  }
  .contact-item {
    width: 100%;
    padding: 0;
  }
  .items-layout {
    margin-bottom: 3rem;
  }
  .map-wrapper {
    margin: 0;
  }
  .contact-form-wrapper {
    border: none;
  }
  .rmv-mb {
    display: none;
  }
  .hd-dsktp {
    display: block;
    margin-top: 6rem;
  }
  footer {
    margin-top: 0;
    padding: 4rem 1.5rem 0.2rem 1.5rem;
  }
  .racing-lines-wrapper-footer {
    top: calc(-50% - 2rem);
    left: 0;
  }
  .footer-card-wrapper {
    top: -50%;
    left: 1.5rem;
    right: 1.5rem;
  }
  .footer-card-layout {
    grid-template-columns: 1fr;
  }
  .footer-card {
    width: 100%;
  }
  .footer-card h3 {
    font-size: 2rem;
  }
  .quick-link-item {
    gap: 0.8rem;
  }
  .footer-card p {
    font-size: 1.1rem;
  }
  .quick-link-item a {
    font-size: 1.1rem;
  }
  .footer-layout {
    flex-direction: column;
  }
  .logo-side {
    width: 100%;
    margin-top: 2rem;
  }
  .logo-side p {
    width: 100%;
  }
  .links-side {
    flex-direction: column;
    padding-top: 0;
  }
  .links-side h4 {
    margin-bottom: 1rem;
    margin-top: 1.4rem;
  }
  .footer-bottom {
    flex-direction: column;
    padding-bottom: 0.6rem;
  }
  .footer-bottom p {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
  .menu-links {
    padding-top: 7%;
  }
  main {
    margin-top: 15%;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1540px) {
  .items-layout {
    gap: 1rem;
  }
  .info-item {
    width: 280px;
  }
}
