/** FONTS **/

/** LOGO FONT **/

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #FFC0CB;
    background-image: url("../img/bg2.png");
    color: #333;
}

body::-webkit-scrollbar-thumb {
    background-color: pink;
    border: 2px solid #555555;
}

.animated-hover {
 transition: .3s;
}


.animated-hover:hover {
transform: scale(0.97);
}

#beforeFooterLogo {
  margin-top: 120px;
  width: 700px;
}


@media screen and (max-width: 1400px) {
  #beforeFooterLogo {
    margin-top: 120px;
    width: 600px;
  }
}


@media screen and (max-width: 1000px) {
  #beforeFooterLogo {
    margin-top: 120px;
    width: 450px;
  }
}


@media screen and (max-width: 700px) {
  #beforeFooterLogo {
    margin-top: 120px;
    width: 350px;
  }
}


@media screen and (max-width: 450px) {
  #beforeFooterLogo {
    margin-top: 120px;
    width: 280px;
  }
}

a {
    text-decoration: none;
    color: #333;
}

h1 {
  margin-top: 4rem;
}

.moreBtn {
  width: 160px;
  height: 40px;
  border: 3px solid #FFF;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  color: #FFF;
  font-weight: bold;
  transition: .3s;
  cursor: pointer;
}

.moreBtn:hover {
  border: 3px solid #FFC0CB;
  color: #FFC0CB;
  background-color: #FFF;
}

.lowerCase {
  margin-top: 0px;
}

/* Header Styles */
.main-header {
    background-color: #333;
    color: #fff;
    padding: 0; /* Entfernt unnötiges Padding */
    background: linear-gradient(to right, #FFC0CB, white 50%, #FFC0CB),
              linear-gradient(to bottom, #FFC0CB, white 50%, #FFC0CB);
    background-blend-mode: multiply;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Links ausrichten */
        z-index: 1;
}

/* Navbar Grundlayout mit Flexbox */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* Für die absolute Positionierung des Menüs */
    padding: 0 20px; /* Abstand zu den Rändern */
    height: 60px; /* Höhe der Navbar */
    width: 100%; /* Fülle die gesamte Breite */

}

/* Logo-Stil */
.navbar .navbar_logo {
    display: flex;
    align-items: center;
}

.navbar .navbar_logo img {
    width: 130px;
    margin-top: 0px; /* Korrigiert die vertikale Ausrichtung */
}

.navbar .navbar_logo h3 {
    font-size: 22px;
    font-family: "Great Vibes", cursive;
    font-weight: 600;
    color: purple;
    margin-left: 10px; /* Abstand zwischen Logo und Text, falls vorhanden */
}

/* Standardstil für die Navigation */
.navbar ul {
    list-style-type: none;
    display: flex;
    gap: 1rem;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.navbar a {
    color: #000;
    padding: 0.5rem 1rem;
}

.navbar a:hover {
      background-color: rgba(255, 255, 255, 0.4);
      border-radius: 5px;
}

/* Stil für den mobilen Button */
.mobile-btn {
    display: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    background: none;
    border: none;
    color: #000;
}

.mobile-btn .fa {
  font-size: 30px;
}

/* Verstecke die ul in der mobilen Ansicht */
@media (max-width: 860px) {
    .mobile-btn {
        display: block;
    }

    .navbar ul {
        flex-direction: column;
        background-color: #333; /* Beispielhintergrund */
        position: absolute;
        top: 60px; /* Direkt unter der Navbar */
        left: 0;
        width: 100%;
        padding: 10px 0;
        z-index: 1000; /* Über anderen Elementen */
        opacity: 0;
        transform: translateY(-20px);
        visibility: hidden;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .navbar ul.show {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        background: linear-gradient(to right, #FFC0CB, white 50%, #FFC0CB),
                  linear-gradient(to bottom, #FFC0CB, #FFC0CB);
        background-blend-mode: multiply;
    }

    .navbar ul li {
        text-align: center;
        padding: 0px 0;
    }

    .navbar ul li a {
        color: #fff;
        font-size: 18px;
        display: block; /* Macht das a-Element zu einem Block-Level-Element */
        width: 100%; /* Nimmt 100% der Breite des li-Elements ein */
        text-align: center; /* Optional: Zentriert den Text innerhalb des a-Elements */
    }


    .navbar ul li a:hover {
        background-color: rgba(255, 255, 255, 0.4);
    }
}

/* Optional: Animation für das Menü */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Content Styles */
.content {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
    padding: 0rem;
    padding-top: 0;
    padding-bottom: 0;
}

.section {
    background-color: #fff;
    padding: 0rem;
    height: 1800px; /* Placeholder height */
    margin-bottom: 2rem;
    text-align: center;

}

/** Home **/

#home {
  height: 1100px;
  background: linear-gradient(to right, #FFC0CB, white 50%, #FFC0CB),
            linear-gradient(to bottom, #FFC0CB, rgba(255, 255, 255, 0.1), #FFC0CB);
  background-blend-mode: multiply;
}

#home h1{
 text-shadow: 0 0 10px white, 0 0 10px white, 0 0 10px white, 0 0 20px white, 0 0 30px white, 0 0 30px white, 0 0 40px white;
  margin-top: 160px;
}

#home h2{
  font-family: sans-serif;
   font-optical-sizing: auto;
   font-weight: lighter;
   font-style: normal;
   font-size: 28px;
   color: #50565A;
   letter-spacing: 1px
}

#home p {
  padding-top: 2rem;
  width: 700px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 100;
}

#home p span {
  color: #F9629F;
}

#home .ctaStart {
  margin-top: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#home .ctaStart .ctaBorder {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.4);
}

#home .ctaStart a {
}

