

@font-face {
  font-family: "Regular";
  src:
    url("fonts/NostresRegular.woff2") format("woff2"),
    url("fonts/NostresRegular.woff") format("woff");
  font-style: normal;
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Bold";
  src:
    url("fonts/NostresSemibold.woff2") format("woff2"),
    url("fonts/NostresSemibold.woff") format("woff");
  font-style: normal;
  font-display: swap;
  font-weight: 700;
}



html {
  scroll-behavior: smooth;
}


/* Allgemeine Stile */




body {
    font-family: "Regular", Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #FAF6EF;
}

header {
  background-color: transparent;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 1000;
  padding: 0;
  width: 100vw;
}



h1 {
    font-family: "Bold", Arial, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 120%;
    font-size: 16px;
}

h2 {
    font-family: "Regular", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;

    
}

h3 {
    font-family: "Regular", Arial, sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 120%;

}

h4 {
    font-family: "Regular", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-align: left;
    text-transform: uppercase;
    line-height: 120%;
}

h5 {
    font-family: "Regular", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-align: left;
    text-transform: uppercase;
    line-height: 120%;

}

h6 {
    font-family: "Regular", Arial, sans-serif;
    font-weight: 400;
    font-size: 100px;
    text-align: center;
    text-transform: uppercase;
    line-height: 120%;
}

p {
    font-family: "Regular", Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    margin-top: 0px;
    line-height: 120%;
}

a {
    font-family: "Regular", Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: inherit;
    text-decoration: none;
    line-height: 120%;
    
}

.scroll-to-top {
  position: fixed;
  bottom: 50px;
  right: 20px;
  background-color: white;
  color: black;
  padding: 20px;
  border-radius: 100vh;
  text-align: center;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  z-index: 999;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
}

.scroll-to-top:hover {
  background-color: black;
  color: white;
  box-shadow: 0px 0px 30px rgb(247, 207, 163);
}

/* Sichtbar machen beim Scrollen */
body.scrolled .scroll-to-top {
  opacity: 1;
  pointer-events: auto;
}


/* Logo in Navigation */


.navbar-container {

  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}



.logo img {
  height: 30px;           /* Logo‑Größe */
  width: auto;
  filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 1));
  transition: height 0.3s ease;
  padding: 20px;
  padding-top: 0;
}


.scrolled .logo img {
  height: 20px;
}


nav {

    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    
}

nav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    padding-right: 15px;
    padding-top: 0px;


}

nav ul li {
    text-align: center;

}

nav ul li a.logo-link {
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    
}

nav ul li a.logo-link:hover {
    background-color: transparent;
    color: inherit;
    box-shadow: none;

}


nav ul li a {
    display: block;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
    padding: 5px 25px 5px 25px;
    color: #000;
    text-decoration: none;
    font-size: 20px;
    border-radius: 100vh;
    background-color: #fff;
    margin: 5px;
    
}

nav ul li a:hover {
    background-color: black;
    color: #fff;
    box-shadow: 0px 0px 30px rgb(247, 207, 163);
}




.menu-icon {
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
    padding: 15px 15px;
    margin: auto;
    border-radius: 100vh;
    display: none;
}

.bar1, .bar2, .bar3 {
    width: 50px;
    height: 3px;
    background-color: #000;
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: rotate(45deg) translate(-8px, -8px);
}

.responsive-svg {
    width: 95%;
    height: auto;
    display: block;
    z-index: 2;       /* ganz vorne */
    position: relative;
    padding: 2vh;
  }

main {
    padding: 0;
    margin-top: 0;
    flex: 1;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.button {
    background-color: white;
    border: none;
    color: black;
    padding: 10px 30px;
    margin: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-family: Regular;
    transition-duration: 0.4s;
    border-radius: 100vh;
    cursor: pointer;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
  }

  .button:hover {
    background-color: black;
    color: white;
    border-radius: 0vh;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
  }


/* ---------- MASSKLEIDUNG GRID 1 ---------- */
.grid-container-masskleidung-1 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto auto;
  gap: 0;
}

/* Großes Bild links */
.grid-container-masskleidung-1 .item-1 {
  grid-column: 1 / span 3;
  grid-row: 1 / span 3;
}

.grid-container-masskleidung-1 .item-2 {
  grid-column: 4 / span 3;
  grid-row: 1;
  padding: 5vw;
}

