* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

}





:root {
  --TEXT-SHADOW: 2px 2px 10px rgba(0, 0, 0, 0.795);
}


h1 {
  font-size: 4rem;
  color: white;
  text-shadow: var(--TEXT-SHADOW);
  animation: fade-in 2s ease-in;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}



h2 {
  font-size: 2.5rem;
  margin: 20px 20px;
}




p {
  font-size: 1.4rem;
  text-align: left;
}









/* --------------------- HAMBURGER NAVI ------------------ */

.menu-wrap {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
}

.menu-wrap .toggler {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}

.menu-wrap .hamburger {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 60px;
  height: 60px;
  padding: 1rem;
  background: rgba(48, 75, 163, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger Line */
.menu-wrap .hamburger>div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

/* Hamburger Lines - Top & Bottom */
.menu-wrap .hamburger>div::before,
.menu-wrap .hamburger>div::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -10px;
  width: 100%;
  height: 2px;
  background: inherit;
}

/* Moves Line Down */
.menu-wrap .hamburger>div::after {
  top: 10px;
}

/* Toggler Animation */
.menu-wrap .toggler:checked+.hamburger>div {
  transform: rotate(135deg);
}

/* Turns Lines Into X */
.menu-wrap .toggler:checked+.hamburger>div:before,
.menu-wrap .toggler:checked+.hamburger>div:after {
  top: 0;
  transform: rotate(90deg);
}

/* Rotate On Hover When Checked */
.menu-wrap .toggler:checked:hover+.hamburger>div {
  transform: rotate(225deg);
}


/* Show Menu */
.menu-wrap .toggler:checked~.menu {
  visibility: visible;
}

.menu-wrap .toggler:checked~.menu>div {
  transform: scale(1);
  transition-duration: 0.75s;
}

.menu-wrap .toggler:checked~.menu>div>div {
  opacity: 1;
  transition: opacity 0.4s ease 0.4s;
}

.menu-wrap .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

}

.menu-wrap .menu>div {
  background: rgba(24, 39, 51, 0.85);
  border-radius: 0%;
  width: 100%;
  /*  */
  height: 100%;
  /*  */
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.4s ease;
}



.menu-wrap .menu>div>div {
  text-align: center;
  max-width: 90%;
  /*  */
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-wrap .menu>div>div>ul>li {
  list-style: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 1rem;
}

.menu-wrap .menu>div>div>ul>li>a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease;
}


.menu-wrap .menu>div>div>ul>li>a:hover {
  color: #1d5fc2;
  transition: opacity 0s;
}







section {
  height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}






/* --------------------- BACKGOUND 1 ------------------ */

section.one {

  background: url('img/99.JPG');
  background-size: auto;
  animation: mymove 80s infinite alternate;

  background-attachment: fixed;



  height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@keyframes mymove {
  0% {
    background-position: left;
  }

  100% {
    background-position: right;
  }
}











section.one>p {
  font-size: 2rem;
  color: white;
  text-shadow: var(--TEXT-SHADOW);
  animation-delay: fade-in-sub 3s;
  animation: fade-in-sub 12s ease;
}

@keyframes fade-in-sub {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}











/* --------------------- CONTENT 1 KÜNSTLERIN ------------------ */

.content1 {
  min-height: 800px;
  width: 100%;
  max-width: 1920px;
  margin: 0;
  padding: 5rem 5rem 5rem 5rem;
  background: #ffffff;
  color: #000000;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row
}





.fluffy {

  border-radius: 50%;
  margin: 0rem 3rem;

  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.527);
}






/* --------------------- BACKGOUND 2 ------------------ */

section.two {

  background: url('img/2.JPG');
  animation: mymove2 30s infinite alternate;
  background-size: 50vw 100vh;
  background-position: center;
  background-attachment: fixed;
  height: 50vh;
}


@keyframes mymove2 {
  0% {
    background-position: right;
  }

  100% {
    background-position: left;
  }
}




/* --------------------- CONTENT 2 ATILIER ------------------ */

.content2 {
  min-height: 800px;
  width: 100%;
  max-width: 1920px;

  background: #ffffff;
  color: #000000;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 1.5rem;
}


.content2>p {
  margin: 0;
  padding: 2rem 5rem 5rem 5rem;
}



.content2>p>a:hover {
  text-decoration: underline;
  color: rgb(48, 75, 163);
}

.content2>p>a:link,
a:visited {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  color: rgb(0, 0, 0);
}



/* --------------------- CONTENT 2 ATILIER GALERIE ------------------ */


.gallery {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1vh;
  margin-inline: auto;
  max-width: 40rem;
  background: #ffffff;
  margin: 0;
  padding: 0;
}





.gallery>img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: all 0.3s ease;

}