#home .ctaStart i {
  font-size: 42px;
}

@media screen and (max-width: 800px) {
  #home p {
    padding-top: 2rem;
    width: 600px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 100;
  }
}

@media screen and (max-width: 700px) {



  #home p {
    padding-top: 2rem;
    width: 500px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 100;
  }
}


@media screen and (max-width: 620px) {

  #home h1{
    font-size: 85px;
  }

}



@media screen and (max-width: 580px) {

  #home h1{
    font-size: 75px;
  }



  #home p {
    padding-top: 2rem;
    width: 90%;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 100;
  }
}


@media screen and (max-width: 560px) {

  #home {
    height: 800px;
  }

  #home h1{
    margin-bottom: 0px;
      margin-top: 120px;
  }

  #home .ctaStart {
    margin-top: 90px;
  }


  #home .ctaStart .ctaBorder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.6);
  }

  #home .ctaStart i {
    font-size: 27px;
  }

}

@media screen and (max-width: 500px) {

  #home h1{
    font-size: 65px;
  }


  #home h2{
    font-family: sans-serif;
     font-optical-sizing: auto;
     font-weight: lighter;
     font-style: normal;
     font-size: 24px;
     color: #50565A;
     letter-spacing: normal;
  }

  #home p {
    padding-top: 2rem;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 100;
  }
}






@media screen and (max-width: 440px) {

  #home h1{
   font-size: 55px;
   overflow-wrap: break-word;
  }

  #home h2{
    font-family: sans-serif;
     font-optical-sizing: auto;
     font-weight: lighter;
     font-style: normal;
     font-size: 22px;
     color: #50565A;
     letter-spacing: normal;
  }


}





@media screen and (max-width: 410px) {


  #home h2{
    font-family: sans-serif;
     font-optical-sizing: auto;
     font-weight: lighter;
     font-style: normal;
     font-size: 20px;
     color: #50565A;
     letter-spacing: normal;
  }

  #home p {
    padding-top: 2rem;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 100;
  }
}



@media screen and (max-width: 380px) {


    #home h1{
     font-size: 50px;
     overflow-wrap: break-word;
    }


}



@media screen and (max-width: 340px) {


    #home h1{
     font-size: 45px;
     overflow-wrap: break-word;
    }

    #home h2{
      font-family: sans-serif;
       font-optical-sizing: auto;
       font-weight: lighter;
       font-style: normal;
       font-size: 18px;
       color: #50565A;
       letter-spacing: normal;
    }
}




/** ABOUT **/

#about {
  height: 1800px;
  background: linear-gradient(to right, #FFC0CB, white 50%, #FFC0CB),
            linear-gradient(to bottom, #FFC0CB, #FFC0CB);
  background-blend-mode: multiply;
}

#about h1 {
  color: #FFF;
}

#about h2 {
  color: #FFF;
}

#about p {
  padding-top: 2rem;
  width: 700px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 100;
  color: #FFF;
}

#about p span {
  color: #F9629F;
}


#about .aboutLowerBody {
  background-color: none;
  margin-top: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}


#about .aboutLowerBody a {
  width: 300px;
  height: 60px;
}


@media screen and (max-width: 800px) {


  #about {
    height: 1830px;
  }



  #about p {
    padding-top: 2rem;
    width: 600px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 100;
  }

  .imageSlider {
    width: 600px!important;
    height: 400px;
  }
}




@media screen and (max-width: 700px) {

  #about p {
    padding-top: 2rem;
    width: 500px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 100;
    color: #FFF;
  }



  #about .imageSlider{
    width: 500px!important;
    height: 333.336px;
  }

}