.grid-container-masskleidung-1 .item-3 {
  grid-column: 4 / span 3;
  grid-row: 2;
  padding: 5vw;
}

.grid-container-masskleidung-1 .item-4 {
  grid-column: 4 / span 3;
  grid-row: 3;
  padding: 5vw;
}

/* ---------- MASSKLEIDUNG GRID 2 ---------- */
.grid-container-masskleidung-2 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto auto;
  gap: 0;
}

/* Großes Bild rechts */
.grid-container-masskleidung-2 .item-4 {
  grid-column: 4 / span 3;
  grid-row: 1 / span 3;
}

.grid-container-masskleidung-2 .item-1 {
  grid-column: 1 / span 3;
  grid-row: 1;
  padding: 5vw;
}

.grid-container-masskleidung-2 .item-2 {
  grid-column: 1 / span 3;
  grid-row: 2;
  padding: 5vw;
}

.grid-container-masskleidung-2 .item-3 {
  grid-column: 1 / span 3;
  grid-row: 3;
  padding: 5vw;
}

/* Gemeinsame Bild-Styling */
.item-masskleidung-1 img,
.item-masskleidung-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Textboxen optisch angleichen */
.item-masskleidung-1,
.item-masskleidung-2 {
  background-color: #000;
  color: #fff;
  text-align: center;
}


.item-masskleidung-1 h2,
.item-masskleidung-2 h2 {
font-size: 25px;
text-transform: uppercase;
}


/* collection Grid */
.grid-container-collection {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto auto;
    padding: 0;
    margin-top: 0px;
    gap: 20px;
    padding: 5vw;
    
    
}

.item-collection{
    overflow: hidden;
    padding: 0px;
    position: relative;
    height: auto;


}

.item-collection img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}


.grid-container-collection .item-collection:nth-child(1) {
  grid-column: 1 / span 3;
  grid-row: 1 / span 2;
}

.grid-container-collection .item-collection:nth-child(2) {
  grid-column: 4 / span 3;
  grid-row: 1 / span 1;
}

.grid-container-collection .item-collection:nth-child(3) {
  grid-column: 4 / span 3;
  grid-row: 2 / span 1;
}




.grid-container-collection-2 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto auto;
    padding: 0;
    margin-top: 0px;
    gap: 20px;
    padding: 5vw;
}

.item-collection-2 {
    overflow: hidden;
    padding: 0px;
    position: relative;
    height: auto;
}

.item-collection-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}


.grid-container-collection-2 .item-collection-2:nth-child(1) {
  grid-column: 1 / span 6;
  grid-row: 1 / span 1;

}

.grid-container-collection-2 .item-collection-2:nth-child(2) {
  grid-column: 1 / span 3;
  grid-row: 2 / span 1;
}

.grid-container-collection-2 .item-collection-2:nth-child(3) {
  grid-column: 4 / span 3;
  grid-row: 2 / span 1;

}


.grid-container-collection-3 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto auto;
    padding: 0;
    margin-top: 0px;
    gap: 20px;
    padding: 5vw;
    
}

.item-collection-3 {
    overflow: hidden;
    padding: 0px;
    position: relative;
    height: auto;

}

.item-collection-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}


.grid-container-collection-3 .item-collection-3:nth-child(1) {
  grid-column: 1 / span 3;
  grid-row: 1 / span 2;
}

.grid-container-collection-3 .item-collection-3:nth-child(2) {
  grid-column: 4 / span 3;
  grid-row: 1 / span 1;
}

.grid-container-collection-3 .item-collection-3:nth-child(3) {
  grid-column: 4 / span 3;
  grid-row: 2 / span 1;
}




  /* startseite-about */
#start-about {
  position: relative;
  width: 100vw;
  height: 100vh; /* volle Höhe des Viewports */
  background-image: url('img/about.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white; /* Textfarbe anpassen */

}








  /* Slideshow */
.slideshow-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

/* einzelne Slides */
.slide {
  display: none;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Fester Text über allen Slides (zentriert) */

.overlay-text-header {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%); /* <-- wichtig: X und Y zentrieren */
  color: #fff;
  text-align: center;
  z-index: 20;               /* hoch setzen, damit er immer oben liegt */
  pointer-events: none;      /* erlaubt Klicks auf Pfeile darunter */
  width: 50%;         /* macht den Text breiter als den Bildschirm */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}


