@charset "UTF-8";
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Jost", "sans-serif";
  color: #b69365;
}

body {
  margin: 0;
  padding: 0;
  background-color: #001a14;
}

h1 {
  font-size: 40px;
  font-weight: 500;
  margin: 0;
  color: rgba(255, 255, 255, 0.2);
}

h1 span {
  font-size: 30px;
}

h2 {
  font-size: 34px;
  margin: 0;
  font-weight: 400;
}

h3 {
  font-size: 34px;
  margin: 0;
  font-weight: 400;
}

h4 {
  font-size: 24px;
  font-weight: 300;
  margin: 10px 0;
}

h5 {
  font-size: 24px;
  font-weight: 500;
  margin: 10px 0;
}

p {
  font-size: 20px;
}

@media screen and (min-width: 600px) {
  h1 {
    font-size: 65px;
  }
  h1 span {
    font-size: 40px;
  }
  h2 {
    font-size: 50px;
  }
  h4, h5 {
    font-size: 30px;
  }
}
nav {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

nav ul {
  width: 100%;
  background-color: #00291f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0.8s;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: scroll;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
}

nav ul li {
  padding: 30px 0;
}

nav ul li a {
  font-size: 20px;
  text-decoration: none;
}

#logo {
  width: 50px;
}

#menu-icon {
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

#menu-icon .bar1, #menu-icon .bar2 {
  height: 5px;
  background-color: #b69365;
  transition: 0.4s;
}

.menu-open .bar1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-open .bar2 {
  transform: rotate(45deg) translate(-5px, -6px);
}

#menu-options {
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown select {
  font-size: 18px;
  padding: 2px 4px;
  border: 1px solid #b69365;
  border-radius: 12px;
  background-color: #04231a;
  color: #b69365;
  cursor: pointer;
}

@media screen and (max-height: 500px) {
  nav ul {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 600px) {
  nav {
    padding: 10px 50px;
  }
}
@media screen and (min-width: 1310px) {
  nav {
    padding: 10px 100px;
  }
  #menu-icon {
    display: none;
  }
  nav ul {
    background-color: unset;
    overflow: unset;
    position: unset;
    flex-direction: row;
    width: 100%;
    justify-content: flex-end;
    height: auto;
  }
  nav ul li {
    padding: 0px 20px;
  }
  nav ul li a {
    font-size: 18px;
  }
  #menu-options {
    min-width: unset;
  }
  .los-gehts {
    padding: 2px 20px;
    border: 1px solid var(--text-color);
  }
}
.kontakt {
  padding: 80px 20px 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.kontakt a {
  text-decoration: none;
}

.kontakt a:hover {
  transition: 0.5s;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.kontakt-color {
  width: 100%;
  padding: 3px;
  border-radius: 20px;
  background: var(--gradient);
  background-size: 300% 300%;
  animation: animatedgradient 4s ease alternate infinite;
  margin-top: 40px;
}

.kontakt-border {
  background-color: var(--background-color);
  border-radius: 20px;
  text-align: center;
}

.kontakt h4 {
  margin-bottom: 20px;
}

.kontakt-wrap {
  border-radius: 22px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #04231a;
  border: 3px solid #00291f;
}

.kontakt-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  min-width: 30%;
  font-size: 22px;
  font-weight: 400;
  padding: 20px;
}

.kontakt form {
  background-color: #00291f;
  width: 100%;
  padding: 20px 10px 20px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

input {
  -webkit-user-select: text;
  /* Chrome, Opera, Safari */
  -moz-user-select: text;
  /* Firefox 2+ */
  -ms-user-select: text;
  /* IE 10+ */
  user-select: text;
  /* Standard syntax */
}

form input,
form textarea {
  color: #b69365;
  background: #04231a;
  width: 100%;
  min-height: 40px;
  border-radius: 20px;
  margin-bottom: 10px;
  border: none;
  padding-left: 20px;
}

form input:focus,
form textarea:focus {
  outline: none;
  box-shadow: 0px 0px 6px 0px #4d4d4d;
}

form textarea {
  padding: 20px;
}

::placeholder {
  color: #b69365;
  opacity: 1;
  transition: opacity 1s;
}

:focus::placeholder {
  opacity: 0;
}

#bttn3 {
  background-color: #b69365;
  color: #ffffff;
  padding: 8px 24px 8px 24px;
  border: none;
  border-radius: 20px;
  margin-top: 10px;
  font-size: 16px;
}

#bttn3:hover {
  background: #04231a;
}