@media screen and (max-width: 600px) {


  #about {
    height: 1860px;
  }


  #about p {
    padding-top: 2rem;
    width: 90%;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 100;
    color: #FFF;
  }


  #about .imageSliderContainer {
    margin-top: 150px;
  }



  #about .imageSlider{
    width: 400px!important;
    height: 266.664px;
  }

}



@media screen and (max-width: 500px) {

  #about {
    height: 1720px;
  }


  #about p {
    padding-top: 2rem;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 100;
    color: #FFF;
  }


  #about .imageSliderContainer {
    margin-top: 100px!important;
  }


  #about .imageSlider{
    width: 360px!important; /* +20% */
    height: 240px;
  }

  #about .aboutLowerBody {
    background-color: none;
    margin-top: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
  }


  #about .aboutLowerBody a {
    width: 80%;
    height: 50px;
  }

}


@media screen and (max-width: 400px) {

  #about {
    height: 1520px;
  }


  #about p {
    padding-top: 2rem;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 100;
    color: #FFF;
  }






  #about .imageSlider{
    width: 300px!important;
    height: 200px;
  }

  #about .aboutLowerBody {
    background-color: none;
    margin-top: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #about .aboutLowerBody a {
    width: 75%;
    height: 45px;
  }

}



@media screen and (max-width: 320px) {

  #about {
    height: 2200px;
  }


  #about p {
    padding-top: 2rem;
    width: 200px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 100;
    color: #FFF;
  }



  #about .imageSlider{
    width: 200px!important;
    height: 133.3344px;
  }


  #about .aboutLowerBody a {
    width: 180px;
    height: 40px;
  }

}












/** Leistungen **/

#leistungen {
  height: 2000px;
  background: linear-gradient(to right, #FFC0CB, white 50%, #FFC0CB),
            linear-gradient(to bottom, #FFC0CB, #FFC0CB);
  background-blend-mode: multiply;
}


#leistungen h1 {
  color: #FFF;
}

#leistungen h2 {
  color: #FFF;
}

#leistungen p {
  color: #FFF;
}


#leistungen .offer-container {
  height: 600px;
  width: 1300px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 2fr;
  grid-column-gap: 0px;
  grid-row-gap: 110px;
  margin: 0 auto;
  margin-top: 200px;
}

#leistungen .offer-container .card{
    height: 550px;
    width: 300px;
    border: 4px solid #FFF;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border-radius: 15px;

    transition: .3s;
}

#leistungen .offer-container .card:hover {
  transform: scale(1.01);
  box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}

#leistungen .offer-container .card .cardHead {
  height: 70px;
  border-bottom: 3px solid #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

#leistungen .offer-container .card .cardHead h2 {
  font-size: 38px;
  font-weight: 600;
}

#leistungen .offer-container .card .cardBody {
  height: 400px;
  border-bottom: 3px solid #FFF;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#leistungen .offer-container .card .cardFooter {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1400px) {
  #leistungen .offer-container {
    height: 600px;
    width: 1100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 110px;
    margin: 0 auto;
    margin-top: 200px;
  }
}

@media screen and (max-width: 1300px) {
  #leistungen .offer-container {
    height: 600px;
    width: 900px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 110px;
    margin: 0 auto;
    margin-top: 200px;
  }

  #leistungen .offer-container .card{
    height: 450px;
    width: 250px;
    border: 4px solid #FFF;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;

    border-radius: 15px;
  }

  #leistungen .offer-container .card .cardHead {
    height: 50px;
    border-bottom: 3px solid #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #leistungen .offer-container .card .cardBody {
    height: 340px;
    border-bottom: 3px solid #FFF;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #leistungen .offer-container .card .cardBody p {
        font-size: 15px;
  }

  #leistungen .offer-container .card .cardFooter {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }


  #leistungen .offer-container .card .cardFooter .moreBtn {
    width: 130px;
    height: 34px;
    border: 3px solid #FFF;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    color: #FFF;
    font-weight: bold;
    transition: .3s;
    cursor: pointer;
  }



}

