html,
body {
  margin: 0px;
  padding: 0px;
}

body {
  min-height: 120px;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}

* {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

::-webkit-scrollbar {
  display: none;
}

header {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100vw;
  z-index: 2;
  height: 60px;
  mix-blend-mode: screen;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bricolage Grotesque";
  display: block;
  margin-block-start: 0px;
  margin-block-end: 0px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
  text-wrap-style: balance;
}

h1 {
  font-size: 2em;
  text-transform: capitalize;
  color: black;
  letter-spacing: -1px;
  line-height: 0.9;
}

h6 {
  font-size: 0.69em;
  text-transform: capitalize;
  color: #ffffff;
  letter-spacing: 1px;
  font-weight: 300;
  mix-blend-mode: exclusion;
}

h1 span {
  color: blue;
}

p {
  font-family: "Bricolage Grotesque";
  color: black;
  letter-spacing: 0.5px;
  display: block;
  margin-block-start: 0px;
  margin-block-end: 0px;
}

a {
  font-family: "Bricolage Grotesque";
  text-decoration: none;
}

a.active {
  text-decoration: line-through;
}

a.active:hover {
  cursor: not-allowed;
}

a.hoverlink:hover {
  text-decoration: underline;
}

a.iconlink svg {
  width: 100%;
  height: 100%;
}

a.iconlink svg path {
  fill: black;
  transition: fill 0.3s ease;
}

a.iconlink {
  display: inline-block;
  height: 60px;
  width: 60px;
  background-color: white;
  padding: 2px;
  transition: background-color 0.3s ease;
}

a.iconlink:hover {
  background-color: black;
}

a.iconlink:hover svg path {
  fill: white;
}

a.buttonlink:hover {
  background-color: black;
  color: white;
}

ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 0px;
  margin-block-end: 0px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
}

ul li {
  list-style: none;
}

nav.big {
  height: 100%;
}

nav.mini {
  padding-left: 1px;
}

nav.big ul {
  display: flex;
  flex-direction: row;
  height: 100%;
  align-items: center;
}

nav.mini ul {
  display: flex;
  flex-direction: column;
  padding: 2px;
}

nav.big ul li {
  align-items: center;
  max-width: 33.33333%;
  width: 100%;
  display: flex;
  height: 100%;
}

nav.big ul li a {
  text-transform: uppercase;
  font-size: 1.85rem;
  color: black;
  display: inline-block;
  width: 100%;
  height: 100%;
  text-align: center;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  transition: all 0.3s ease;
}

nav.big ul li a.active:hover {
  background-color: white;
  color: black;
}

nav.big ul li a:hover {
  background-color: black;
  color: white;
}

nav.mini ul li a {
  text-transform: uppercase;
  font-size: 0.75rem;
  color: black;
}

/* 3 TEILER TOP OVERLAY 

.third-overlay{
  position: fixed;
  display: flex;
  flex-direction: row;
  z-index: 2;
  width: 100vw;
  top: 0px;
  height: 100vh;
  pointer-events: none;
  mix-blend-mode: difference;
}

.third-overlay .third{
  width: 33.3333%;
}

.third-overlay .third:nth-child(1){
  background-color: rgba(34, 0, 255, 0.2);
}
.third-overlay .third:nth-child(2){
  background-color: rgba(255, 0, 0, 0.2);
}
.third-overlay .third:nth-child(3){
  background-color: rgba(0, 255, 128, 0.2);
}

*/

/* SVG MAURICE SCHIRM PORTFOLIO OVERLAY */
.overlay {
  position: fixed;
  width: 100vw;
  max-height: 100vh;
  margin-top: 72px;
  z-index: 1;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  mix-blend-mode: difference;
  justify-content: center;
}

.overlay-container {
  display: flex;
  flex-direction: column;
}

