@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Bold.woff2") format("woff2");

}

@font-face {
    font-family: "OpenSans";
    src: url("../fonts/OpenSans-Medium.woff2") format("woff2");

}

body {
    font-family: "OpenSans", sans-serif;
    background-color: #111;
    color: #FFF;
    margin: 0;
}

h1,
h2,
h3,
h4,
a.btn,
button.btn,
art-card.btn,
nav a{
    font-family: "Poppins", sans-serif;
}

.grid-2,
.grid-3,
.grid-4,
.grid-6 {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-gap: 20px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

.col-2 {
    grid-column: span 2;
}

.col-3 {
    grid-column: span 3;
}

.col-4 {
    grid-column: span 4;
}

.col-all {
    grid-column: 1/-1;
}

.row-2 {
    grid-row: span 2;
}

img {
    max-width: 100%;
}


.tablet,
.desktop {
    display: none;
}

h1 {
    text-transform: uppercase;
    font-size: 29px;
    line-height: 39px;
}

h1 span {
    color: #ffb400;
}

h3 span {
    color: #ffb400;
}

p {
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 25px
}

h2{
    text-transform: uppercase;
    font-size: 21px;
    margin:30px 0;
}

a.btn, button.btn {
    color: white;
    background-color: transparent;
    text-decoration: none;
    text-transform: uppercase;
    
    border:1px solid #ffb400;
    border-radius: 35px;
    
    display: inline-block;
    padding:16px 35px;
    padding-right: 70px;
    font-size:15px;
    
    position: relative;
    
    overflow: hidden;
}

a.btn span, button.btn span{
    z-index: 2;
    position: relative;
   
}

a.btn::before, button.bttn::before{
    content:"";
    
    height:57px;
    width:57px;
    
    background-color: #ffb400;   
    background-image: url(../images/icons/arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    
    border-radius: 50%;
    
    position: absolute;
    
    top:-1px;
    right:-1px;
    
    z-index: 1;
}

a.download::before{
    background-image: url(../images/icons/download.svg);
    background-size: 50%;
}

/* 
Pseudoelement:
        content:"";
        position:absolute;

Verknüpfte Element muss:
        position:relative;
*/


a.btn::after, button.btn::after{
    content:" ";  
    
    
    height: 57px;
    width:100%;
    background-color: #ffb400;
    border: 1px solid #ffb400;
    
    position: absolute;
    right: -101%;
    top:-1px;
    
    transition: right 0.5s;
}

a.btn:hover::after, button.btn:hover::after{
    right:-1px;
}

header{
    display: grid;
    align-items: center;
    padding:0 25px;
    height: 100px;
    background-color: #252525;
    position: sticky;
    top:0px;
    z-index: 9999;
    transition: all 0.7s;
}



header.index{
    height:100vh;
    background-color: transparent;
    position: static;
}

/* nav */

nav{
    position: fixed;
    top:0;
    width:100%;
    z-index: 99999;
}

.nav-icon {
  max-width: 25px;
  max-height: 25px;
  width: auto;
  height: auto;
}

nav div.mobile img.close{ /* 1 + 1 + 10 + 1 + 10  = 23 */
    display: none;
}

nav div.menu-controls{
    display: grid;
    justify-content: end;
}

nav div.mobile img{
    display:block;
    margin:25px;
    background-color: #252525;
    padding:10px 10px;
    height: 30px;
    border-radius: 3px;
    position: relative;
    z-index: 99999;
    min-width: 25px;
    min-height: 25px;
    max-width: 25px;
    max-height: 25px;
}



nav ul{
    margin: 0;
    
    list-style-type: none;
    
    background-color: #252525;
    
    height:100vh;
    padding: 60px 20px;
    box-sizing: border-box;
    /* height INCLUSIVE padding */
    
    position: absolute;
    width:100%;
    
    top:0;
    left:-100%;
    /* schiebt nav ul nach links aus dem viewport */
    transition: left 0.5s;
}

nav.sichtbar ul{
    left:0%;
}

nav.sichtbar div img.open{
    display:none;
}

nav.sichtbar div img.close{
    display:inline-block;
}

nav ul li a{
   display: grid;
   grid-template-columns: 20px 1fr;
    align-items: center;
    grid-gap: 20px;
    padding:15px 0px;
    
    border-bottom: 1px solid #333;
    
    font-size: 18px;
    text-transform: uppercase;
    
    color:white;
    text-decoration: none;
}

nav li.last a{
    border-bottom: 0px solid #333;
}

nav ul li.current a{
    color:#ffb400;
}

nav ul li.current a svg path{
        fill:#ffb400;
    }

nav div.mobile img{
    cursor: pointer;
}


    nav ul li a img.icon {
  background-color: #252525;
  padding: 15px;
  height: 25px;
  width: 25px;
  border-radius: 12px;
  object-fit: contain;
  box-sizing: content-box;
  display: block;
  transition: background-color 0.01s ease;
}

/* HOVER-EFFEKT */
nav ul li a:hover img.icon {
  background-color: #ffb400;
}

/* about */

#infos img.smartphone{
        border-radius: 50%;
        width:222px;
        border:4px solid #252525;
        margin: 0 auto;
    }

.grid-2{
    grid-template-columns: 1fr;
}
#infos, #skills, #ausbildung, #projekte, #gallery{
    padding:0 25px;
}

