@import url('clash-display.css');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
  font-family: 'ClashDisplay-Variable';
  font-family: 'ClashDisplay-Extralight';
  font-family: 'ClashDisplay-Light';
  font-family: 'ClashDisplay-Regular';
  font-family: 'ClashDisplay-Medium';
  font-family: 'ClashDisplay-Semibold';
  font-family: 'ClashDisplay-Bold';
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 100px;
  z-index: 3;
  transition: 0.5s ease-in-out;
}
header.sticky {
  padding: 5px 100px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
header .logo {
  position: relative;
  color: #150098;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 2em;
  letter-spacing: -10px;
  transition: 0.6s ease-in-out;
}
header.sticky .logo {
  color: #150098;
}
header ul {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
header ul li {
  position: relative;
  list-style: none;
}
header ul li a {
  position: relative;
  text-decoration: none;
  margin: 0px 15px;
  color: #150098;
  letter-spacing: 2px;
  font-weight: 400;
}
header.sticky ul li a {
  color: #150098;
  font-weight: 400;
}

img {
  max-width: 100%;
}

.banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("img/background.avif");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner .content {
  position: relative;
  text-align: center;
  width: 100%;
}

.banner h1 {
  color: #150098;
  font-size: 75px;
  text-align: center;
  line-height: 1em;
  padding-bottom: 30px;
}
.banner h1 span {
  color: #150098;
  font-weight: 400;
}
.about {
  background: #fff;
  padding: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about .content {
  position: relative;
  text-align: center;
  width: 100%;
}

.about p {
  color: #150098;
}

.box-800 {
  max-width: 800px;
  margin: 0 auto;
}
.box-1200 {
  max-width: 1200px;
  margin: 0 auto;
}
h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #150098;
}
p {
  position: relative;
  font-size: 15px;
  font-weight: 300;
  /*! padding-bottom: 20px; */
  letter-spacing: 1px;
  padding: 0 0 20px 0;
}
.btn {
  position: relative;
  display: inline-block;
  padding: 10px 30px;
  border:1px solid #150098;
  text-decoration: none;
  color: #150098;
  border-radius: 5px;
}

.btn:hover {
  background-color: #150098;
  color: #ffffff;
}
.angebote {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 30px;
  max-width: 100%;
  margin-top: 30px;
}
.angebote .angebote-box {
  width: 300px;
  height: 250px;
  margin: 0 auto;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.angebote .angebote-box h2 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 400;
  padding-top: 20px;
  text-transform: uppercase;
}
.galerie {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 20px;
  max-width: 100%;
  margin-top: 40px;
}
.galerie .bilder {
  position: relative;
  width: 350px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.toggle {
  display: none;
}

footer {
  background-color: #150098;
  height: auto;
  width: 100vw;
  padding-top: 40px;
  border: none;
  color: #fff;
  margin-top: 50px;
}

.kontakt {
  margin-left: 100px;
}
.kontakt h2{
  color: #fff;
}

@media (max-width: 992px) {
  .toggle {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  .toggle:before {
    content: "";
    position: absolute;
    top: 4px;
    width: 100%;
    height: 3px;
    background: #150098;
    z-index: 1;
    box-shadow: 0 10px 0 #150098;
    transition: 0.5s ease;
  }
  .toggle:after {
    content: "";
    position: absolute;
    bottom: 4px;
    width: 100%;
    height: 3px;
    background: #150098;
    z-index: 1;
    transition: 0.5s ease;
  }

  header,
  header.sticky {
    padding: 5px 50px;
    background: #fff;
  }
  header ul {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100vh;
    text-align: center;
    overflow: auto;
    background: #fff;
    visibility: hidden;
    opacity: 0;
  }
  header.active ul {
    visibility: visible;
    opacity: 1;
    display: block;
    padding-top: 20px;
  }
  header.active ul li a {
    display: inline-block;
    margin: 10px 0;
    font-size: 20px;
    font-weight: 500;
  }
  header .logo,
  header ul li a {
    color: #150098;
  }
  .banner {
    background-position: center;
  }
  .banner h1 {
    font-size: 40px;
    padding: 50px 20px;
  }

  .about
  {
    padding: 30px 10px;
    padding-top: 100px;
  }

  h2{
    font-size: 30px;
  }

  .galerie .bilder {
    width: 300px;
  }
  .kontakt {
    margin-left: 20px;
  }
}