.overlay-text-header p {
  font-size: 16px;
  text-transform: uppercase;

}

/* Pfeile */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 30px;    /* sichtbare Größe der Schaltfläche */
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  z-index: 30;    /* über Bildern, aber unter overlay-text (overlay-text ist 20, daher set 30 > 20) */
  border-radius: 6px;
  transition: transform 0.15s ease, background 0.15s ease;
  text-decoration: none;
  padding: 6px;   /* kleine Innenabstände für SVG */
}

.prev:hover, .next:hover {
  transform: translateY(-50%) scale(1.05);
  background: #fff;
}

.prev img, .next img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.prev img:hover, .next img:hover {
  filter: invert(1);
}

/* Position der Pfeile */
.prev { left: 12px; }
.next { right: 12px; }

/* Punkte: absolut unten in der Slideshow, immer mittig */
.dots {
  position: absolute;
  bottom: 20px;            /* Abstand vom unteren Rand der Slideshow */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 40;             /* oben, damit Punkte sichtbar sind */
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

/* sichtbare Größe der Punkte vergrößert, damit sie leichter zu sehen sind */
.dot {
  cursor: pointer;
  height: 7px;
  width: 7px;
  background-color: rgba(255,255,255,0.8);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.2s, transform 0.15s;
}

.dot:hover {
  transform: scale(1.15);
}

.active {
  background-color: #000;
  border-color: rgba(255,255,255,0.9);
}

/* Sanftes Überblenden */
.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from {opacity: 0.4}
  to {opacity: 1}
}



/* stories Grid */
.grid-container-stories {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    padding: 20px;
    background-color: #000;
    color: #fff;

}



.item-stories {

    position: relative;
    height: auto;
    overflow: hidden;
    
}



.item-stories img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    

    
}


.item-stories .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.5s ease;
    color: #fff;
    

}

.item-stories .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    color:#fff;
    text-align: center;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    
    
    
    
}

.item-stories h3 {
font-size: 16px;
text-transform: uppercase;
}

.item-stories h2 {
font-size: 30px;
text-transform: uppercase;
}