#infos h2{
    margin-bottom: 0;
}

#infos ul{
    list-style-type: none;
    padding:0;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-gap:25px;
    margin-top: 5px;
    font-size: 14px;
}

#infos ul li:last-child{
    margin-top: 15px;
}

#infos ul li span{
    display: block;
    color:#BBB;
}

#infos a.btn span,
#infos button.btn span{
     color: white;
}

hr.trenner{
    height: 1px;
    border:none;
    background-color: #333;
    width:40%;
    margin: 80px auto 20px auto;
}

.grid-4 {
  grid-template-columns: 1fr 1fr; 
grid-gap:80px;
}


.kenntnisse-list {
  list-style-type: disc !important;   
  padding-left: 20px !important;        
  margin-top: 30px !important;
  color: #ddd;               
  font-size: 16px;           
  line-height: 1.6;          
}

.kenntnisse-list li {
  margin-bottom: 10px;       /* Abstand zwischen den Punkten */
}


.portfolio-btn .btn {
    margin-top: 50px;
}


#skills div.outer{
    position: relative;
    text-align: center;
}

#skills span{
    position: absolute;
    display: grid;
    justify-content: center;
    align-items: center;
    width:100%;
    height: 100%;
    top:0;  
    font-size: 20px;
}

#skills p{
    position: absolute;
    width:100%;
    font-size: 16px;
    text-transform: uppercas e;
}

.absperrband {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: rotate(-8deg);
  z-index: 1;
}

#skills img{
    display: block;
    width:100%;
}

#skills .outer{
    max-width: 110px;
    margin: 0 auto;
}

#ausbildung div.outer{
    border-left: 1px solid #333;
    padding-left:40px;
    position: relative;
    margin:0 22px;
}

#ausbildung div.outer::before{
    content:"";
    
    height:40px;
    width:40px;
    
    background-color: #ffb400;   
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    border-radius: 50%;
    
    position: absolute;
    
    top:0px;
    left:-20px;
    
    z-index: 1;
}



#oops{
    text-align: center;
    margin-top: 100px;
}


div.beruf::before{
    background-image: url(../images/icons/business_center.svg); 
}

div.schule::before{
    background-image: url(../images/icons/school.svg); 
}

#ausbildung span{
    background-color:#252525;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 35px;
    font-size: 12px;
}

#ausbildung p{
    margin-bottom: 0px;
}

#ausbildung .grid-2{
    grid-gap: 40px;
}

#ausbildung{
    margin-bottom: 50px;
}

h3{
    text-transform: uppercase;
    margin-bottom: 0;
}


#projekte figure{
    margin: 1em 0;
    position: relative;
    overflow: hidden;
}

#projekte figure img{
    width: 100%;
    border-radius: 5px;
}


/* Contact */

.contact-form {
      background-color: #111;
      padding: 30px;
    padding-left: 150px;
      border-radius: 12px;
      max-width: 500px;
      width: 100%;
    }

    .contact-form h2 {
      margin-bottom: 20px;
      font-size: 24px;
      font-weight: 600;
    }

    .contact-form label {
      display: block;
      margin-bottom: 8px;
      font-size: 14px;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 20px;
      background-color: #2a2a2a;
      border: 1px solid #252525;
      border-radius: 25px;
      font-size: 14px;
        color: white;
    }

    .contact-form textarea {
      resize: vertical;
      min-height: 100px;
    }

#social{
    
    max-height: 24px;
    padding-right: 5px;
        
}



