/* GLOBALE EINSTELLUNGEN */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "karrik";
  src: url(./font/karrik_fonts-main/fonts/Web/WOFF/Karrik-Regular.woff);
  src: url(./font/karrik_fonts-main/fonts/Web/WOFF2/Karrik-Regular.woff2);
  src: url(./font/karrik_fonts-main/fonts/Web/TFF/Karrik-Regular.ttf);
}

html {
  font-family: karrik, sans-serif;
  font-size: 62.5%;
  font-weight: 100;
  background-color: rgb(219, 219, 219);
}

h2 {
  font-size: 25rem;
  font-weight: 500;
}

h3 {
  font-size: 5rem;
}

p,
li,
label,
button,
input {
  font-size: 2rem;
}

a {
  color: #fff;
  text-decoration: none;
}

button {
  width: calc(100px + (200 - 100) * ((100vw - 320px) / (1900 - 320)));
  font-size: calc(15px + (35 - 15) * ((100vw - 320px) / (1900 - 320)));
  height: auto;
  background-color: #fff;
  margin: 1rem;
  padding: 1rem;
  margin-top: 3rem;
  border: none;
  border-radius: 2rem;
  transition-duration: 0.5s;
  cursor: pointer;
}

button:hover {
  color: rgb(11, 192, 35);
}

/* NAV IM HEADER */

.head_main {
  background-color: #000;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  min-height: 10vh;
  align-items: center;
  display: flex;
  width: 95%;
  margin: auto;
  flex-wrap: wrap;
  overflow: hidden;
}

.nav h1 {
  flex: 1 1 40rem;
}

.nav h1 a {
  margin: 0rem;
  padding: 0rem;
}

.nav img {
  height: calc(35px + (70 - 35) * ((100vw - 320px) / (1900 - 320)));
  margin: 1rem;
}

.nav ul {
  flex: 1 1 40rem;
  flex-wrap: nowrap;
  display: flex;
  list-style: none;
  justify-content: space-evenly;
  white-space: nowrap;
}

.nav a {
  padding: 1rem;
  font-size: calc(11px + (25 - 11) * ((100vw - 320px) / (1900 - 320)));
}

/* HERO - SECTION */

.hero {
  background: linear-gradient(
      rgba(255, 255, 255, 0.39),
      rgba(255, 255, 255, 0.39)
    ),
    url(./img/Hero_Background.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero h2 img {
  width: 80vw;
}

/* HIDE | CLUB - SECTION */

.club {
  padding-top: 10vh;
  width: 90%;
  margin: auto;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.bild {
  flex: 1 1 40rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.club_img {
  max-width: calc(280px + (400 - 280) * ((100vw - 320px) / (1900 - 320)));
  height: auto;
  align-self: center;
  border-radius: 1rem;
  margin: 3rem;
}

.text {
  max-width: calc(280px + (1200 - 300) * ((100vw - 320px) / (1900 - 320)));
  background-color: #000;
  min-height: 70vh;
  margin: 4rem 0 2rem 0;
  color: #fff;
  flex: 1 1 40rem;
  padding: 0 3rem 0 3rem;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3), 0px 20px 20px rgba(0, 0, 0, 0.1);
  border-radius: 2rem;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
}

.text img {
  align-self: center;
  width: 100%;
  margin: 2rem 0 2rem 0;
  border-radius: 2rem;
}

.text h3 {
  font-size: calc(35px + (75 - 35) * ((100vw - 320px) / (1900 - 320)));
  margin-top: 3rem;
}

.text p {
  padding: 2rem 0 0 0;
  font-size: calc(12px + (23 - 12) * ((100vw - 320px) / (1900 - 320)));
  letter-spacing: 0.1rem;
}

/* HIDE | JAM - SECTION */

#hide_jam .club {
  padding-top: 10vh;
}

#hide_jam .text h3 {
  align-self: flex-start;
}

#hide_jam .buttons {
  display: flex;
  justify-content: space-evenly;
  padding: 2rem 0rem;
}