.item-stories .text {
    position: absolute;
    bottom: 40px; /* Abstand vom unteren Rand */
    left: 50%;
    transform: translateX(-50%); /* nur horizontal zentrieren */
    color: #fff;
    text-align: center;
    opacity: 1;
    transition: opacity 0.5s ease;
    width: 90%;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.item-stories:hover img {
    filter: blur(10px); 
}

.item-stories:hover .overlay {
    background-color: rgba(0, 0, 0, 0.1);


}

.item-stories:hover .overlay-text {
    opacity: 1;
    
}

.item-stories:hover .text {
    opacity: 0;
    
}



.grid-container-stories .item-stories:nth-child(1){
    grid-column: span 3;
    height: 500px;
 
}

.grid-container-stories .item-stories:nth-child(2){
    grid-column: span 3;
    height: 500px;
 
}

.grid-container-stories .item-stories:nth-child(3){
    grid-column: span 6;

}

.grid-container-stories .item-stories:nth-child(4),
.grid-container-stories .item-stories:nth-child(5),
.grid-container-stories .item-stories:nth-child(6) {
    grid-column: span 2;

}


/* About Grid */
.grid-container-about {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    padding: 0;
    margin-top: 0px;
    gap: 0px;
    
}

.item-about {
    overflow: hidden;
    padding: 0px;
    position: relative;
    height: auto;

}

.item-about h2 {
    font-size: 30px;
    text-transform: uppercase;

}

.item-about h3 {
    font-size: 20px;
    text-transform: uppercase;

}

.item-about img {
    width: 100%;
    height: 100%;
    object-fit: relative;

}


.grid-container-about .item-about:nth-child(1) {
    grid-column: span 6;
    padding-left: 10vw;
    padding-right: 10vw;
    padding-top: 5vw;
    padding-bottom: 2vw;
    background-color: #000;
    color: white;
    text-align: center;

}


.grid-container-about .item-about:nth-child(2) {
    grid-column: span 6;
    padding-left: 20vw;
    padding-right: 20vw;
    background-color: #000;
    color: white;
    text-align: center;

}


.grid-container-about .item-about:nth-child(3) {
    grid-column: span 6;
    padding-left: 10vw;
    padding-right: 10vw;
    padding-top: 5vw;
    padding-bottom: 2vw;
    background-color: #000;
    color: white;
    text-align: center;

}


.grid-container-about .item-about:nth-child(4),
.grid-container-about .item-about:nth-child(5),
.grid-container-about .item-about:nth-child(6) {
    grid-column: span 2;
    padding: 5vw;
    background-color: #000;
    color: white;
    text-align: center;
}




/* service Grid */
.grid-container-service {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    padding: 0;
    margin-top: 0px;
    gap: 0px;
    
}

.item-service {
    overflow: hidden;
    padding: 0px;
    position: relative;
    height: auto;

}

.item-service h2 {
    text-transform: none;
    font-size: 30px;

}

.item-service h3 {
    text-transform: uppercase;
    font-size: 20px;

}

.item-service img {
    width: 100%;
    height: 100%;
    object-fit: relative;

}


.grid-container-service .item-service:nth-child(1) {
    grid-column: span 6;
    padding-left: 10vw;
    padding-right: 10vw;
    padding-top: 5vw;
    padding-bottom: 2vw;
    background-color: #000;
    color: white;
    text-align: center;

}

.grid-container-service .item-service:nth-child(5) {
    grid-column: span 6;
    padding-left: 10vw;
    padding-right: 10vw;
    padding-top: 2vw;
    padding-bottom: 10vw;
    background-color: #000;
    color: white;
    text-align: center;

}


.grid-container-service .item-service:nth-child(2),
.grid-container-service .item-service:nth-child(3),
.grid-container-service .item-service:nth-child(4) {
    grid-column: span 2;
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top: 0;
    padding-bottom: 0;
    background-color: #000;
    color: #fff;
    text-align: center;
}





/* Kontakt Grid */

.item-kontakt {
    overflow: hidden;
    padding: 0px;
    position: relative;
    height: 100px;
    border-top: 1.5px solid lightgrey; 

}
  
  .scroll-wrapper-mail {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    background-color: #fff; 
  }
  
  .scroll-content-mail {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-loop 60s linear infinite;
    padding-top: 1vh;
    padding-bottom: 0;
  }

  .scroll-wrapper-linkedin {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    background-color: #fff; 
  }
  
  .scroll-content-linkedin {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-loop 60s linear infinite;
  }

  .scroll-wrapper-instagram {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    background-color: #fff; 
  }
  
  .scroll-content-instagram {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-loop 60s linear infinite;
    padding-top: 1vh;
    padding-bottom: 0;
  }
  
  @keyframes scroll-loop {
    0% { transform: translateX(-20%); }
    100% { transform: translateX(-80%); }
  }
  
   .scroll-content-mail:hover {
    color: #fff;
    background-color: black;

  }

  .scroll-content-linkedin:hover {
    color: #fff;
    background-color: black;

  }

  .scroll-content-instagram:hover {
    color: #fff;
    background-color: black;

  }
  

/* Impressum Grid */
.grid-container-impressum {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    padding: 0;
    margin-top: 0px;
    gap: 0px;
    padding-bottom: 100px;
    
}

.item-impressum {
    overflow: hidden;
    padding: 0px;
    position: relative;
    height: auto;

}

.item-impressum img {
    width: 100%;
    height: 100%;
    object-fit: relative;

}

.grid-container-impressum .item-impressum:nth-child(1) {
    grid-column: span 6;
    padding-left: 20vw;
    padding-right: 20vw;
    padding-top: 15vw;
    background-color: #000;
    color: white;
    text-align: left;
    font-size: 20px;

}

.grid-container-impressum .item-impressum:nth-child(1),
.grid-container-impressum .item-impressum:nth-child(2),
.grid-container-impressum .item-impressum:nth-child(3),
.grid-container-impressum .item-impressum:nth-child(4),
.grid-container-impressum .item-impressum:nth-child(5),
.grid-container-impressum .item-impressum:nth-child(6) {
    grid-column: span 6;
    padding-left: 20vw;
    padding-right: 20vw;
    background-color: #000;
    color: white;
    text-align: left;
    font-size: 20px;

}


/* Datenschutz Grid */
.grid-container-datenschutz {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    padding: 0;
    margin-top: 0px;
    gap: 0px;
    padding-bottom: 100px;

    
}

.item-datenschutz {
    overflow: hidden;
    padding: 0px;
    position: relative;
    height: auto;

}

.item-datenschutz img {
    width: 100%;
    height: 100%;
    object-fit: relative;

}


.grid-container-datenschutz .item-datenschutz:nth-child(1) {
    grid-column: span 6;
    padding-left: 20vw;
    padding-right: 20vw;
    padding-top: 15vw;
    background-color: #000;
    color: white;
    text-align: left;
    font-size: 20px;

}

.grid-container-datenschutz .item-datenschutz:nth-child(2),
.grid-container-datenschutz .item-datenschutz:nth-child(3),
.grid-container-datenschutz .item-datenschutz:nth-child(4),
.grid-container-datenschutz .item-datenschutz:nth-child(5),
.grid-container-datenschutz .item-datenschutz:nth-child(6),
.grid-container-datenschutz .item-datenschutz:nth-child(7),
.grid-container-datenschutz .item-datenschutz:nth-child(8),
.grid-container-datenschutz .item-datenschutz:nth-child(9) {
    grid-column: span 6;
    padding-left: 20vw;
    padding-right: 20vw;
    margin-bottom: 2vw;
    background-color: #000;
    color: white;
    text-align: left;

}




/* Footer */

.grid-container-footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 40px;
    margin-top: 0px;
    gap: 40px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    border-top: 1.5px solid lightgrey; 
}