.line {
  width: 100%;
  height: 5px;
  background-color: #00291f;
}

@media screen and (min-width: 600px) {
  .kontakt {
    padding: 60px 50px 100px 50px;
  }
}
@media screen and (min-width: 900px) {
  .kontakt-wrap {
    flex-direction: row;
    align-items: flex-start;
  }
  .kontakt-text {
    width: 35%;
  }
  .kontakt form {
    width: 65%;
  }
}
@media screen and (min-width: 1100px) {
  .kontakt {
    padding: 100px;
  }
}
header {
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  padding: 80px 20px 50px 20px;
  background-color: #031612;
  background-size: cover;
  padding-top: 100px;
  min-height: 99vh;
}
@media screen and (min-width: 600px) {
  header {
    padding: 80px 50px 50px 50px;
  }
}
@media screen and (min-width: 900px) {
  header {
    padding: 80px 100px 50px 100px;
  }
}
@media screen and (min-width: 2000px) {
  header {
    padding: 80px 300px 50px 300px;
  }
}
@media screen and (min-width: 1050px) {
  header {
    flex-direction: row;
  }
}

#header-text {
  max-width: 700px;
}

#header-text p {
  font-weight: 500;
}

header img {
  width: 100%;
  max-width: 500px;
  padding: 50px 0;
}

article {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  flex-direction: column;
  padding: 80px 20px 50px 20px;
}
@media screen and (min-width: 1024px) {
  article {
    flex-direction: row;
  }
}
@media screen and (min-width: 600px) {
  article {
    padding: 80px 50px 50px 50px;
  }
}
@media screen and (min-width: 900px) {
  article {
    padding: 80px 100px 50px 100px;
  }
}
@media screen and (min-width: 2000px) {
  article {
    padding: 80px 300px 50px 300px;
  }
}

#moeglichkeiten,
#ueber-uns {
  text-align: left;
  position: relative;
  width: 100%;
}

#moeglichkeiten img,
#ueber-uns img {
  width: 100%;
  padding: 20px;
  object-fit: contain;
  object-position: left;
  background-color: #04231a;
}

#ueber-uns img {
  padding: 0;
}

#moeglichkeiten h3,
#ueber-uns h3 {
  width: 100%;
  padding: 50px 0 0 0;
}

#funktionsweise, #herstellung, #angebot {
  width: 100%;
  min-height: 70vh;
  padding: 80px 0px 50px 20px;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}

.deko {
  display: flex;
  width: 100%;
  height: 300px;
  background-color: #00291f;
  position: absolute;
  top: 0;
  left: 0;
}

#funktionsweise h2,
#funktionsweise #magnete,
#funktionsweise #halterung,
#materialien h2, #materialien .content,
#herstellung h2, #herstellung .text-wrap,
#herstellung img,
#angebot h2, #angebot .angebot-wrap {
  position: relative;
  z-index: 2;
}

#funktionsweise #magnete,
#funktionsweise #halterung {
  margin-top: 40px;
}

#funktionsweise #magnete,
#funktionsweise #halterung {
  width: 100%;
  padding: 20px;
  min-height: 300px;
  background-color: #04231a;
}

.img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 240px;
  margin: 40px 0 20px 0;
}

.img-wrapper img {
  width: 100%;
  min-width: 240px;
  height: 240px;
  object-fit: contain;
  background-color: #031612;
}

.img-wrapper #coverimg {
  object-fit: cover;
  object-position: left;
}

#materialien {
  width: 100%;
  min-height: 70vh;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}

#materialien img {
  border: 1px solid #00291f;
}

#herstellung img {
  max-height: 300px;
  width: 100%;
  margin-top: 40px;
  object-position: center;
  object-fit: contain;
}

#herstellung .text-wrap {
  padding-right: 20px;
}