#hide_jam a {
  align-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100px + (150 - 100) * ((100vw - 320px) / (1900 - 320)));
  font-size: calc(10px + (20 - 10) * ((100vw - 320px) / (1900 - 320)));
  height: auto;
  background-color: #fff;
  color: #000;
  margin: 0.5rem;
  padding: 1rem;
  margin-top: 3rem;
  border: none;
  border-radius: 2rem;
  transition-duration: 0.5s;
}

#hide_jam a:hover {
  color: rgb(28, 199, 28);
}
.credits p {
  text-align: center;
  font-size: calc(10px + (20 - 10) * ((100vw - 320px) / (1900 - 320)));
}
/*GALERIE - SECTION*/

#gallery .text {
  max-width: calc(300px + (1500 - 300) * ((100vw - 320px) / (1900 - 320)));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(calc(200px + (250 - 200) * ((100vw - 320px) / (1900 - 320))), 1fr)
  );
  grid-gap: 1rem;
  justify-items: center;
  margin: 0;
  padding: 0;
}

.gallery-frame {
  padding: 1.5rem;
  font-size: 1.2rem;
  text-align: center;
}

.gallery-img {
  min-height: calc(200px + (400 - 200) * ((100vw - 320px) / (1900 - 320)));
  min-width: auto;
  object-fit: cover;
}

/* KONTAKT - SECTION */

#hide_contact .contact {
  padding-top: 10vh;
  width: 90%;
  margin: auto;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hide_contact .text {
  min-height: calc(300px + (400 - 300) * ((100vw - 320px) / (1900 - 320)));
  max-width: calc(300px + (800 - 300) * ((100vw - 320px) / (1900 - 320)));
}

#hide_contact .text p,
a {
  font-size: calc(12px + (25 - 12) * ((100vw - 320px) / (1900 - 320)));
  letter-spacing: 0.1rem;
}

/* FOOTER */

footer {
  background-color: #000;
  color: #fff;
  min-height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: lighter;
  font-size: calc(12px + (25 - 12) * ((100vw - 320px) / (1900 - 320)));
}

footer h4 {
  margin: 0 2rem;
}

footer .icons {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

footer .icons img {
  width: calc(35px + (50 - 35) * ((100vw - 320px) / (1900 - 320)));
  border-radius: 0px;
}

footer a {
  margin-left: 3rem;
}

/* DATENSCHUTZ UND IMPRESSUM */
#imp_dat html {
  font-family: karrik, sans-serif;
  font-size: 62.5%;
  font-weight: 100;
  background-color: rgb(219, 219, 219);
}

#imp_dat .club {
  min-height: 90vh;
  padding: 1rem;
  display: flex;
}

#imp_dat .text {
  max-width: calc(300px + (750 - 300) * ((100vw - 320px) / (1900 - 320)));
  min-height: calc(300px + (500 - 300) * ((100vw - 320px) / (1900 - 320)));
  margin: 2rem;
  align-self: flex-start;
}

#imp_dat h2 {
  font-size: calc(20px + (70 - 20) * ((100vw - 320px) / (1900 - 320)));
  margin-top: 3rem;
}

#imp_dat h5 {
  font-size: calc(10px + (18 - 10) * ((100vw - 320px) / (1900 - 320)));
  margin-top: 2.5rem;
}

#imp_dat p {
  font-size: calc(8px + (15 - 8) * ((100vw - 320px) / (1900 - 320)));
  margin-top: 1rem;
}

#imp_dat ul {
  margin: 2rem 0rem;
  list-style-type: none;
  text-indent: 10%;
}

#imp_dat ul li {
  font-size: calc(8px + (15 - 8) * ((100vw - 320px) / (1900 - 320)));
}

/* @ - MEDIA */

@media screen and (max-width: 888px) {
  .nav h1 {
    display: flex;
    justify-content: center;
  }
  .nav ul {
    padding-bottom: 1rem;
  }
  .hero h2 img {
    transform: translateY(-40px);
  }

  #jamaram .text {
    min-width: 90vw;
  }

  #imp_dat .text {
    min-width: 90vw;
  }
}