@media screen and (max-width: 916px) {
  #leistungen .offer-container {
    height: 600px;
    width: 700px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 110px;
    margin: 0 auto;
    margin-top: 200px;
  }

  #leistungen .offer-container .card{
    height: 360px;
    width: 200px;
    border: 4px solid #FFF;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;

    border-radius: 15px;
  }

  #leistungen .offer-container .card .cardHead {
    height: 40px;
    border-bottom: 3px solid #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #leistungen .offer-container .card .cardHead h2 {
    font-size: 28px;
    font-weight: 600;
  }

  #leistungen .offer-container .card .cardBody {
    height: 272px;
    border-bottom: 3px solid #FFF;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #leistungen .offer-container .card .cardBody p {
        font-size: 13px;
  }

  #leistungen .offer-container .card .cardFooter {
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #leistungen .offer-container .card .cardFooter .moreBtn {
    width: 110px;
    height: 28px;
    border: 2px solid #FFF;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    color: #FFF;
    font-weight: normal;
    transition: .3s;
    cursor: pointer;
    font-size: 12px;
    padding-top: 3px;
  }
}

@media screen and (max-width: 716px) {
  #leistungen .offer-container {
    height: 600px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 3fr;
    grid-column-gap: 0px;
    grid-row-gap: 50px;
    margin: 0 auto;
    margin-top: 200px;
  }

  #leistungen .offer-container .card{
    height: 432px;
    width: 240px;
    border: 4px solid #FFF;
    margin: 20px auto;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;

    border-radius: 15px;
  }

  #leistungen .offer-container .card .cardHead {
    height: 48px;
    border-bottom: 3px solid #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #leistungen .offer-container .card .cardHead h2 {
    font-size: 28px;
    font-weight: 600;
  }

  #leistungen .offer-container .card .cardBody {
    height: 326px;
    border-bottom: 3px solid #FFF;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #leistungen .offer-container .card .cardBody p {
        font-size: 13px;
  }

  #leistungen .offer-container .card .cardFooter {
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #leistungen .offer-container .card .cardFooter .moreBtn {
    width: 110px;
    height: 28px;
    border: 2px solid #FFF;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    color: #FFF;
    font-weight: normal;
    transition: .3s;
    cursor: pointer;
    font-size: 12px;
    padding-top: 3px;
  }
}



@media screen and (max-width: 580px) {
  #leistungen .offer-container {
    height: 600px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 3fr;
    grid-column-gap: 0px;
    grid-row-gap: 50px;
    margin: 0 auto;
    margin-top: 200px;
  }

  #leistungen .offer-container .card{
    height: 360px;
    width: 220px;
    border: 4px solid #FFF;
    margin: 20px auto;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;

    border-radius: 15px;
  }

  #leistungen .offer-container .card .cardHead {
    height: 40px;
    border-bottom: 3px solid #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #leistungen .offer-container .card .cardHead h2 {
    font-size: 28px;
    font-weight: 600;
  }

  #leistungen .offer-container .card .cardBody {
    height: 270px;
    border-bottom: 3px solid #FFF;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #leistungen .offer-container .card .cardBody p {
        font-size: 13px;
  }

  #leistungen .offer-container .card .cardFooter {
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #leistungen .offer-container .card .cardFooter .moreBtn {
    width: 110px;
    height: 28px;
    border: 2px solid #FFF;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    color: #FFF;
    font-weight: normal;
    transition: .3s;
    cursor: pointer;
    font-size: 12px;
    padding-top: 3px;
  }
}





@media screen and (max-width: 480px) {
  #leistungen .offer-container {
    height: 600px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 3fr;
    grid-column-gap: 0px;
    grid-row-gap: 50px;
    margin: 0 auto;
    margin-top: 200px;
  }

  #leistungen .offer-container .card{
    height: 330px;
    width: 180px;
    border: 4px solid #FFF;
    margin: 20px auto;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;

    border-radius: 15px;
  }

  #leistungen .offer-container .card .cardHead {
    height: 30px;
    border-bottom: 3px solid #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #leistungen .offer-container .card .cardHead h2 {
    font-size: 28px;
    font-weight: 600;
  }

  #leistungen .offer-container .card .cardBody {
    height: 250px;
    border-bottom: 3px solid #FFF;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #leistungen .offer-container .card .cardBody p {
        font-size: 11px;
  }

  #leistungen .offer-container .card .cardFooter {
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #leistungen .offer-container .card .cardFooter .moreBtn {
    width: 110px;
    height: 28px;
    border: 2px solid #FFF;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    color: #FFF;
    font-weight: normal;
    transition: .3s;
    cursor: pointer;
    font-size: 12px;
    padding-top: 3px;
  }
}