/*BLOG ABOUT CONTACT MENU */
.schnipsel {
  position: absolute;
  right: 0;
  top: 60;
  /* alternativ: 
    bottom: 0;
    */
  animation: randommovereverse 45s infinite;
  animation-play-state: running;
  background-color: white;
  mix-blend-mode: difference;
  width: 60px;
  height: 60px;
  transition: background-color 0.3s ease;
}

.schnipsel:hover {
  background-color: black;
  animation-play-state: paused;
}

.schnipsel:hover nav.mini ul li a {
  color: white;
}

/* HOME BUTTON UNTEN LINKS */
.home-schnipsel {
  position: absolute;
  left: 0;
  top: 60;
  animation: randommove 15s infinite;
  /* alternativ: 
    bottom: 0;
  */
  background-color: white;
  mix-blend-mode: difference;
  width: 60px;
  height: 60px;
}

@keyframes randommove {
  0%,
  100% {
    top: 100vh;
  }
  50% {
    top: 0px;
  }
}

@keyframes randommovereverse {
  0%,
  100% {
    top: 0px;
  }
  50% {
    top: 100vh;
  }
}

.menu {
  width: 100%;
  height: 100%;
  background-color: white;
}

/* 3 TEILER MIT SCROLL AUF HOME*/
.gallery-item {
  flex-direction: column;
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
}

.gallery-content {
  width: 100%;
  display: flex;
  height: 100vh;
  position: fixed;
  top: 0;
}

.gallery-content .gallery-third {
  max-width: 33.333333%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: fixed;
  max-height: 100vh;
  overflow-y: scroll;
}

.gallery-content .gallery-third#left {
  left: 0%;
}

.gallery-content .gallery-third#center {
  left: 33.333333%;
}

.gallery-content .gallery-third#right {
  left: 66.666666%;
}

.gallery-content .gallery-third img {
  width: 100%;
}

/* TEXT */

.black {
  color: #000 !important;
}
.white {
  color: #fff !important;
}
.headline {
  padding: 25px 2px 5px 2px;
}

.small-headline {
  padding: 25px 2px 5px 2px;
}

.headline,
.small-headline {
  display: flex;
  align-content: flex-start;
  padding: 25px 5px;
}

.small-headline {
  border: 1px solid white;
  border-radius: 50vw;
  width: max-content;
  height: auto;
  padding: 5px 15px;
  mix-blend-mode: difference;
  position: sticky;
  top: 80px;
  margin-left: 3px;
  margin-top: 60px;
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.small-headline h1 {
  font-weight: 300;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  color: white;
  line-height: 1;
}
.headline h4 {
  font-size: 4.75rem;
}
.small-headline::before {
  content: url(./assets/icons/arrow-down-right-svgrepo-com.svg);
  width: 22px;
  height: 22px;
}

.small-headline::before {
  left: 0%;
  bottom: 0%;
}

.headline h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fff;
}

.text,
.headline {
  mix-blend-mode: difference;
}

.text p {
  max-width: 875px;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 17px;
  color: #fff;
}
figcaption {
  display: flex;
  justify-content: center;
  color: black;
  font-family: "Bricolage Grotesque";
  text-transform: uppercase;
  font-size: 0.75rem;
}

figcaption::before {
  content: url(./assets/icons/arrow-down-right-svgrepo-com_black.svg);
}

.text p a {
  color: rgba(227, 227, 227, 0.73);
  text-decoration: underline;
  transition: all 0.3s ease;
}

h4 a {
  color: rgba(227, 227, 227, 0.73);
  text-decoration: underline;
  transition: all 0.3s ease;
}

h4 a:hover {
  background-color: black;
  color: white;
}

footer-navigation ul li a:hover,
.text p a:hover {
  color: rgba(79, 79, 79, 0.46);
}

/* SITES */
.site-content {
  padding-top: 150px;
  padding-left: 5px;
  padding-right: 5px;
}

.site-content#sound {
  background-color: #343434;
}