.item-footer {
    padding: 0;
    align-content: center, top;
    position: relative;
    height: auto;
}

.grid-container-footer .item-footer:nth-child(1),
.grid-container-footer .item-footer:nth-child(2) {
    grid-column: span 2;
}



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

    
    .menu-icon {
        display: block;
        margin: 15px;
        color: #000;
        background-color: #fff;
    }

    .menu-icon:hover {
        background-color: black;
        box-shadow: 0px 0px 30px rgb(247, 207, 163);
    }

    .menu-icon:hover .bar1, 
    .menu-icon:hover .bar2, 
    .menu-icon:hover .bar3 {
        background-color: #fff;
    }


  .logo {
    display: block;


  }

 
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    border-radius: 0 0 20px 20px;
    z-index: 999; /* sicherstellen, dass es über allem liegt */

  }

  nav.active {
    display: flex;
    
  }




  nav ul {
    flex-direction: column;
    padding: 30px;
    

    
  }


    nav ul li {
        width: 95vw;
        margin: 0;
        padding: 10px;
        
    }

    nav ul li a {
        font-size: 40px;
    }


.logo img {
  height: 30px;           /* Logo‑Größe */
  width: auto;
  padding-left: 20px;
  padding-top: 20px;
  margin-top: 0;
  filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 1));
  transition: height 0.3s ease;
}


.scrolled .logo img {
  height: 20px;
  margin-top: 0;
}

.nav-links {
  display: column;
  gap: none;
  list-style-type: style;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}



    h1 {
        font-size: 16px;
    }

    h2 {
        font-size: 16px;
    }

    h3 {
        font-size: 16px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 16px;
        text-align: center;
    }

    h6 {
        font-size: 70px;
    }

    p {
        font-size: 20px;
    }

    a {
        font-size: 20px;
    }

    
  .overlay-text-header {
  width: 80%;
    }

 .grid-container-about,
 .grid-container-kontakt,
 .grid-container-service,
 .grid-container-masskleidung-1,
 .grid-container-datenschutz,
 .grid-container-impressum {
        grid-template-columns: repeat(4, 1fr);

        padding: 0;
        margin-top: 0;
        gap: 0;
    }


 .grid-container-collection,
 .grid-container-collection-2,
 .grid-container-collection-3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    margin-top: 0px;
    gap: 20px;
    
}

.grid-container-collection .item-collection:nth-child(1),
.grid-container-collection-2 .item-collection-2:nth-child(1),
.grid-container-collection-3 .item-collection-3:nth-child(1) {
  grid-column: 1 / span 4;
  grid-row: 1 / span 1;
}

.grid-container-collection .item-collection:nth-child(2),
.grid-container-collection-2 .item-collection-2:nth-child(2),
.grid-container-collection-3 .item-collection-3:nth-child(2) {
  grid-column: 1 / span 2;
  grid-row: 2 / span 2;
}