@media screen and (max-width: 400px) {
  #leistungen .offer-container {
    height: 600px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 3fr;
    grid-column-gap: 0px;
    grid-row-gap: 50px;
    margin: 0 auto;
    margin-top: 200px;
  }

  #leistungen .offer-container .card{
    height: 280px;
    width: 140px;
    border: 4px solid #FFF;
    margin: 20px auto;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;

    border-radius: 15px;
  }

  #leistungen .offer-container .card .cardHead {
    height: 22px;
    border-bottom: 3px solid #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #leistungen .offer-container .card .cardHead h2 {
    font-size: 22px;
    font-weight: 600;
  }

  #leistungen .offer-container .card .cardBody {
    height: 220px;
    border-bottom: 3px solid #FFF;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #leistungen .offer-container .card .cardBody p {
        font-size: 10px;
  }

  #leistungen .offer-container .card .cardFooter {
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #leistungen .offer-container .card .cardFooter .moreBtn {
    width: 80px;
    height: 22px;
    border: 2px solid #FFF;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    color: #FFF;
    font-weight: normal;
    transition: .3s;
    cursor: pointer;
    font-size: 12px;
    padding-top: 3px;
  }
}


/*
@media screen and (max-width: 526px) {
  #leistungen .offer-container {
    height: 600px;
    width: 420px;
    grid-row-gap: 50px;
    margin-top: 200px;
  }

  #leistungen .offer-container .card{
    height: 288px;
    width: 180px;
    border: 4px solid #FFF;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;

    border-radius: 15px;
  }










  #leistungen .offer-container .card .cardHead {
    height: 32px;
    border-bottom: 3px solid #FFF;
  }

  #leistungen .offer-container .card .cardHead h2 {
    font-size: 28px;
    font-weight: 600;
  }

  #leistungen .offer-container .card .cardBody {
    height: 217.6px;
    border-bottom: 3px solid #FFF;
    padding: 12px;
  }

  #leistungen .offer-container .card .cardBody p {
        font-size: 11px;
  }

  #leistungen .offer-container .card .cardFooter {
    height: 38.4px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #leistungen .offer-container .card .cardFooter .moreBtn {
    width: 90px;
    height: 20px;
    border: 2px solid #FFF;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    color: #FFF;
    font-weight: normal;
    transition: .3s;
    cursor: pointer;
    font-size: 12px;
    padding-top: 1px;
  }


}



@media screen and (max-width: 446px) {

  #leistungen {
    height: 1200px;
  }

  #leistungen h1 {
    font-size: 40px;
  }

  #leistungen .offer-container {
    height: 600px;
    width: 320px;
    grid-row-gap: 50px;
    margin-top: 120px;
  }

  #leistungen .offer-container .card{
    height: 219.427px;
    width: 137.142px;
    border: 3px solid #FFF;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;

    border-radius: 7px;
  }










  #leistungen .offer-container .card .cardHead {
    height: 24.38px;
    border-bottom: 2.5px solid #FFF;
  }

  #leistungen .offer-container .card .cardHead h2 {
    font-size: 20px;
    font-weight: 400;
  }

  #leistungen .offer-container .card .cardBody {
    height: 165.789px;
    border-bottom: 2.5px solid #FFF;
    padding: 8px;
  }

  #leistungen .offer-container .card .cardBody p {
        font-size: 9.5px;
        line-height: 13px;
  }

  #leistungen .offer-container .card .cardFooter {
    height: 29.2569px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #leistungen .offer-container .card .cardFooter .moreBtn {
    width: 80px;
    height: 16px;
    border: 2px solid #FFF;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    color: #FFF;
    font-weight: normal;
    transition: .3s;
    cursor: pointer;
    font-size: 10px;
    padding-top: 0px;
  }

}

*/

/** PREISE **/

#rezensionen {
  background: linear-gradient(to right, #FFC0CB, white 50%, #FFC0CB),
            linear-gradient(to bottom, #FFC0CB, white 50%, #FFC0CB);
  background-blend-mode: multiply;
  height: 1000px;
}

#rezensionen h1 {
  color: #FFF;
}

#rezensionen .review-slider-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 150px;
}


/* Der Rest in bei Rezensionen.css */


/** Bilder **/

#bilder {
  background: linear-gradient(to right, #FFC0CB, white 50%, #FFC0CB),
            linear-gradient(to bottom, #FFC0CB, white 50%, #FFC0CB);
  background-blend-mode: multiply;
  height: 2400px;
}


#bilder h1{
 color: #FFF;
}


#bilder .aboutLowerBody {
  background-color: none;
  margin-top: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}


#bilder .aboutLowerBody a {
  width: 300px;
  height: 60px;
}



@media screen and (max-width: 1300px) {
  #bilder {
height: 3000px;
  }
}


@media screen and (max-width: 1060px) {
  #bilder {
height: 2600px;
  }
}


@media screen and (max-width: 830px) {
  #bilder {
height: 2200px;
  }
}