/* SLIDER NEU */

/* Container fürs Ganze */
.slider-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
  padding: 20px;
}

/* Der eigentliche Slider */
.slider {
  display: flex;
  transition: transform 0.5s ease;
}

/* Einzelner Slide */
.slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

/* Inhalt im Slide */
.slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  text-align: center;
}

.slide-content img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 10px;
  margin: 0;
}

.slide-text {
  max-width: 600px;
}

/* Pfeile */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #ffb400;
  font-size: 50px;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
}

.arrow.left {
  left: 30px;
}

.arrow.right {
  right: 30px;
}

/* Ab 768px aufwärts – für Tablet und Desktop */
@media screen and (min-width: 768px) {
  .slide-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
    
 .nav-icon {
    max-width: 25px;
    max-height: 25px;
  }

  .slide-content img {
    flex: 0 0 60%;
    max-width: 500px;
  }

  .slide-text {
    flex: 0 0 40%;
    max-width: 100%;
  }

  .arrow.left {
    left: 100px;  /* Pfeile weiter links */
  }

  .arrow.right {
    right: 100px; /* Pfeile weiter rechts */
  }

  /* Nur bei großen Bildschirmen (ab 768px) margin-left anwenden */
  .slide-content img {
    margin-left: 180px; /* Hier dein margin-left nur für Desktop/Tablet */
  }
}

/* Ab 480px aufwärts und bis 767px für Tablets und kleine Geräte */
@media screen and (min-width: 480px) and (max-width: 767px) {
  .slide-content {
    flex-direction: column;  /* Vertikales Layout auf Tablets */
  }

  .slide-content img {
    width: 90%;
    max-width: 500px;  /* Maximalbreite der Bilder auf Tablets */
    margin-left: 0;  /* Kein margin-left auf Tablets */
  }

  .arrow.left, .arrow.right {
    font-size: 40px;  /* Etwas kleinere Pfeile auf Tablets */
  }

  .arrow.left {
    left: 20px;  /* Pfeil nach links verschieben */
  }

  .arrow.right {
    right: 20px;  /* Pfeil nach rechts verschieben */
  }
}

/* Für mobile Geräte unter 480px */
@media screen and (max-width: 479px) {
  .slide-content {
    flex-direction: column;  /* Spalten-Layout auf kleinen Geräten */
  }

  .slide-content img {
    width: 90%;
    max-width: 400px;  /* Maximalbreite der Bilder auf kleinen Geräten */
    margin-left: 0;  /* Kein margin-left auf kleinen Geräten */
  }

  .arrow.left, .arrow.right {
    font-size: 30px;  /* Noch kleinere Pfeile auf mobilen Geräten */
  }

  .arrow.left {
    left: 10px;  /* Pfeil nach links verschieben */
  }

  .arrow.right {
    right: 10px;  /* Pfeil nach rechts verschieben */
  }
}

.gallery {
    padding: 25px;
}

.agb {
    padding: 25px;
}

.impressum{
    padding: 25px;
}

.art-card .btn {
  display: inline-block;
margin-bottom: 30px;
  text-decoration: none;
  background-image: none !important;
  background: #ffb400;
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.3s;
}

.art-card .btn::before,
.art-card .btn::after {
    content: none !important;
    background: none !important;
}




/* ########################

      TABLET

########################## */