.gallery:has(img:hover) img:not(:hover) {
  scale: 0.8;
  opacity: 0.5;
  filter: grayscale(70%);
}


.gallery>img:hover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transform: scale(2.5);
  z-index: 1;
}




/* --------------------- BACKGOUND 3 ------------------ */


section.three {

  background: url('img/3.JPG');
  animation: mymove2 30s infinite alternate;
  background-size: 50vw 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 50vh;
}


@keyframes mymove2 {
  0% {
    background-position: right;
  }

  100% {
    background-position: left;
  }
}



/* --------------------- CONTENT BILDERGALERIE ------------------ */

.content3 {
  height: auto;
  width: 100%;
  max-width: 1920px;
  margin: 1rem;
  padding: 5rem 5rem 5rem 5rem;
  background: #ffffff;
  color: #000000;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 1.5rem;
}
/* Für mobile Geräte (kleiner als 600px) zusätzliches Padding oben */
@media (max-width: 600px) {
  .content3 {
    padding-top: 400px;
    margin-top: 4000px;
  }
}





.gallery-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-wrapper {
  position: relative;
  width: 100%;
  background: rgb(255, 255, 255);
  border: 3px solid rgb(114, 114, 114);
  border-radius: 3px;
}

.gallery-image {
  width: 100%;
  height: auto; /* Wichtiger Unterschied */
  object-fit: contain;
  display: block;
}

.caption {
  margin-top: 12px;
  text-align: center;
  background: rgb(255, 255, 255);
  color: rgb(54, 54, 54);
  font-size: 1em;
  padding: 6px 12px;
  border-radius: 5px;
  max-width: 90%;
}
.click-zone {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.05);
  transition: background 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .click-zone:hover {
    background: rgba(0, 0, 0, 0.15);
  }

  .click-zone:hover .arrow {
    opacity: 1;
  }
}

.left-zone {
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Pfeil nach ganz links */
  padding-left: 15px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.right-zone {
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Pfeil nach ganz rechts */
  padding-right: 15px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.arrow {
  color: rgb(0, 0, 0);
  font-size: 2.5em;
  user-select: none;
  pointer-events: none; /* Klicks gehen an click-zone, nicht Pfeil */
  opacity: 0.7;

}

.click-zone:hover .arrow {
  opacity: 1;
}

@media (max-width: 600px) {
  .arrow {
    font-size: 2em;
  }
}

@media (max-width: 600px) {
  .caption {
    font-size: 0.7em;
    padding: 4px 8px;
  }

  .gallery-container {
    height: 60vh;
  }
}





/*

#slider {
  max-width: 1000px;
  max-height: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem;
  padding: 2rem;
  border: 1px solid rgb(238, 238, 238);
  box-shadow: 2px 2px 50px rgba(0, 0, 0, 0.178);
  border-radius: 20px;
}


#img_slider {
  width: 100%;
}

#img_slider img {
  width: 100%;
  display: none;
}

#img_slider img:nth-child(1) {
  display: block;
}

#slider button {
  margin: 10px;
  width: 50px;
  height: 50px;
  border: solid rgb(255, 255, 255) 2px;
  color: rgb(0, 0, 0);
  outline: none;
  cursor: pointer;
  background: none;
  border-radius: 50px;
  font-size: 40px;
  transition: all 0.1s ease-in-out;
}

#slider button:hover {
  transform: scale(1.05);
}

#slider button:active {
  transform: scale(0.95);
}




@media screen and (max-width: 576px) {

  #slider {
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
  }

  #slider>button {
    margin: 0;
    padding: 0;
  }

}
*/



/* --------------------- BACKGOUND 4 ------------------ */

section.four {

  background: url('img/4.JPG');
  animation: mymove2 30s infinite alternate;
  background-size: 50vw 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  background-attachment: fixed;
  height: 50vh;
}


@keyframes mymove2 {
  0% {
    background-position: right;
  }

  100% {
    background-position: left;
  }
}




/* --------------------- CONTENT TERMINVEREINBARUNF ------------------ */



.content4 {
  min-height: 50vh;
  width: 100%;
  max-width: 1920px;
  margin: 5rem;
  padding: 5rem 5rem 5rem 5rem;
  background: #ffffff;
  color: #000000;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 1.5rem;
}



/* --------------------- BACKGOUND 5 ------------------ */

section.five {

  background: url('img/5.JPG');
  animation: mymove2 30s infinite alternate;
  background-size: 50vw 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 50vh;
}


@keyframes mymove2 {
  0% {
    background-position: right;
  }

  100% {
    background-position: left;
  }
}






#google {
  margin: 2rem 0rem;
  box-shadow: 2px 2px 50px rgba(0, 0, 0, 0.301);
}







/* --------------------- Footer ------------------ */


.footer {
  display: flex;
  flex-flow: row wrap;
  padding: 30px 30px 20px 30px;
  color: #ffffff;
  background-color: #3a3a3a;
  border-top: 1px solid #ffffff;
  height: auto;
}

.footer>* {
  flex: 1 100%;
}

/* .footer__addr {
  margin-right: 1.25em;
  margin-bottom: 2em;
}
 */

.footer__logo {
  margin: 1rem;
}



.nav__title {
  font-weight: 400;
  font-size: 15px;
}

.footer address {
  font-style: normal;
  color: #999;
}

.footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  max-width: max-content;
  background-color: rgba(255, 255, 255, 0.664);
  border-radius: 10px;
  color: #272727;
  line-height: 0;
  margin: 0.6em 0;
  font-size: 1rem;
  padding: 0 1.3em;
}


