@font-face {
    font-family: arizona;
    src: url('../fonts/ABCDiatype-Light.woff') format('woff2');
    font-weight: normal;
    font-style: normal;
  }



html, body {
    position: relative;
    height: 100%;
    font-size: calc(15px + 0.390625vw);
}

body {
margin: 0;
padding: 0;
font-family: arizona, Arial, Helvetica, sans-serif;
color: black;
overflow-x: hidden;
}


i {

}

em {

}

a {
  text-decoration: none;
  cursor: pointer;

}

a:link, a:visited { 
  text-decoration: none;
  cursor: pointer;
}

a:link:active, a:visited:active { 
  text-decoration: none;
  cursor: pointer;
}

a:hover {

}

p {

}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin: 0;
}
    
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

button {
  all: unset;
}

button:hover {
cursor: pointer;}

svg {
  margin: 0;
}

.u_line {
  text-decoration: underline;
}

.upper-c {
  text-transform: uppercase;
}

* {box-sizing:border-box}


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


html {
-ms-overflow-style: none;
scrollbar-width: none;
}

.hide {
  display: none;
}

main {
  position: relative;
}

.disable-select {
  -webkit-user-select: none;  
  -moz-user-select: none;    
  -ms-user-select: none;      
  user-select: none;
}

.big-type {
  font-size: 4rem;
  line-height: 1;
}

.starting-big-type {
  padding: 4rem;
  font-size: 6rem;
  text-align: center;
}

.medium-type {
  font-size: 1.4rem;
}

.small-type {
  font-size: 1rem;
}


.lazy-fade {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.lazy-fade.visible {
    opacity: 1;
    transform: translateY(0);
}


/* HEADER ELEMENT*/



/* NAVI */



  .navigation {
    position: fixed;
    width: 100vw;
    z-index: 100;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  .navigation.hidden {
  transform: translateY(-100%);
  opacity: 0;
}


.logo_container {
  position: fixed;
  top: 24px; 
  right: 24px;
  background-color: rgba(189, 189, 189, 0.5); 
  border-radius: 20px;
  padding: 0.25rem 0.5rem 0.2rem 0.5rem;
  transition: background-color 0.4s ease, color 0.4s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-radius 0.3s ease;
  color: black;
  z-index: 10000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  backdrop-filter: blur(10px);
  padding: 0.25rem 0.5rem;
}



  .logo_container:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);  
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.25);
  color: black;
}

  .logo_container a{
    color: inherit;
  }


/* Landing Moment */

.landing-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: black;
  z-index: 200;
  overflow: hidden;
  pointer-events: none;
  transition: all 1.5s ease;
  opacity: 1;
}

.landing-overlay.hide-left {
  opacity: 0;
}


.landing-overlay img, 
.landing-overlay video {
  position: absolute;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.15s ease;
}






/* SHOWCASES - HOME */

.showcase-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.showcase-item {
  position: relative;
  width: 100%;
}

.showcase-title-wrap {
  position: absolute;
  width: auto;
  height: 100%;
  left: 0;
  padding: 1rem;
  transition: all 0.5s ease;
  z-index: 200;
}

.showcase-title {
  position: sticky;
  top: 40%;
  background-color: rgba(189, 189, 189, 0.5); 
  border-radius: 20px;
  padding: 0.25rem 0.5rem;
  transition: background-color 0.4s ease, color 0.4s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-radius 0.3s ease;
  width: 100%;
  -webkit-user-select: none;  
  -moz-user-select: none;    
  -ms-user-select: none;      
  user-select: none;  
  color: rgb(0, 0, 0);
  font-size: 0.8rem;
      backdrop-filter: blur(10px); 
}

.showcase-title a{
  color: inherit;
}

.showcase-title:hover {
  color: black;
  background-color: rgba(255, 255, 255, 0.9); 
  transform: translateY(-2px);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}


.showcase-item.volleBreite {
  grid-column: span 3;
}

.showcase-item.querformat {
  grid-column: span 2;
}

.showcase-item.hochformat {
  grid-column: span 1;
}

@media (max-width: 768px) {
  .showcase-wrap {
    grid-template-columns: 1fr;
  }

  .showcase-item {
    grid-column: span 2;
    width: 100%;
  }

  .showcase-item.hochformat {
    grid-column: span 3;
  }
}

.follow-bild {
  width: 100%;
  height: 100%;
}

.showcase-item img {
  margin: 0;
  padding: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  background-color: black;
}

.showcase-item video {
  margin: 0;
  padding: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}