@media screen and (max-width: 660px) {
#bilder {
height: 3400px;
  }


  #bilder .aboutLowerBody {
    background-color: none;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }


  #bilder .aboutLowerBody a {
    width: 300px;
    height: 60px;
  }
}




@media screen and (max-width: 460px) {
#bilder {
height: 3100px;
  }

}



@media screen and (max-width: 366px) {
#bilder {
height: 2600px;
  }

  #bilder .aboutLowerBody a {
    width: 220px;
    height: 50px;
  }

}




/** KONTAKT **/

#kontakt {
  background: linear-gradient(to right, #FFC0CB, white 50%, #FFC0CB),
            linear-gradient(to bottom, #FFC0CB, white 50%, #FFC0CB);
  background-blend-mode: multiply;
  }



  #kontakt h1 {
    color: #FFF;
  }


  #kontakt .h1x {
    margin-top: 250px;
    color: #333333;
    text-shadow: 0 0 10px white, 0 0 10px white, 0 0 10px white, 0 0 20px white, 0 0 30px white, 0 0 30px white, 0 0 40px white;
  }


/* Responsive h1x */

@media screen and (max-width: 640px) {
  #kontakt .h1x {
    font-size: 70px;
  }
}

@media screen and (max-width: 520px) {
  #kontakt .h1x {
    font-size: 50px;
  }
}



#kontakt #contact-form {
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

#kontakt #contact-form .contact-box {
  width: clamp(100px, 90%, 1000px);
  margin: 80px 50px;
  display: flex;
  flex-wrap: wrap;
}

#kontakt #contact-form .contact-links, .contact-form-wrapper {
  width: 50%;
  padding: 8% 5% 10% 5%;
}


#kontakt #contact-form .contact-links {
  background-color: #1f2e43;
  background: linear-gradient(to right, #FFC0CB, white 50%, #FFC0CB),
               linear-gradient(to bottom, #FFC0CB, #FFC0CB);
   background-blend-mode: multiply;
   position: relative;
   cursor: pointer;
  border-radius: 10px 0 0 10px;
}

#kontakt #contact-form .contact-form-wrapper {
  background-color: #ffffff8f;
  border-radius: 0 10px 10px 0;
}

@media only screen and (max-width: 800px) {
  #kontakt #contact-form .contact-links, #kontakt #contact-form .contact-form-wrapper {
    width: 100%;
  }

  #kontakt #contact-form .contact-links {
    border-radius: 10px 10px 0 0;
  }

  #kontakt #contact-form .contact-form-wrapper {
    border-radius: 0 0 10px 10px;
  }
}

@media only screen and (max-width: 400px) {
  #kontakt #contact-form .contact-box {
    width: 95%;
    margin: 8% 5%;
  }
}

#kontakt #contact-form h2 {
  color: #fff;
  font-size: clamp(30px, 6vw, 60px);
  text-align: center;
  transform: scale(.95, 1);
   letter-spacing: 15px;
}

#kontakt #contact-form .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 50px;
}

#kontakt #contact-form .link {
  margin: 10px;
  cursor: pointer;
}

#kontakt #contact-form .iconBox {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background-color: #eec0c8;
  filter: drop-shadow(2px 4px 4px #0006);
  display: flex;
  justify-content: center;
  align-items: center;
}

#kontakt #contact-form .iconBox .contactIcon{
font-size: 30px;
color: #FFF;
}


#kontakt #contact-form .iconBox .fa-phone {
  font-size: 25px;
}


#kontakt #contact-form img:hover {
  transform: scale(1.1, 1.1);
}

#kontakt #contact-form img:active {
  transform: scale(1.1, 1.1);
  filter:
    hue-rotate(220deg)
    drop-shadow(2px 4px 4px #222)
    sepia(0.3);
}

#kontakt #contact-form .form-item {
  position: relative;
}

#kontakt #contact-form label, #kontakt #contact-form input, #kontakt #contact-form textarea {
  font-family: 'Poppins', sans-serif;
}

#kontakt #contact-form label {
  position: absolute;
  top: 10px;
  left: 2%;
  color: #999;
  font-size: clamp(14px, 1.5vw, 18px);
  pointer-events: none;
  user-select: none;
}

#kontakt #contact-form input, #kontakt #contact-form textarea {
  width: 100%;
  outline: 0;
  border: 0px solid rgba(255, 255, 255, 0.5); /* 50% transparentes Weiß */
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 12px;
  font-size: clamp(15px, 1.5vw, 18px);
    resize: none;
    background-color: rgba(255, 255, 255, 0.3);
}


