@import url("https://fonts.googleapis.com/css2?family=Indie+Flower&family=Irish+Grover&family=Montserrat:ital,wght@0,100;0,400;0,600;1,400&display=swap");
@font-face {
  font-family: "Circular Std";
  src: url("CircularStd-Medium.eot");
  src: url("CircularStd-Medium.eot?#iefix") format("embedded-opentype"),
    url("CircularStd-Medium.woff2") format("woff2"),
    url("CircularStd-Medium.woff") format("woff"),
    url("CircularStd-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Circular Std";
  src: url("CircularStd-Book.eot");
  src: url("CircularStd-Book.eot?#iefix") format("embedded-opentype"),
    url("CircularStd-Book.woff2") format("woff2"),
    url("CircularStd-Book.woff") format("woff"),
    url("CircularStd-Book.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Circular Std";
  src: url("CircularStd-BookItalic.eot");
  src: url("CircularStd-BookItalic.eot?#iefix") format("embedded-opentype"),
    url("CircularStd-BookItalic.woff2") format("woff2"),
    url("CircularStd-BookItalic.woff") format("woff"),
    url("CircularStd-BookItalic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Circular Std";
  src: url("CircularStd-BoldItalic.eot");
  src: url("CircularStd-BoldItalic.eot?#iefix") format("embedded-opentype"),
    url("CircularStd-BoldItalic.woff2") format("woff2"),
    url("CircularStd-BoldItalic.woff") format("woff"),
    url("CircularStd-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Circular Std";
  src: url("CircularStd-Bold.eot");
  src: url("CircularStd-Bold.eot?#iefix") format("embedded-opentype"),
    url("CircularStd-Bold.woff2") format("woff2"),
    url("CircularStd-Bold.woff") format("woff"),
    url("CircularStd-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.modal {
  font-size: 16px;
}

.modal-title {
  font-size: 2rem;
}
.video-background {
  background: #000;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -99;
}

video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  filter: brightness(70%);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: "Circular Std", sans-serif;
  width: 100vw;
}
.showcase {
  width: 100%;
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.showcase-text h1 {
  font-size: 15rem;
  margin-bottom: 3rem;
}
.showcase-text p {
  font-size: 3rem;
  margin-bottom: 4rem;
}

.contact-link a {
  width: 500px;
  padding: 1.5rem 4rem;
  border-radius: 5px;
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  background-color: #db426d;
  color: white;
  text-decoration: none;
}

.playlists {
  display: flex;
  margin-top: 5rem;
  width: 100%;
  padding: 0 10rem;
  align-items: center;
  justify-content: space-between;
}
.playlists-item {
  width: 20%;
  height: 40rem;
}

.highlights {
  display: flex;
  width: 100%;
  padding: 10rem 15rem;
  justify-content: space-between;
  background-color: #ffd9d9;
}

.highlights a {
  text-decoration: none;
  color: black;
}

.highlights a:hover {
  color: #d92356;
}

.highlights a:hover img {
  filter: brightness(60%);
  transform: scale(1.1);
  transition: all 0.6s;
}
.highlights-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.highlights-item img {
  width: 15rem;
  height: 15rem;
  object-fit: cover;
  margin-bottom: 2rem;
}

.highlights-item i {
  font-size: 5rem;
  margin-top: 2rem;
}

.contact {
  display: flex;
  width: 100%;
  height: 70rem;
}
/* .contact-image {
  width: 50%;
/* } */
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-form {
  width: 100%;
  padding: 5rem;
}

.contact-form form {
  width: 100%;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-form h2 {
  font-size: 4rem;
  margin-bottom: 2rem;
  font-weight: 100;
}

.text-input {
  width: 100%;
  display: flex;
  flex-direction: column;
}
label {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.double-input {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

input,
textarea {
  width: 100%;
  padding: 2rem 1rem;
  margin-bottom: 3rem;
  border: 1px solid #ced4da;
  color: #495057;
  border-radius: 5px;
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
}

input:focus,
textarea:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}
textarea {
  overflow: auto;
  resize: vertical;
}
button {
  padding: 1.5rem 4rem;
  margin-bottom: 3rem;
  border: none;
  border-radius: 5px;
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  background-color: #db426d;
  color: white;
  cursor: pointer;
}

button:hover {
  background-color: #d12757;
  color: white;
}

a {
  text-decoration: none;
}

.footer {
  width: 100%;
  margin-top: 20rem;
  padding: 5rem 0;
  background-color: #db426d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  color: white;
}
.kato {
  font-size: 4rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.socials {
  margin-top: 3rem;
}
.impressum {
  cursor: pointer;
}
.socials a {
  margin: 0 1rem;
}
.socials i {
  color: white;
  font-size: 2rem;
}
.follow {
  text-align: center;
  font-size: 3rem;
  padding-top: 6rem;
}

@media (max-width: 980px) {
  .cookieConsentContainer {
    bottom: 0px !important;

    left: 0px !important;

    width: 100% !important;
  }
}

@media only screen and (max-width: 600px) {
  .showcase-text h1 {
    font-size: 12rem;
    margin-top: -8rem;
    margin-bottom: 5rem;
  }
  .showcase-text p {
    font-size: 3rem;
    margin-bottom: 5rem;
  }

  .playlists {
    margin-top: 0;
    flex-direction: column;
    width: 100%;
    padding: 0 2rem;
  }
  .playlists-item {
    width: 90%;
    margin-bottom: 3rem;
  }
  .spotify {
    margin-top: 5rem;
  }

  .highlights {
    flex-direction: column;
    width: 100%;
    padding: 5rem 5rem;
    justify-content: space-between;
    background-color: #ffd9d9;
  }

  .highlights-item {
    width: 100%;
    margin-bottom: 6rem;
  }

  .footer {
    margin-top: 5rem;
  }

  .contact {
    display: flex;
    width: 100%;
    height: auto;
    padding-top: 3rem;
  }
  .contact-image {
    display: none;
  }
  .contact-form {
    width: 100%;
    padding: 1rem;
  }

  .contact-form form {
    width: 100%;
    padding: 2rem;
  }
  .double-input {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.cookieConsentContainer {
  z-index: 999;

  width: 350px;

  min-height: 20px;

  box-sizing: border-box;

  padding: 30px 30px 30px 30px;

  background: #232323;

  overflow: hidden;

  position: fixed;

  bottom: 30px;

  right: 30px;

  display: none;
}

.cookieConsentContainer .cookieTitle a {
  font-family: OpenSans, arial, "sans-serif";

  color: #ffffff;

  font-size: 22px;

  line-height: 20px;

  display: block;
}

.cookieConsentContainer .cookieDesc p {
  margin: 0;

  padding: 0;

  font-family: OpenSans, arial, "sans-serif";

  color: #ffffff;

  font-size: 13px;

  line-height: 20px;

  display: block;

  margin-top: 10px;
}
.cookieConsentContainer .cookieDesc a {
  font-family: OpenSans, arial, "sans-serif";

  color: #ffffff;

  text-decoration: underline;
}

.cookieConsentContainer .cookieButton a {
  display: inline-block;

  font-family: OpenSans, arial, "sans-serif";

  color: #ffffff;

  font-size: 14px;

  font-weight: bold;

  margin-top: 14px;

  background: #000000;

  box-sizing: border-box;

  padding: 15px 24px;

  text-align: center;

  transition: background 0.3s;
}

.cookieConsentContainer .cookieButton a:hover {
  cursor: pointer;
  color: white;
  background: #db426d;
}
