* { margin: 0; 
    padding: 0; 
    box-sizing: 
    border-box; 
}
:root{
  --bg:#131313;
  --panel:#131313df;
  --text:#f4f4f4;
  --muted:#b6b6b6;
  --header-h:64px;
}

.roboto-condensed-headlines {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

.montserrat-firstHeadline {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}


.suse-mono-text {
  font-family: "SUSE Mono", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

html{ 
    scroll-behavior:smooth; 
    background-color: var(--bg);
}

h1{
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal; 
  font-size: 40px;
  color: var(--muted);
  text-transform: uppercase;
}

h2{
font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;  
  font-size: 60px;
  color: var(--text);
  text-transform: uppercase;
}

h3{
font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;  
  font-size: 60px;
  color: var(--text);
  text-transform: uppercase;
}

h4{
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;  
  font-size: 20px;
  color: var(--text);
  
}

p, span{
  font-family: "SUSE Mono", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  color: var(--text);
  font-size: 15px;
}

.muted{
  font-family: "SUSE Mono", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  color: var(--muted);
  font-size: 15px;
  margin-top: 20px;
  margin-bottom: 50px;
}

button{
  color: var(--text);
  background-color: transparent;
  border: var(--text) solid 1px;
  border-radius: 50px;
  height: 40px;
  width: auto;
  padding: 0px 50px;
  align-items: center;
}

button:hover{
  padding: 0px 50px;
  transform: scale(1.08);
}


video{
  margin-top: 20px;
  width:100%; 
  height:100%; 
  object-fit:cover; 
  display:block; 
  border-radius: 20px;
  border: var(--text) solid 1px;
}

body{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-header{
  position:sticky; 
  top:0; 
  z-index:1200;
  background:linear-gradient(180deg, rgba(14,14,15,.85), rgba(14,14,15,.55) 60%, rgba(14,14,15,0));
  backdrop-filter: blur(6px);
}

.header-inner{ 
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  padding:14px 20px; 

}

.brand{ 
  display:inline-block; 
  font-family: "SUSE Mono", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  color: var(--text);
  font-size: 15px;
  text-decoration:none; 
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px; /* HIER */
}


.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.dropdown-toggle {
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  font-size: 25px;
  margin-left: 4px;
  padding: 0px;
}
.dropdown-toggle:hover {
  padding: 0px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;

  background: var(--panel);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 10px;

  display: flex;
  flex-direction: column;
  gap: 6px;

  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all .25s ease;

  z-index: 1300;
}
.dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown-menu a {
  border: none;
  padding: .4rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.brand img{ 
  width:100px; 
}

.nav a{
  text-decoration:none;
  margin-left: 10px;
  padding:.55rem 1rem;
  border-radius:999px;
  border:var(--text) solid 1px;
  transition:all .2s ease;
  font-family: "SUSE Mono", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  color: var(--text);
  font-size: 15px;
}
.nav a:hover {
  transform: none;
}


.menu-toggle{
  display:none;
  background:none;
  border: none;
  padding:8px;
  cursor:pointer;
}
.menu-toggle:hover,
.menu-toggle:focus,
.menu-toggle:focus-visible {
  border: none;
  outline: none;
  box-shadow: none;
  padding:8px;
}

.menu-toggle span{
  display:block;
  width:24px;
  height:2px;
  margin:5px 0;
  background:var(--text);
}

.contact-fab {
  position: fixed;
  bottom: 24px;
  right: 40px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: var(--text);
  color: var(--bg);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 1300;
  animation: fab-pulse 2.5s ease-in-out infinite;
}

.contact-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(255,255,255,0.2);
}

.contact-fab svg {
  width: 28px;
  height: 28px;
}

@keyframes fab-pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.contact-fab circle {
  stroke-dasharray: 63;
  stroke-dashoffset: 63;
  transition: stroke-dashoffset .4s ease;
}

.contact-fab:hover circle {
  stroke-dashoffset: 0;
}

body.menu-open .contact-fab {
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}




#hero{
  display: flex;
  flex-direction: column;
  height: 35vw;
  background-image: url(/01-assets/01-img/banner-hero.jpg);
  text-align: right;
  background-size: cover;
  justify-content: center;
  margin-bottom: 150px;
}
#hero div{
    margin: 0px 15%;
}

.hero-buttons button{
 margin-left: 20px;
}


#projekte{
  margin: 0px 15%;
  margin-bottom: 200px;
  color: var(--text);
}
.projekte-kategorien{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2.5vw;
  padding-top:2.5vw;
  overflow: hidden;
}