#kontakt #contact-form input:focus, #kontakt #contact-form textarea:focus {
  background-color: rgba(255, 255, 255, .6);
}

#kontakt #contact-form input:focus+label,
#kontakt #contact-form input:valid+label,
#kontakt #contact-form textarea:focus+label,
#kontakt #contact-form textarea:valid+label {
  font-size: clamp(13px, 1.3vw, 16px);
  color: #FFF;
  top: -20px;
  transition: all .225s ease;
}


input::placeholder,
textarea::placeholder {
    color: #FFC0CB; /* Farbe des Platzhalters */
    font-style: italic; /* Beispiel für eine andere Styling-Option */
}

#kontakt #contact-form .submit-btn {
  font-size: clamp(16px, 1.6vw, 18px);
  display: block;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  transition: 0.3s;
  background-color: transparent;
  float: right;
}

#kontakt #contact-form .submit-btn:hover {
}

#kontakt #contact-form .submit-btn:active {
  filter: sepia(0.5);
}

@media only screen and (max-width: 800px) {

  #kontakt #contact-form .contact-links {
    height: 366px;
  }

  #kontakt #contact-form h2 {
    font-size: clamp(40px, 10vw, 60px);
  }
}

@media only screen and (max-width: 400px) {
  #kontakt #contact-form h2 {
    font-size: clamp(30px, 12vw, 60px);
  }

  #kontakt #contact-form .links {
    padding-top: 30px;
  }

  #kontakt #contact-form img {
    width: 38px;
    height: 38px;
  }
}


/** FÜR GALLERY, SIEHE GALLERY.css etc. **/

/* === FOOTER === */


.main-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;

  justify-content: center;
  align-items: center;
  background-color: #333;
  color: #fff;
  padding: 1rem;
  height: 180px;
  padding-bottom: .6rem;
}