.grid-container-collection .item-collection:nth-child(3),
.grid-container-collection-2 .item-collection-2:nth-child(3),
.grid-container-collection-3 .item-collection-3:nth-child(3) {
  grid-column: 3 / span 2;
  grid-row: 2 / span 2;
}


     .grid-container-footer {
        grid-template-columns: repeat(4, 1fr);
        padding: 20px;
        margin-top: 0;
        gap: 0;
    }


    .grid-container-stories .item-stories:nth-child(1),
    .grid-container-stories .item-stories:nth-child(2),
    .grid-container-stories .item-stories:nth-child(3),
    .grid-container-stories .item-stories:nth-child(4),
    .grid-container-stories .item-stories:nth-child(5) {
        grid-column: span 6;
    }


    .grid-container-service .item-service:nth-child(1),
    .grid-container-service .item-service:nth-child(2),
    .grid-container-service .item-service:nth-child(3),
    .grid-container-service .item-service:nth-child(4),
    .grid-container-service .item-service:nth-child(5) {
        grid-column: span 6;
    }

    .grid-container-about .item-about:nth-child(1),
    .grid-container-about .item-about:nth-child(2),
    .grid-container-about .item-about:nth-child(3),
    .grid-container-about .item-about:nth-child(4),
    .grid-container-about .item-about:nth-child(5),
    .grid-container-about .item-about:nth-child(6) {
        grid-column: span 6;
        padding-left: 20px;
        padding-right: 20px;

    }

    .grid-container-datenschutz .item-datenschutz:nth-child(1),
    .grid-container-datenschutz .item-datenschutz:nth-child(2),
    .grid-container-datenschutz .item-datenschutz:nth-child(3),
    .grid-container-datenschutz .item-datenschutz:nth-child(4),
    .grid-container-datenschutz .item-datenschutz:nth-child(5),
    .grid-container-datenschutz .item-datenschutz:nth-child(6),
    .grid-container-datenschutz .item-datenschutz:nth-child(7),
    .grid-container-datenschutz .item-datenschutz:nth-child(8),
    .grid-container-datenschutz .item-datenschutz:nth-child(9) {
        grid-column: span 6;
        padding-left: 20px;
        padding-right: 20px;

    }


    .grid-container-impressum .item-impressum:nth-child(1),
    .grid-container-impressum .item-impressum:nth-child(2),
    .grid-container-impressum .item-impressum:nth-child(3),
    .grid-container-impressum .item-impressum:nth-child(4),
    .grid-container-impressum .item-impressum:nth-child(5),
    .grid-container-impressum .item-impressum:nth-child(6),
    .grid-container-impressum .item-impressum:nth-child(7), 
    .grid-container-impressum .item-impressum:nth-child(8),
    .grid-container-impressum .item-impressum:nth-child(9),
    .grid-container-impressum .item-impressum:nth-child(10) {
        grid-column: span 6;
        padding-left: 20px;
        padding-right: 20px;

    }

    .grid-container-masskleidung-1 .item-masskleidung-1:nth-child(1),
    .grid-container-masskleidung-1 .item-masskleidung-1:nth-child(2),
    .grid-container-masskleidung-1 .item-masskleidung-1:nth-child(3),
    .grid-container-masskleidung-1 .item-masskleidung-1:nth-child(4) {
        grid-column: span 6;
        grid-row: auto;
        

    }


    .grid-container-masskleidung-1 .item-1 {
    order: 1;
  }

  .grid-container-masskleidung-1 .item-2,
  .grid-container-masskleidung-1 .item-3,
  .grid-container-masskleidung-1 .item-4 {
    order: 0;
  }


    .grid-container-masskleidung-2 .item-masskleidung-2:nth-child(1),
    .grid-container-masskleidung-2 .item-masskleidung-2:nth-child(2),
    .grid-container-masskleidung-2 .item-masskleidung-2:nth-child(3),
    .grid-container-masskleidung-2 .item-masskleidung-2:nth-child(4) {
        grid-column: span 6;
        grid-row: auto;    

    }


 .item-masskleidung-1 h2 {
        font-size: 20px;
        }

 .item-masskleidung-2 h2 {
        font-size: 20px;
        }


    .grid-container-footer .item-footer:nth-child(1),
    .grid-container-footer .item-footer:nth-child(2) {
        grid-column: span 2;
    }

    .scroll-to-top {
        position: fixed;
        bottom: 100px;
        right: 20px;

    }


}