#projekte img{
  width:100%; 
  height:100%; 
  object-fit:cover; 
  display:block;
  filter:saturate(.9); 
  transition:transform .35s ease;
  border-radius: 20px;
  border: var(--text) solid 1px;
  /* filter: saturate(0); */
} 

.kat-eins{
  grid-column-start: 1;
  grid-column-end: 3;
  height: 300px;
}

.kat-zwei{
  grid-column-start: 3;
  grid-column-end: 5;
  height: 300px;
}

.kat-drei{
  grid-column-start: 1;
  grid-column-end: 2;
  height: 300px;
}
.kat-vier{
  grid-column-start: 2;
  grid-column-end: 5;
  height: 300px;
}

.projekte-kategorien a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  border: var(--text) solid 1px;
}

.projekte-kategorien img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 20px;
}

.projekte-kategorien .overlay {
  position: absolute;
  inset: 0;
  background: var(--panel);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "SUSE Mono", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  color: var(--text);
  font-size: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.projekte-kategorien a:hover .overlay {
  opacity: 1;
}

.projekte-kategorien a:hover img {
  transform: scale(1.08);
}
.projket fuenf a {
  color: var(--muted);
}




#about-me{
  margin: 0px 15%;
}
#about-me video{
margin-top: 20px;
}

#lebenslauf{
  margin: 0px 15%;
  margin-bottom: 200px;
}

.timeline{
  position:relative; 
  margin:24px 0 0; 
  padding-left:36px; 
  list-style:none;
}
.timeline::before{
  content:""; 
  position:absolute; 
  left:16px; 
  top:0; 
  bottom:0; 
  width:2px; 
  background:var(--text);
}
.timeline-item{ 
  position:relative; 
  margin:0 0 40px 0; 
}

.timeline-item::before{
  content:""; 
  position:absolute; 
  left:-1.6em; 
  top:.61em; 
  width:12px; 
  height:12px; 
  border-radius:50%;
  background:var(--bg); 
  box-shadow:0 0 0 2px var(--text);
}

.tl-title{
  margin:0 0 6px 0;
}



#bewerbungsdokumente{
  margin: 0px 15%; 
  margin-bottom: 200px;
}

.bewerbungsdokumente-box button{
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  color: var(--text);
}
.bewerbungsdokumente-box button img{
  filter: invert(1);
  padding-left: 20px;
  width: 40px;
}
.docs{
  display: grid; 
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}

.footer{
  padding:40px 0; 
  color:var(--muted);
  border-top:1px solid var(--text); 
  margin-top:40px;
} 
.footer-kontakt{
  padding:40px 15%; 
  color:var(--muted);
  border-top:1px solid var(--text); 
} 

.footer p{
  margin: 0px 15%; 
} 


/* ------------------ KONTAKT ------------------  */
.contact-hero{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(520px, 70vh, 860px);
  background-image: url(/01-assets/01-img//leben.jpg);
  background-size: cover;
  overflow: hidden;
}

.contact-photo{
  position: relative;
  background-size: cover;
  background-position: left center;
  filter: grayscale(100%) contrast(105%);
  opacity: .92;
}

.contact-content{
  position: relative;
  display: grid;
  align-items: center;
  padding:0px 20px;
  background-color: var(--bg);
}

.contact-title{
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(44px, 8vw, 96px);
  line-height: .95;
  margin: 0 0 22px 0;
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
}

.contact-list{
  list-style: none;
  margin: 24px 0 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
  max-width: 520px;
}

.contact-list li{
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 14px;
  color: var(--text);
}

.contact-list a{
  color: var(--text);
  text-decoration: none;
  padding-bottom: 10px;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
.contact-list a:hover{
  color: #fff;
  border-color: var(--muted);
}

.contact-list address{ font-style: normal; }

.contact-list .icon{
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  border: 1px solid var(--muted);
  border-radius: 999px;
  opacity: .9;
}

.contact-list .icon svg{
  width: 16px; height: 16px; fill: currentColor;
  color: var(--text);
}



/* ------------------ UNTERSEITEN ------------------  */

.hero-videografie{
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.932), rgba(0, 0, 0, 0.504)),
    url(/01-assets/01-img/videografie-BW.jpg);
    
  background-size:contain;
  background-position: center;
  padding: 200px 15%;
}