.main-footer .footer-item{
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-footer .footer-item img{
  width: 75px;
  transition: .3s;
}

.main-footer .footer-item img:hover{
 filter: invert();
}

.main-footer .footer-item span{
  font-size: 12px;
  padding: 3px;
  padding-right: 5px;
  padding-top: 0;
}


.main-footer .footer-item .footer-icon {
  font-size: 40px;
  transition: .3s;
}

.fa-whatsapp:hover {
  color: #25D366;
}

.fa-instagram:hover {
  color: orange;
}

.main-footer .footer-item h2 {
  font-size: 30px;
}

.main-footer .footer-item a {
  color: #FFF;
  transition: .3s;
}

.main-footer .footer-item a:hover {
  color: #ff1493;
}

/* Deaktivieren des Wrappers durch 'display: contents' */
.main-footer .footer-icons-wrapper {
    display: contents;
}

/* Romove Mobile-Footer */
.mobile-footer {
  display: none;
}

@media screen and (max-width: 1000px) {
  /* Romove Main-Footer */
    .main-footer {
      display: none;
    }

/* Display Mobile-Footer */
    .mobile-footer {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 gleich breite Spalten */
        grid-template-rows: auto; /* Automatische Zeilenhöhe */
        grid-gap: 10px; /* Abstand zwischen den Grid-Zellen */
        justify-items: center; /* Zentriert die Items horizontal innerhalb ihrer Zellen */
        align-items: center; /* Zentriert die Items vertikal innerhalb ihrer Zellen */
        background-color: #333;
        color: #fff;
        padding: 1rem;
        padding-bottom: .6rem;
        height: auto; /* Automatische Höhenanpassung */
    }

    /* Entfernen der bisherigen 'order'-Eigenschaften */
    .mobile-footer .footer-item {
        order: unset; /* Setzt die Order zurück */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Platzierung des zweiten Footer-Items ganz oben in der Mitte */
    .mobile-footer .footer-item:nth-child(2) {
        grid-column: 1 / -1; /* Spannt über alle drei Spalten */
        justify-self: center; /* Zentriert horizontal innerhalb der Grid-Zelle */
        align-self: start; /* Platzierung am oberen Rand der Grid-Zelle */
        position: static; /* Entfernt absolute Positionierung */
        margin-top: 0; /* Entfernt den oberen Rand */
    }

    /* Platzierung der ersten, dritten und fünften Footer-Items in einer Reihe */
    .mobile-footer .footer-item:nth-child(1) {
        grid-row: 2; /* Zweite Zeile */
        grid-column: 1; /* Erste Spalte */
    }

    .mobile-footer .footer-item:nth-child(3) {
        grid-row: 2; /* Zweite Zeile */
        grid-column: 2; /* Zweite Spalte */
    }

    .mobile-footer .footer-item:nth-child(5) {
        grid-row: 2; /* Zweite Zeile */
        grid-column: 3; /* Dritte Spalte */
    }

    /* Platzierung der vierten und sechsten Footer-Items in einer zentrierten Reihe */
    .mobile-footer .footer-item.footer-icons-wrapper {
        grid-row: 3; /* Dritte Zeile */
        grid-column: 1 / -1; /* Spannt über alle drei Spalten */
        display: flex;
        justify-content: center; /* Zentriert die Icons horizontal */
        align-items: center;
        gap: 120px; /* Abstand zwischen den Icons */
        margin-bottom: -10px;
    }

    /* Platzierung des achten Footer-Items genau mittig unten */
    .mobile-footer .footer-item:nth-child(8) {
        grid-row: 7; /* Vierte Zeile */
        grid-column: 1 / -1; /* Spannt über alle drei Spalten */
        justify-self: center; /* Zentriert horizontal innerhalb der Grid-Zelle */
        align-self: center; /* Zentriert vertikal innerhalb der Grid-Zelle */
        position: static; /* Entfernt absolute Positionierung */
        margin-top: 0; /* Entfernt den oberen Rand */
    }

    /* Platzierung der Datenschutz und Impressum Links */
    .mobile-footer .footer-item:nth-child(7) {
        grid-row: 5; /* Fünfte Zeile */
        grid-column: 1 / 2; /* Erste Spalte */
    }

    .mobile-footer .footer-item:nth-child(9) {
        grid-row: 5; /* Fünfte Zeile */
        grid-column: 3 / 4; /* Spannt über die zweite und dritte Spalte */
    }

    /* Optional: Styling für footer-items 4 und 6, falls erforderlich */
    .mobile-footer .footer-item.footer-icons-wrapper .footer-icon {
        font-size: 40px; /* Anpassung der Icon-Größe */
        color: #fff; /* Icon-Farbe */
        transition: color 0.3s ease;
    }

    .mobile-footer .footer-item.footer-icons-wrapper .footer-icon:hover {
        color: #ff1493; /* Farbe beim Hover */
    }


    .mobile-footer .footer-item img{
      width: 75px;
      transition: .3s;
    }

    .mobile-footer .footer-item img:hover{
     filter: invert();
    }

    .mobile-footer .footer-item a {
      color: #FFF;
      transition: .3s;
    }

    .mobile-footer .footer-item a:hover {
      color: #ff1493;
    }
}






@media screen and (max-width: 776px) {

  .mobile-footer {
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       background-color: #333;
       color: #fff;
       padding: 1rem;
       padding-bottom: 0.6rem;
       height: auto;
       grid-template-columns: none;
       grid-template-rows: none;
       gap: 10px;
   }

   .mobile-footer .footer-item {
       width: 100%;
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       text-align: center;
       margin-bottom: 10px;
   }


   .mobile-footer .footer-item.footer-icons-wrapper {
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: row;
   }


   .mobile-footer .footer-item:nth-child(1), .mobile-footer .footer-item:nth-child(3), .mobile-footer .footer-item:nth-child(5) {
     display: none;
   }

   .mobile-footer .footer-item:nth-child(2) {
       order: -1;
       margin-bottom: 20px;
       font-size: 24px;
   }

   .mobile-footer .footer-item:nth-child(8) {
     order: 1; /* Positioniert es zuletzt */
         margin-top: 20px; /* Mehr Abstand nach oben */
         flex-direction: row; /* Elemente in einer Reihe anordnen */
         justify-content: center; /* Horizontales Zentrieren */
         align-items: center; /* Vertikales Zentrieren */
         gap: 10px; /* Abstand zwischen den inneren Elementen */
   }

   .mobile-footer .footer-icon {
       font-size: 30px;
       margin-bottom: 5px;
   }

   .mobile-footer .footer-item img {
       width: 60px;
       transition: 0.3s;
   }

   .mobile-footer .footer-item img:hover {
       filter: invert();
   }

   .mobile-footer .footer-item a {
       color: #FFF;
       transition: 0.3s;
       font-size: 18px;
   }

   .mobile-footer .footer-item a:hover {
       color: #ff1493;
   }


}











.sub-footer {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub-footer i{
    padding-top: 18px;
    font-size: 40px;
    color: #FFF;
}






















/* Responsive Design */
@media (max-width: 768px) {
    .navbar ul {
      flex-direction: column;
    }

    .navbar ul li:hover {
      transition: .3s;
    }

    .navbar ul li:hover {
    }


    #home {}
}

/* Optional: Weitere Anpassungen für mobile Navigation */
@media (max-width: 768px) {
    .navbar ul.show {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
}
