:root {
  --green: #5f931c;
  --red: #fa583c;
  --black: #383838;
  --white: #f5f7f7;
}

* {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: var(--white);
}

/*Menu*/
.logo {
  height: 30px;
  margin-left: 50px;
}

header {
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 10px 10px 3px rgba(0, 0, 0, 0.1);
}

ul {
  list-style: none;
  display: flex;
}

ul li {
  font-family: "Be Vietnam Pro", sans-serif;
  letter-spacing: -0.04em;
  font-weight: 200;
  font-size: 1.4em;
  padding: 20px;
}

ul li:hover {
  font-weight: 800;
}

a {
  color: var(--black);
  text-decoration: none;
}

.icon {
  width: 40px;
}

/*Fonts*/

p {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 1.4em;
  max-width: 500px;
  display: inline-block;
  margin: 0;
}

h1 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 800;
  font-size: 3em;
}

h2 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 800;
  font-size: 2em;
  margin-top: 15px;
  margin-bottom: 10px;
}

h3 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 1.4em;
  transform: rotate(-5deg);
  color: var(--red);
}

h4 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 1.4em;
  font-weight: 200;
  text-align: center;
}

/*Burger-Angebot*/

.angebot {
  display: flex;
  justify-content: center;
  height: 40vw;
  margin-top: 15vh;
}

.burger-image {
  width: 50vw;
  margin-left: 10vw;
}

.button {
  width: 150px;
  height: 40px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  border: 1px solid var(--black);
  font-family: "Be Vietnam Pro", sans-serif;
  position: relative;
  margin-top: 35px;
}

.link {
  text-decoration: none;
  color: black;
  font-size: 1em;
}

.text-box {
  margin-left: 15px;
  transition: 0.15s ease-in-out;
}

.button:hover .text-box {
  margin-left: 40px;
}

.arrow {
  display: none;
  position: absolute;
  margin-left: 15px;
}

/*Video*/

video {
  margin-top: 10vh;
  height: 80vh;
  max-width: 100vw;
}

.video {
  display: flex;
  justify-content: center;
  background-color: black;
}

/*Plakat*/

.plakat-box {
  height: 100vh;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.plakat-box p {
  color: var(--white);
}

.plakat-box h2 {
  color: var(--white);
}

.plakat-box .button {
  border-color: var(--white);
}

.plakat {
  border: 1px solid var(--white);
  height: 60vh;
}

.arrow2 {
  display: none;
  position: absolute;
  margin-left: 15px;
}

.button2 {
  width: 150px;
  height: 40px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  border: 1px solid var(--white);
  font-family: "Be Vietnam Pro", sans-serif;
  position: relative;
  margin-top: 35px;
}

.button2:hover .text-box {
  margin-left: 40px;
}

.link2 {
  text-decoration: none;
  color: black;
  font-size: 1em;
}

/*Konzept*/

.konzept {
  width: 60vw;
  margin: 0 auto;
  height: 35vh;
  display: flex;
  justify-content: space-around;
}

#lastkonzept {
  margin-bottom: 35vh;
}

.konzept-box {
  max-height: 300px;
  margin-top: 15vh;
  padding: 20px;
}

.konzept-text {
  margin-top: 50px;
}

.boximage {
  max-height: 8vh;
  width: auto;
}

/*Footer*/

.footer {
  border-top: 1px solid var(--black);
}

/*Media-Queries*/

@media (min-width: 601px) {
  .burger {
    display: none;
  }
}

@media (max-width: 600px) {
  .social-media {
    display: none;
  }
  .icon {
    width: 30px;
    margin-right: 20px;
  }
  header {
    height: 10vh;
  }
  .menu {
    background-color: var(--white);
    position: absolute;
    top: 0;
    display: block;
    z-index: 1;
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    padding-left: 0;
  }
  .menu li:first-child {
    margin-top: 20vh;
  }
  li {
    margin-left: 10vw;
  }
  .none {
    display: none;
  }
  .konzept {
    display: block;
    height: auto;
    width: 80vw;
    height: 80vh;
  }
  .konzept-box {
    padding: 0;
  }
  .logo {
    margin-left: 20px;
    width: 110px;
    z-index: 1000;
  }
  .logo-box {
    z-index: 1000;
  }
  .plakat {
    width: 60vw;
    height: auto;
  }
  * {
    overflow-x: hidden;
    max-width: 100vw;
  }
  p {
    font-size: 15px;
  }
  .footer {
    display: flex;
    justify-content: center;
  }
  h4 {
    font-size: 15px;
    max-width: 70vw;
  }
  h1 {
    font-size: 25px;
  }
  h3 {
    font-size: 15px;
  }
  h2 {
    font-size: 20px;
  }
  .konzept-text {
    margin-top: 1vh;
  }
  .angebot {
    height: 90vh;
    display: block;
    margin-top: 5vh;
  }
  .angebot-text {
    width: 70vw;
    margin: 0 auto;
  }
  .angebot-image {
    margin-top: 10vh;
  }
  .burger-image {
    width: 80vw;
  }
  video {
    height: 50vh;
  }
  .burger {
    z-index: 1000;
  }
  .no-scroll {
    overflow: hidden;
  }
}
