@font-face { 
    font-family: 'Inter Medium';
    src: url('font/Inter18pt-Medium.woff2') format('woff2'),
        url('font/Inter18pt-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter Bold';
    src: url('font/Inter18pt-Bold.woff2') format('woff2'),
        url('font/Inter18pt-Bold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter Semibold';
    src: url('font/Inter18pt-SemiBold.woff2') format('woff2'),
        url('font/Inter18pt-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
  --bs-body-font-family: 'Inter Medium', system-ui, sans-serif;
  --bs-dark-rgb: 57,56,54;
}

.navbar-nav {
  --bs-nav-link-font-weight:800;
  --bs-navbar-nav-link-padding-x: 1.5rem;
   --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 1);
  font-family: 'Inter Semibold', sans-serif;
  font-size:22px;
  padding: 2rem 0 2rem 2rem;
 
}



body {
  background-color: #e9e0d6;
  --bs-body-font-size: 32px;
  --bs-body-line-height:49px;
  color: #000;
  font-weight: 500;
}

a {
  color: black;
  text-decoration: none;
  position: relative;
  display: inline-block;
}


p {
    margin-top: 0;
    margin-bottom: 3rem;
}


.copy a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px; /* direkt unter Text */
  width: 100%;
  height: 2px;
  background: black;
}
.copy a:hover {
  font-weight: 800;
}



.copy {
  margin-top:10vw;
  margin-bottom: 10vw;

}


.copy.business {
  margin-top:5vw;
}

.fullh {
  height: 100vh;
  align-content: center;
}


.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* Logo über Slider */
.hero-logo {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 490px;
}

.hero-logo-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-size: 80px;
    color: #fff;
    font-family: 'Inter Bold';
    font-weight: 800;
}

.carousel {
    position: relative;
    z-index: 100;
}

/* Navbar Styling */
.navbar {
   background-color: #e9e0d6;
   transition: 0.3s;
}

.navbar-brand {
    width: 200px;
    position: relative;
}


.nav-item {
  padding: 0 1.5rem;
}

.navbar .nav-link {
  position: relative;
  text-decoration: none;
  padding: 0 !important;
  display: inline-block; /* wichtig */
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px; /* direkt am Text */
  width: 0;
  height: 3px;
  background: black;
  transition: width 0.3s ease;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px; /* direkt am Text */
  width: 100%;
  height: 3px;
  background: black;
  transition: width 0.3s ease;
}

.navbar-scrolled .nav-link-w::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px; /* direkt am Text */
  width: 0;
  height: 3px;
  background: black;
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after {
  width: 100%;
}

.navbar .nav-link-w::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px; /* direkt am Text */
  width: 0;
  height: 3px;
  background: white;
  transition: width 0.3s ease;
}

.navbar .nav-link-w:hover::after {
  width: 100%;
}




.nav-link-w {
  color: #fff;
}


.navbar-toggler {
  border: none;
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: none;
  background-color: #e9e0d6;
}

.socialicon {
  height: 20px;
}

.trademark {
  font-size: 0.75em;
}

.main {
  background: #e9e0d6;
  z-index: 50;
}


.navbar-custom {
  background: transparent;
  transition: background 0.3s ease;
  z-index: 9999;
}

.navbar-custom .nav-link,
.navbar-custom .navbar-brand {
  color: #fff;
}

/* Zustand nach Hero */
.navbar-scrolled {
  background: #e9e0d6;
}

.navbar-scrolled .nav-link,
.navbar-scrolled .navbar-brand {
  color: #000;
}




.logo {
  transition: opacity 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}


/* Standard: weiß sichtbar */
.logo-light {
  opacity: 1;
}

.logo-dark {
  opacity: 0;
}

/* Nach Scroll wechseln */
.navbar-scrolled .logo-light {
  opacity: 0;
}

.navbar-scrolled .logo-dark {
  opacity: 1;
}

/* Standard (über Hero = weiß) */
.navbar-custom .nav-link,
.navbar-custom .navbar-brand {
  color: #fff;
  transition: color 0.3s ease;
}

/* Burger Linien weiß */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: none;
  width: 24px;
  height: 2px;
  background-color: #000;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #000;
  left: 0;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -7px;
}

.navbar-toggler-icon::after {
  top: 7px;
}



.navbar-toggler-icon-parea {
  background-image: none;
  width: 24px;
  height: 2px;
  background-color: #fff;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.navbar-toggler-icon-parea::before,
.navbar-toggler-icon-parea::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #fff;
  left: 0;
  transition: all 0.3s ease;
}

.navbar-toggler-icon-parea::before {
  top: -7px;
}

.navbar-toggler-icon-parea::after {
  top: 7px;
}





/* -------------------- */
/* NACH SCROLL */
/* -------------------- */

.navbar-scrolled {
  background: #e9e0d6;
}

.navbar-scrolled .nav-link-w,
.navbar-scrolled .navbar-brand {
  color: #000;
}

/* Burger wird dunkel */
.navbar-scrolled .navbar-toggler-icon,
.navbar-scrolled .navbar-toggler-icon::before,
.navbar-scrolled .navbar-toggler-icon::after {
  background-color: #000;
}

/* Burger wird dunkel */
.navbar-scrolled .navbar-toggler-icon-parea,
.navbar-scrolled .navbar-toggler-icon-parea::before,
.navbar-scrolled .navbar-toggler-icon-parea::after {
  background-color: #000;
}



.privacy section {
  padding:50px 0;
}

.privacy h2, .privacy h1 {
  font-family: 'Inter Bold';
}


footer {
  font-size: 12px;
}



@media (max-width: 1024px) {

  footer>.container {
    padding: 0;
  }

  .fullh {
    height: auto;
  }

  .copy {
    margin-top: 25vw;
    margin-bottom: 10vw;
  }

  .navbar-custom>.container {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

} 



/* Mobile anpassungen */

@media (max-width: 768px) {


  body {
    font-size: 22px;
    line-height: 39px;
  }

  footer {
    line-height: 25px;
    padding: 30px 0;
  }

  footer>.container {
    padding: 0 1.5rem;
  }

  .fullh {
    height: auto;
  }

  .navbar {
   background-color: transparent;
   transition: 0.3s;
  }

.main {
  background: #e9e0d6;
}

.navbar-scrolled {
  background: #e9e0d6;
}

  .navbar>.container {
    padding:0 30px;
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .navbar-brand {
    width: 150px;
    position: relative;
  }
  
  .copy {
  padding: 50px 30px;
  margin-bottom: 0vw;
  }

  .hero-logo {
    width: 300px;
  }
  .trademark {
  font-size: 0.75em;
  line-height: 1em;
  }

  .club {
    width: 100% !important;
  }

  .mpt {
    padding-bottom: 20px;
  }

  .social {
    line-height: 35px;
  }
}


