@import url("https://fonts.googleapis.com/css2?family=Karla:wght@300;400&display=swap");
* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
/* farbe: #323a45 / #848484  */
/* general effect */
body {
  font-family: "Karla", sans-serif;
}
h5,
h6 {
  color: #848484;
}
h4,
h3,
a {
  color: black;
}
h4:hover,
h3:hover,
a:hover {
  color: #848484;
}
ul li {
  list-style: none;
}
a {
  text-decoration: none;
}
.toogleBtn {
  position: absolute;
  right: 30px;
  display: none;
}
/* header */

header,
header .nav_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header {
  padding: 2.5% 10% 0;
}
header ul li {
  padding-left: 45px;
}
header h3 > a {
  font-size: 1em;
  font-weight: 900;
}

/* section general */

img {
  width: 100%;
}
img:hover {
  opacity: 0.3;
}
section {
  margin: 5% 0 8% 0;
  display: grid;
  grid-template-columns: repeat(3, 300px);
  /* grid-template-rows: repeat(3, 500px);  */
  justify-content: center;
  align-items: center;
  grid-gap: 2%;
}

.container1 {
  grid-column: 1 / 4;
  grid-row: 1/2;
}

.container2 {
  grid-column: 1/2;
  grid-row: 2/3;
}
.container3 {
  grid-column: 2/3;
  grid-row: 2/3;
}
.container4 {
  grid-column: 3/4;
  grid-row: 2/3;
}
.container5 {
  grid-column: 1/2;
  grid-row: 3/4;
}
.container6 {
  grid-column: 2/3;
  grid-row: 3/4;
}
.container7 {
  grid-column: 3/4;
  grid-row: 3/4;
}
section div div {
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section h5 {
  padding-top: 7px;
}

/* footer */
footer {
  width: 100%;
  height: 15vh;
}
footer article {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 60px;
  font-size: 0.9em;
}
footer article div h4,
h5 {
  color: black;
}
footer h4 {
  margin-bottom: 15%;
}
footer h6 {
  margin: 5% 10%;
}
footer h6 span:before {
  content: " •  ";
}
.shop h5 > span {
  font-weight: bolder;
  font-size: 14px;
}
a {
  font-size: 15px;
}
.contact h5:nth-of-type(1) {
  padding-top: 20px;
}
.newsletter h5:last-child {
  font-style: italic;
}
.newsletter h5 > a {
  font-weight: 900;
  letter-spacing: -1px;
}

/* smartphone */
@media screen and (max-width: 600px) {
  body {
    /* background-color: mediumseagreen; */
  }
  h3,
  h4,
  h5,
  h6,
  a {
    font-size: 0.9em;
    line-height: 23px;
  }
  h5 {
    font-size: 0.7em;
  }
  header {
    display: block;
  }
  header h3,
  .toogleBtn {
    padding-top: 40px;
  }
  header .nav_menu {
    display: block;
    text-align: center;
  }

  header .nav_menu li {
    align-items: center;
    display: none;
  }
  header .toogleBtn {
    display: block;
    top: 10px;
    font-size: 18px;
  }
  .nav_menu.active {
    display: block;
  }
  section {
    display: block;
    padding: 10%;
  }
  section div div {
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  section h5 {
    padding-top: 7px;
    margin-bottom: 30px;
  }
  footer article {
    display: block;
    font-size: 1em;
    padding: 0 40px;
  }
  footer article div {
    margin-bottom: 15%;
  }
  .contact h5:nth-of-type(1) {
    padding-top: 1px;
  }
  .newsletter h5 > a {
    font-weight: 900;
    font-size: 1.2em;
  }
  footer h6 {
    font-weight: 100;
    font-size: 0.8em;
  }
}