.site-content#gfx {
  background-color: transparent;
}

.site-content#curation {
  background: linear-gradient(-45deg, #dadada, #1c1c1c, #bcbcbc, #cccccc);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

.site-content#curation footer {
  background-color: transparent;
  mix-blend-mode: difference;
}

.site-content#about {
  background: linear-gradient(-45deg, #d6d4d4, #000000, #cecece, #9d9d9d);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

.site-content#contact {
  background: linear-gradient(-45deg, #bcbcbc, #9d9d9d, #d8d8d8, #e3e3e3);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

.site-content#blog {
  background: linear-gradient(-45deg, #d6d4d4, #000000, #cecece, #9d9d9d);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* GFX SITE */

.gfx-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 5px;
}

.gfx-gallery-item {
  height: 100%;
  width: 100%;
}
.gfx-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LINKS */
.music-list {
  width: max-content;
  display: grid;
  gap: 5px;
  padding: 5px;
}

.images {
  display: flex;
  flex-wrap: wrap;
  gap: 2px; /* Space between images */
  padding: 10px 2px;
}

.link-wrapper {
  padding: 10px 2px; /* Add space to the edges */
  box-sizing: border-box;
}

.soundcloud-container-list {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.soundcloud-container-list iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.soundcloud-container {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.soundcloud-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

figure {
  display: block;
  margin-block-start: 0px;
  margin-block-end: 0px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
  width: 100%;
}
figure img {
  width: 100% !important;
}

.images img {
  width: 501px;
  height: auto;
  max-width: 100%;
  flex: 1 1 200px;
  object-fit: cover;
}

footer {
  position: relative;
  background: transparent;
  color: #000;
}

.footer-title {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 30px;

  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 200;
  font-size: 12px;
}
.footer-content {
  padding: 5px;
}
.footer-navigation ul {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.dsgvo-navigation ul {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-end;
}
.dsgvo-navigation ul li a,
.footer-navigation ul li a,
.footer-title ul li a {
  color: #000;
  text-decoration: underline;
  max-width: 875px;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 100;
  font-size: 12px;
}

.dsgvo-navigation ul li a:hover,
.footer-navigation ul li a:hover,
.footer-title ul li a:hover {
  color: rgba(0, 0, 0, 0.26);
  transition: 0.3s all ease;
  text-decoration: underline;
}
  body {
  overflow-x: hidden;
  }


@media only screen and (min-width: 1460px) {
  .images img {
    width: 560px;
  }
}
@media only screen and (max-width: 780px) {
  .headline h4 {
    font-size: 2rem;
  }
  .images {
    gap: 3px;
    padding: 25px 3px;
  }

  .images img {
    width: 100%;
  }

  nav.big ul li {
    align-items: center;
    max-width: 33.3333%;
    width: 100%;
    display: flex;
    height: 100%;
  }

  nav.big ul li a {
    text-transform: uppercase;
    font-size: 1.85rem;
    color: black;
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: center;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    transition: all 0.3s ease;
  }

  a.iconlink {
    display: inline-block;
    height: 100px;
    width: 100px;
    background-color: white;
    padding: 2px;
    transition: background-color 0.3s ease;
  }

  /* HOME BUTTON +  SCHNIPSEL */
  .home-schnipsel {
    width: 100px;
    height: 100px;
  }

  nav.mini ul li a {
    font-size: 1.3rem;
  }
  .schnipsel {
    width: 100px;
    height: 100px;
  }
  .overlay {
    margin-top: 37vh;
  }

  nav.mini ul li a {
    font-size: 20px;
    line-height: 32px;
  }

  nav.big ul li a {
    font-size: 1.25rem;
  }

  .dsgvo-navigation ul li a,
  .footer-navigation ul li a,
  .footer-title ul li a {
    font-size: 15px;
  }

  footer {
    position: relative;
    background: transparent;
    color: #000;
    padding: 15px 5px;
  }

}