@media(min-width:576px){
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    header .tablet{
        display: inline-block;
    }
    
    header{
        text-align: center;
    }
    
    header img.tablet{
        border-radius: 50%;
        width:262px;
        border:4px solid #252525 
    }
    
      
    header .grid-1-2{
        max-width: 540px;
        margin: 0 auto;
    }
    
  
    nav ul li a{
        font-size: 26px;
        grid-template-columns: 30px 1fr;
    }
    
    header{
        height:200px;
        background-color: transparent;
        position: static;
        
    }
    
    header h1{
        font-size: 56px;
    }
    
    
    header.index h1{
        font-size: 38px;
        line-height: 48px;
    }
    
    .smartphone{
        display: none;
    }
    
    #infos ul li span{
        display: inline;
    }
    
    .grid-4{
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap:80px 40px;
    }
    
    #skills div.outer{
        max-width: 150px;
    }
    
    #skills, #ausbildung, #infos {
        max-width: 650px;
        margin: 0 auto;
    }
    
    #skills h2, #ausbildung h2, #projekte h2{
         text-align: center;
    }
    
    
    /* Überschrift Effekt */
    header:not(.index) h1{
        position: relative;
        z-index: 3;
    }
    
    
    header:not(.index) h1::before{
        content: "Resume";
        
        position: absolute;
        color:#252525;
        font-size: 110px;
        z-index: -1;
        left: 0;
        width: 100%;
        text-align: center;
    }
    
    h1#portfolio::before{
        content: "Works";
        
        position: absolute;
        color:#252525;
        font-size: 110px;
        z-index: -1;
        left: 0;
        width: 100%;
        text-align: center;
    }
    
    h1#contact::before{
        content: "contact";
        
        position: absolute;
        color:#252525;
        font-size: 110px;
        z-index: -1;
        left: 0;
        width: 100%;
        text-align: center;
    }
    
    h1#shop::before{
        content: "Boutique";
        
        position: absolute;
        color:#252525;
        font-size: 110px;
        z-index: -1;
        left: 0;
        width: 100%;
        text-align: center;
    }
    
    h1#impressum::before{
        content: "Imprint";
        
        position: absolute;
        color:#252525;
        font-size: 110px;
        z-index: -1;
        left: 0;
        width: 100%;
        text-align: center;
    }
    
    h1#datenschutz::before{
        content: "Privacy Policy";
        
        position: absolute;
        color:#252525;
        font-size: 110px;
        z-index: -1;
        left: 0;
        width: 100%;
        text-align: center;
    }
    
    h1#wiederruf::before{
        content: "Return Policy";
        
        position: absolute;
        color:#252525;
        font-size: 110px;
        z-index: -1;
        left: 0;
        width: 100%;
        text-align: center;
    }
    
    h1#agb::before{
        content: "Policy";
        
        position: absolute;
        color:#252525;
        font-size: 110px;
        z-index: -1;
        left: 0;
        width: 100%;
        text-align: center;
    }
    
}


@media (min-width:992px){
    
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    header.index{
        background-image: url(../images/content/home-bg.svg);
        background-position: center;
        background-size: 100%;
        
        text-align: left;
    }
    
    header .grid-1-2{
        display: grid;
        grid-template-columns: 1fr 2fr;
        max-width: 100%;
        width:100%;
        align-items: center;
    }
    
    header .tablet{
        display: none;
    }
    
    header img.desktop{
        display: block;
        height: 92vh;
        width:100%;
        object-fit: cover;
        
        box-shadow: 0 0 7px black;
        border-radius: 30px;
    }
    
    header .inner{
        max-width: 540px;
        margin: 0 auto;
    }
    
    p{
        font-size: 16px;
        line-height: 35px;
    }
    
    
    
/* Galerie Grid */
    
    
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);;
  gap: 30px;
  padding: 40px;
  max-width: 1200px;
  margin: 30px auto 0;
}

.art-card {
  background-color: #1e1e1e;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255,255,255,0.05);
}

.art-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s, filter 0.3s;
}

/* Hover-Effekt */
.art-card img:hover {
  transform: scale(1.05);
  filter: brightness(0.9);
}

/* Info-Bereich */
.art-card .info {
  padding: 20px;
}

.art-card h3 {
  margin-top: 0;
}

.art-card p {
  color: #aaa;
  font-size: 14px;
}

.art-card .price {
  margin: 10px 0;
  font-weight: bold;
  color: #ffb400;
}

/* Anfragen-Button */
.art-card .btn {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  background-image: none !important;
  background: #ffb400;
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.3s;
}

.art-card .btn::before,
.art-card .btn::after {
    content: none !important;
    background: none !important;
}

    

.art-card .btn:hover {
  background: #e09e00;
}

/* Lightbox-Links (nur Thumbnails) */
a[data-lightbox] {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  display: inline-block;
}

a[data-lightbox] img {
  display: block;
  width: 100%;
  height: auto;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}


    
    
    /* Impressum */
    
    
    .impressum {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: 'Helvetica Neue', sans-serif;
  color: #eee;
  line-height: 1.7;
}

.impressum h1 {
  font-size: 36px;
  color: #ffb400;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.impressum h2 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 30px;
  border-bottom: 2px solid #333;
  padding-bottom: 5px;
}

.impressum h3 {
  font-size: 20px;
  margin-top: 40px;
  color: #ffb400;
}

.impressum p {
  margin-bottom: 20px;
}

.impressum strong {
  color: #fff;
  font-weight: 600;
}