#angebot {
  padding: 80px 20px 50px 20px;
  padding: 80px 20px 50px 20px;
}
@media screen and (min-width: 600px) {
  #angebot {
    padding: 80px 50px 50px 50px;
  }
}
@media screen and (min-width: 900px) {
  #angebot {
    padding: 80px 100px 50px 100px;
  }
}
@media screen and (min-width: 2000px) {
  #angebot {
    padding: 80px 300px 50px 300px;
  }
}

#angebot .angebot {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #04231a;
  padding: 20px;
  margin: 40px 0;
}

#angebot .angebot img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

footer {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  background-color: #00291f;
}

footer a {
  text-decoration: none;
  padding: 10px;
}

#impressum, #datenschutz {
  background-color: #04231a;
  color: white;
  opacity: unset;
  transform: unset;
  transition: unset;
}

#datenschutz {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  header {
    text-align: center;
  }
}
@media screen and (min-width: 600px) {
  #funktionsweise, #herstellung {
    padding: 80px 0px 50px 50px;
  }
  #funktionsweise #magnete,
  #funktionsweise #halterung {
    padding: 20px 50px 20px 20px;
  }
  #herstellung .text-wrap {
    padding-right: 50px;
  }
  #herstellung img {
    margin: 40px 0 0 0;
  }
}
@media screen and (min-width: 900px) {
  #funktionsweise, #herstellung {
    padding: 80px 0px 50px 100px;
  }
  #funktionsweise #magnete,
  #funktionsweise #halterung {
    padding: 20px 0px 20px 20px;
  }
  #funktionsweise #magnete p,
  #funktionsweise #halterung p {
    padding: 0 100px 0 0;
  }
  .fkt-img {
    margin-right: 20px;
  }
  #image-wrap1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column nowrap;
    justify-content: flex-start;
    margin-top: 40px;
    flex-direction: row;
  }
  #herstellung .text-wrap {
    padding-right: 100px;
  }
  .angebot-wrap {
    display: flex;
    flex-direction: row;
  }
  #angebot .angebot {
    margin-right: 20px;
  }
}
@media screen and (min-width: 1024px) {
  header img {
    max-width: 450px;
  }
  #moeglichkeiten,
  #ueber-uns {
    padding-left: 0;
    align-items: flex-start;
  }
  #moeglichkeiten img,
  #ueber-uns img {
    width: 500px;
    object-fit: contain;
    position: unset;
    margin-right: 40px;
  }
  #ueber-uns img {
    padding: 0;
  }
  #moeglichkeiten h3,
  #ueber-uns h3 {
    width: 100%;
    padding: 0;
  }
  #funktionsweise, #materialien, #angebot {
    flex-direction: column;
  }
  #funktionsweise #magnete,
  #funktionsweise #halterung {
    padding: 20px 100px 20px 20px;
    flex-direction: row;
  }
  #funktionsweise #magnete p,
  #funktionsweise #halterung p {
    padding: 0;
  }
  .content {
    width: 100%;
  }
  #herstellung {
    flex-direction: column;
    margin-top: 40px;
  }
  #herstellung img {
    margin: 40px 100px 0 0;
  }
  #herstellung .content {
    display: flex;
    flex-direction: row;
  }
  #herstellung img {
    object-fit: contain;
  }
}
@media screen and (min-width: 1200px) {
  #herstellung img {
    max-height: 400px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1400px) {
  #magnete, #halterung {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  #image-wrap1 {
    margin: 0 0 0 50px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media screen and (min-width: 2000px) {
  #materialien #image-wrap1 {
    margin: 0;
  }
  #moeglichkeiten, #funktionsweise, #herstellung, #ueber-uns, #kontakt {
    padding: 100px 300px;
  }
}
header img {
  animation: slideInLeft 0.5s linear;
}
@keyframes slideInLeft {
  0% {
    transform: translateX(40em);
  }
  100% {
    transform: translateX(0px);
  }
}

/* Initialer Zustand: Artikel sind unsichtbar und leicht nach unten verschoben */
article {
  opacity: 0;
  transform: translateY(200px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Sichtbarer Zustand: Artikel sind vollständig sichtbar und in der Originalposition */
article.visible {
  opacity: 1;
  transform: translateY(0);
}

/*# sourceMappingURL=style.css.map */