.hero-fotografie{
background-image: 
    linear-gradient(rgba(0, 0, 0, 0.643), rgba(0, 0, 0, 0.504)),
    url(/01-assets/01-img/fotografie-BW.jpg);
    
  background-size: contain;
  background-position: center;
  padding: 200px 15%;
}
.hero-grafik{
background-image: 
    linear-gradient(rgba(0, 0, 0, 0.643), rgba(0, 0, 0, 0.504)),
    url(/01-assets/01-img/illlus-BW.jpg);
    
  background-size: contain;
  background-position: center;
  padding: 200px 15%;
}
.hero-otherStuff{
background-image: 
    linear-gradient(rgba(0, 0, 0, 0.643), rgba(0, 0, 0, 0.504)),
    url(/01-assets/01-img/otherStuff-BW.jpg);
    
  background-size: contain;
  background-position: center;
  padding: 200px 15%;
}
.projekte{
  padding: 200px 15%;
}
.projekt{
  margin-bottom: 200px;
}

.projekt img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 20px;
  border:var(--text)solid 1px;
  margin-top: 20px;
}

.projekt a{
  margin-bottom: 200px;
  color: var(--muted);
  text-decoration: underline;
}

.projekt img:hover{
  transform: scale(1.01);
}

.galerie{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 50px;
}


/* ------------------ RESPONSIVEEE ------------------  */
@media (max-width: 840px){
.projekte-kategorien{
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5vw;
  padding-top:2.5vw;
  overflow: hidden;
}
.kat-eins{
  grid-column-start: 1;
  grid-column-end: 2;
  height: 300px;
}

.kat-zwei{
  grid-column-start: 1;
  grid-column-end: 2;
  height: 300px;
}

.kat-drei{
  grid-column-start: 1;
  grid-column-end: 2;
  height: 300px;
}
.kat-vier{
  grid-column-start: 1;
  grid-column-end: 2;
  height: 300px;
}
.docs{
  display: grid; 
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
h3{
  font-size: 40px;
}



body.menu-open{ 
  overflow:hidden; 
}
body.menu-open::before{
  content:""; 
  position:fixed; 
  inset:0;
  background:#000; 
  opacity:.95; 
  z-index:1000; 
  animation:fadeIn .25s ease forwards;
}
.site-header{ 
  z-index:1200; 
}
.nav{
  position:fixed; inset:0;
  display:none !important;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;         
  gap:1.4rem;
  padding:
  max(24px, calc(var(--header-h) + env(safe-area-inset-top)))
  24px
  max(32px, env(safe-area-inset-bottom));
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  min-height:100vh;
  z-index:1201;

  }
@supports (height: 100svh){
  .nav{ 
    min-height:100svh; 
}   
body.menu-open .nav{ 
  display:flex !important; 
  animation:fadeIn .3s ease forwards; 
}

.nav a{
  padding: 5px 50px;
  font-family: "SUSE Mono", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  color: var(--text);
  font-size: 4vw;
  border:var(--text) solid 1px;
  }
  .menu-toggle{ 
    display:block; 
    position:relative; 
    z-index:1202; 
  }
  
  .menu-toggle span{
    display:block; 
    width:26px; 
    height:2px; 
    margin:6px 0; 
    background: var(--text);
    transition: transform .3s ease, opacity .3s ease;
  }

  body.menu-open .menu-toggle span:nth-child(1){ 
    transform:translateY(8px) rotate(45deg); 
  }

  body.menu-open .menu-toggle span:nth-child(2){ 
    opacity:0; 
  }

  body.menu-open .menu-toggle span:nth-child(3){ 
    transform:translateY(-8px) rotate(-45deg); 
  }

  }

.contact-hero{
  grid-template-columns: 1fr;
}
.contact-photo{
display: none;
}

.galerie{
  grid-template-columns: 1fr 1fr;
}
}




/* ------------------ LIGHTBOX ------------------ */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 2000;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 20px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 50px;
}

.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-close:hover {
  opacity: 0.7;
}




@media (max-width: 540px){
  #hero{
    height: 100vw;
  }
  #hero div{
    margin: 0px 15%;
    display: flex;
    flex-direction: column;
  }
  .hero-buttons button{
    margin-bottom: 20px;
  }
  .docs{
    display: grid; 
    grid-template-columns: 1fr;
    gap: 50px;
  }
  h1{
    font-size: 20px;
  }
  h2{
    font-size: 30px;
  }
  h3{
    font-size: 20px;
  }
  h4{
    font-size: 15px;
  }

  button{
    padding: 0px 20px;
  }
  button:hover{
    padding: 0px 20px;
    transform: scale(1.08);
  }
  .bewerbungsdokumente-box button{
  margin-top: 10px;
  }

  .galerie{
  grid-template-columns: 1fr;
}
}