.impressum a {
  color: #ffb400;
  text-decoration: underline;
}

.impressum a:hover {
  text-decoration: none;
}

    
/* AGB */
    
.agb {
      max-width: 800px;
      margin: 0 auto;
      padding: 60px 20px;
      font-family: 'Helvetica Neue', sans-serif;
      color: #eee;
      line-height: 1.7;
    }

    .agb h1 {
      font-size: 36px;
      color: #ffb400;
      text-transform: uppercase;
      margin-bottom: 10px;
      letter-spacing: 1px;
    }

    .agb h2 {
      font-size: 24px;
      color: #fff;
      margin-top: 40px;
      margin-bottom: 10px;
      border-bottom: 2px solid #333;
      padding-bottom: 5px;
    }

    .agb p {
      margin-bottom: 20px;
    }

    .agb ol {
      margin-left: 20px;
      margin-bottom: 20px;
    }

    .agb ol li {
      margin-bottom: 10px;
    }
    
    /* desktop nav */
    
    .mobile{
        display: none;
    }
    
    nav ul{
        background-color: transparent;
        width:auto;
        
        left:auto;
        right:0;
        
     
        display: grid;
        align-content: center;
    }
    
    nav.sichtbar ul{
        left:auto;
    }
    
    
    nav ul li a{
        border:0px;
        display: flex;
        flex-direction: row-reverse;
        padding:0;
        padding-left: 20px;
        margin:10px 0;     
    }
    
    nav ul li a span{
        display:none;
        font-size: 16px;
        
        transform: translateX(50px);
        transition: transform 1s;
    }
    
    nav ul li a:hover span{
        transform: translateX(0px);
    }
    
    
    nav ul li a svg{
        padding:15px;
        background-color: #252525;
        height:25px;
        width:25px;
        border-radius: 50%;
        flex-shrink: 0;
        display: block;
        min-width: 25px;
        min-height: 25px;
        max-width: 25px;
        max-height: 25px;
        
    }
    
    
    nav ul li.current a svg{
        background-color: #ffb400;   
    }
    
    nav ul li.current a svg path{
        fill:white;
    }
    
    nav ul li a:hover span{
        display: inline;
    }
    
    nav ul li a:hover{
        background-color: #ffb400;
        border-radius: 35px;
    }
    
    nav ul li a:hover svg{
        background-color: #ffb400;
    }
    
    nav ul li.current a{
        color:#FFF;
    }
    
    
     #ausbildung, #infos {
        max-width: 1200px;
        margin: 0 auto;
         margin-bottom: 0px;
    }
    
    #skills{
        max-width: 1000px;
        margin: 0 auto;
        margin-bottom: 150px;
    }
    .grid-2{
        grid-template-columns: 1fr 1fr;
    }
    
    #projekte figure img{
        display: block;
    }
    
    #projekte figcaption{
        position: absolute;
        top:0;
        left:0;
        transform: translateX(100%);
        
        background-color: #ffb400;
        height: 100%;
        
        display: grid;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 1.5em;
        border-radius: 5px;
        transition: transform 0.5s;
    }
    
    #projekte figure:hover figcaption{
        transform: translateX(0%);
    }
    
            #slider .slide{
        display: grid;
        grid-template-columns: 2fr 1fr;
        align-items: center;
    }
    
    
}

/* Basis-Layout für Sticky Footer */
html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* sorgt dafür, dass Body immer volle Höhe hat */
}

main {
  flex: 1; /* füllt den Platz zwischen Header und Footer */
}

/* Footer */
.footer-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffb400;
}

footer {
  background-color: #111;
  padding: 30px 20px 0 20px;
  text-align: center;
  font-size: 14px;
  margin-top: auto; /* schiebt Footer nach unten */
}

.footer-links p {
  color: #555;
  font-size: 13px;
  width: 100%;
}


/* Datenschutz */

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  color: #ddd;
  font-family: sans-serif;
}

.legal-content h2 {
  margin-top: 40px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 20px;
}

.last-updated {
  margin-top: 50px;
  font-size: 0.9em;
  color: #aaa;






/*
#RRGGBB
#FF0000 - Rot
#550000 - Dunkel Rot


#00FF00 - Gelb

#0000FF

#ffffff  - #fff
#cccccc  - #ccc
#666666  - #666
#333333
#000000

#RRGGBBAA


#00000088
rgba(0,0,0,0.5);
*/