.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer li {
  line-height: 2em;
}

.footer a {
  text-decoration: none;
}

.footer a:hover {
  color: #1d5fc2;
}

.footer__nav {
  display: flex;
  flex-flow: row wrap;


}

.footer__nav>* {
  flex: 1 50%;
  margin-right: 1.25em;
}

.nav__ul a {
  color: #999;
}

.nav__ul--extra {
  column-count: 2;
  column-gap: 1.25em;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  color: #999;
}

.legal__links {
  display: flex;
  align-items: center;
}




.impressum {
  border-top: 1px solid white;
}

.impressum>p {

  font-size: 14px;
  margin: 0;
  padding: 0;
  color: gray;
}




@media screen and (max-width: 576px) {
  .legal .legal__links {
    margin-left: auto;
  }
}

@media screen and (max-width: 576px) {
  .footer__nav>* {
    flex: 1;
  }

  .nav__item--extra {
    flex-grow: 2;
  }

  .footer__addr {
    flex: 1 0px;
  }

  .footer__nav {
    flex: 2 0px;
  }
}












@media screen and (max-width: 576px) {
  section.one {

    text-align: center;
    background-size: cover;

    height: 100vh;
    background-size: auto 100vh;
    animation: mymove 100s infinite alternate;
  }

  section.one>h1 {
    font-size: 2.5rem;
  }

  section.one>p {
    font-size: 1.2rem;
    margin-top: 1rem;
  }


  section.two {
    animation: mymove2 200s infinite alternate;
    background-size: auto 100vh;
  }

  section.three {
    animation: mymove2 200s infinite alternate;
    background-size: auto 100vh;
    margin-bottom: 50px;
  }

  section.four {
    animation: mymove2 200s infinite alternate;
    background-size: auto 100vh;
  }

  section.five {
    animation: mymove2 200s infinite alternate;
    background-size: auto 100vh;
  }
}







@media screen and (max-width: 576px) {

  .content1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem;
    margin: 0rem;
  }

  .content1>h2 {
    font-size: 2rem;
    margin: 0;
    padding: 2rem 1rem;
  }

  .content1>p.fade-in-sub {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 1rem;
  }







  .content2 {
    flex-direction: column;
    margin: 0;
    padding: 1rem 1rem;
    margin: 0rem;
  }

  .content2>p {
    padding: 2rem 2rem;
    font-size: 1.2rem;
  }

  .content2>h2 {
    font-size: 2.5rem;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .fluffy {
    margin: 2rem 2rem;
    width: 70vw;
    height: 70vw;
  }







  .content3 {
    flex-direction: column;
    margin: 0;
    padding: 1rem 1rem;
    margin: 0rem;
  }

  .content3>p {
    padding: 2rem 2rem;
    font-size: 1.2rem;
  }

  .content3>h2 {
    font-size: 2.5rem;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .gallery {
    grid-template-columns: repeat(1, 1fr);
    padding: 3rem 4rem;
    max-width: 100vh;

  }

  .gallery>img:hover {
    scale: 10.6;
  }




  .content4 {
    margin: 0rem;
    padding: 1rem;
    min-height: 50vh;
  }

  .content4>h2 {
    font-size: 2rem;
    margin: 1rem;
    padding: 1rem 0rem;
  }

  .content4>p {
    font-size: 1.2rem;
    text-align: justify;
    margin: 1rem;
    padding: 0;
  }
}




/* 

  @media screen and (max-width: 576px) {
    .content3 {
      padding: 0;
      margin: 0;
    }

    .content3>p {
      padding: 2rem 2rem;

    }

    #slider {
      margin: 2rem 0 2rem 0;
      padding: 0;
      box-shadow: none;
      border: none;
    }
  }


  @media screen and (max-width: 576px) {
    .content4 {
      padding: 0;
      margin: 0;

    }

    .content4>p {
      padding: 2rem 2rem;
    }

    .content4>h2 {
      padding: 0;
      margin: 0 0 0 0;
      text-align: center;
    }
  } */