.intervention {
  position: relative;
  width: 100vw;
  height: auto;
  margin: 0;
  padding: 1.4rem 20% 1.4rem 1.4rem;
}

.intervention p{
  margin: 0;
  display: inline;
}


.intervention a{
  color: inherit; 
}

.intervention-button {
  position: absolute;
  right: 0;
  top: 0;
  height: calc(100% - 4rem);
  border-radius: 80px;
  margin: 2rem;
  padding: 0.8rem 1.4rem;
  user-select: none;
  color: var(--btn-color, black); 
  background-color: var(--btn-bg-color, white); 
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 
    background-color 0.4s ease, 
    color 0.4s ease, 
    transform 0.3s linear,
    border-radius 0.3s ease,
    box-shadow 0.3s ease;
}


.intervention-button:hover {
  color: rgb(255, 255, 255); 
  background-color: rgba(143, 143, 143, 0.9); 
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}


.InTouch {
  position: relative;
  width: 100%;
  padding: 0;
  grid-column: span 2;
  margin: 1rem 0 1rem 0;
  height: auto;
}

.getInTouch-wrap {
  position: absolute;
  bottom: 0;

  width: 100%;
}

.getInTouch-button {
  border-radius: 3rem;
  padding: 0.8rem;
  transition: all 0.3s ease;
  position: absolute;
  width: auto;
  text-align: center;
  display: inline;
  left: 50%;
  transform: translateX(-50%);
}

.getInTouch-button:hover {
  left: calc(50% + 0.5rem);
  cursor: pointer;
  border-radius: 1rem;

}

.InTouch p{
  margin: 0;
  display: inline;
}



/* LISTED SECTION */

.sections-sorting {
  padding: 1.4rem;
}


.projects-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0rem;
  height: auto;
  width: 100%;
  position: relative;
  padding: 1.4rem;
  z-index: 300000;
  transition: all 0.3s ease;
}

.projects-list a {
  text-decoration: none;
  color: inherit;
}

.projects-list a:hover {
  color: grey;
}

.single-project {
  padding: 0.2rem;
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 1);
  transition: all 0.3s ease;

}

.single-project.highlight {
    background-color: rgb(0, 0, 0);
    color: white;
    border-bottom: 1px solid rgb(255, 255, 255);

}


.listed-img {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.99);
  z-index: 300;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.32s ease , transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.listed-img img, .listed-img video {
  height: 50vh; 
  width: auto;  
  object-fit: contain; 
  pointer-events: none;
  border-radius: 8px;
}


.project-titel {
  display: inline-block;
  width: auto;
}

.project-titel:hover ~ .listed-img {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.03);

}

.project-tags {
font-size: 0.8rem;
}










/* ABOUT SECTION */

.about {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0px;
  height: auto;
  width: 100%;
  position: relative;
  padding-bottom: 2rem;
}

.standorte {
  grid-column: span 1;
  padding-left: 1.4rem;
}

.aboutText {
  grid-column: span 2;
  padding-left: 1.4rem;
  text-align: justify;
  padding-right: 1.4rem;
  text-justify: inter-word;
}





/* Client SECTION */

.clients {
  padding: 1.4rem;
}

.clients ul {
  padding-top: 1.4rem;
}

.clients ul li {
  padding-top: 0.7rem;
  list-style-type: none;
  margin-left: 2rem;
}


.clients ul li:before { content: '●'; margin-left: -2rem; margin-right: 1.2rem;} 


.filter-btn {
  margin-right: 1rem;
}


/* Project Page */

.project-info {
  height: auto;
  width: 100%;
  position: relative;
  padding: 1.5rem;
  text-align: center;
}

.showcase2-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}


.showcase2-title-wrap {
  position: absolute;
  width: auto;
  height: 100%;
  left: 1rem;
  padding: 0;
  transition: all 0.5s ease;
  z-index: 200;
}

.showcase2-title {
  position: sticky;
  top: 1rem;
  background-color: rgba(0, 0, 0, 0.5); 
  border-radius: 20px;
  padding: 0.5rem;
  transition: all 0.5s ease;
  width: 100%;
  -webkit-user-select: none;  
  -moz-user-select: none;    
  -ms-user-select: none;      
  user-select: none;  
}

.showcase2-title a{
  color: inherit;
}

.showcase2-title:hover {
  color: black;
  background-color: rgba(255, 0, 0, 1); 
  border-radius: 10px;
  transform: translateX(1.5rem);
  cursor: pointer;
}




/* FOOTER SECTION */




/* Media Querys */


@media screen and (max-width: 999px) {

}


@media screen and (max-width: 500px) {

}