
/* == THIS IS THE MAIN STYLESHEET FOR ALL SUBPAGES @2024 - GlowWithLena ==*/


/** 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-image: url("../../../../assets/img/bg2.png");
    color: #333;
}


a {
    text-decoration: none;
    color: #333;
}

h1 {
  margin-top: 4rem;

}

.positionFixed {
  position: fixed;
  width: 100%;
}

.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);
    }
}


/*=== DEVIDER ===*/



.devider {
  height: 400px;
  width: 100%;
  background: linear-gradient(to right, #FFC0CB, white 50%, #FFC0CB),
            linear-gradient(to bottom, #FFC0CB, white 50%, #FFC0CB);
  background-blend-mode: multiply;
  font-family: sans-serif;
}

.devider .deviderInside {
 padding-top: 180px;
 padding-left: 50px;
 color: #000;
}

.devider .deviderInside h1 {
  font-size: 30px;
  letter-spacing: 5px;
}

.devider .deviderInside h2 {
  font-size: 20px;
  letter-spacing: 3px;
  color: #000;
}

.devider .deviderInside .deviderNav {
  color: #000;
  text-align: center;
}

.devider .deviderInside .deviderNav a {
  color: #000;
  text-decoration: none;
}

.devider .deviderInside .deviderNav a:hover {
  color: #000;
  text-decoration: underline;
}

.devider .deviderInside .deviderNav .activeIndex{
  color: purple;
}


@media screen and (max-width: 758px) {
  .devider .deviderInside {
   padding-top: 180px;
   padding-left: 0px;
   color: #000;
   text-align: center;
  }

  .devider .deviderInside h1 {
    font-size: 30px;
    letter-spacing: 5px;
  }

  .devider .deviderInside h2 {
    font-size: 20px;
    letter-spacing: 3px;
    color: #000;
    margin-bottom: 20px;
  }
}



/* == GALLERY / REFERENZEN == */

#references {
  background: linear-gradient(to right, #FFC0CB, white 50%, #FFC0CB),
            linear-gradient(to bottom, #FFC0CB, white 50%, #FFC0CB);
  background-blend-mode: multiply;
  margin-bottom: 32px;
  margin-top: 120px;
  padding-top: 30px;
}


#references h1{
  font-family: 'Great Vibes', sans-serif;
}







/*=== IMPRESSUM - CONTENT ===*/


#impressum {

}

#impressum .footerPage{
margin-top: 0;
height: 900px;
}


#impressum-content {
  margin-top: 200px;
  width: 900px;
  padding: 60px;
}

#impressum-content h2 {
  font-size: 30px;
}

#impressum-content h3 {
  font-size: 25px;
  margin: 0;
}
#impressum-content h4 {
  margin: 0;
  margin-top: 10px;
  margin-bottom: 30px;
}

#impressum-content p {
  color: grey;
}

#impressum-content a {
  color: #D10A10;
}

@media screen and (max-width: 1050px) {

  #impressum {
    height: auto;
  }


  #impressum-content {
    margin-top: 200px;
    width: 700px;
    padding: 60px;
  }
}


@media screen and (max-width: 850px) {

  #impressum {}


  #impressum-content {
    margin-top: 200px;
    width: 600px;
    padding: 60px;
  }
}


@media screen and (max-width: 750px) {

  #impressum {}


  #impressum-content {
    margin-top: 200px;
    width: 500px;
    padding: 60px;
  }

  #impressum .footerPage{

    height: 1500px;
  }

}


@media screen and (max-width: 630px) {

  #impressum {}




  #impressum-content {
    margin-top: 200px;
    width: 450px;
    padding: 60px;
  }

  #impressum-content a {
    color: #D10A10;
    font-size: 15px;
  }
}

@media screen and (max-width: 550px) {

  #impressum {}


  #impressum-content {
    margin-top: 200px;
    width: 350px;
    padding: 60px;
  }

}


@media screen and (max-width: 450px) {

  #impressum {}



  #impressum-content {
    margin-top: 200px;
    width: 250px;
    padding: 60px;
  }

}






/**DATENSCHUTZ**/

#datenschutz-content {
  margin-top: 200px;
  width: 900px;
  padding: 60px;
  height: 8000px;
}

#datenschutz-content h2 {
  font-size: 30px;
}

#datenschutz-content h3 {
  font-size: 25px;
  margin: 0;
}
#datenschutz-content h4 {
  margin: 0;
  margin-top: 10px;
  margin-bottom: 30px;
}

#datenschutz-content p {
  color: grey;
}

#datenschutz-content a {
  color: #D10A10;
}

@media screen and (max-width: 1050px) {

  #datenschutz {
    height: 9800px;
  }


  #datenschutz-content {
    margin-top: 200px;
    width: 700px;
    padding: 60px;
  }
}


@media screen and (max-width: 850px) {

  #datenschutz {
    height: 10800px;
  }
  #datenschutz-content {
    margin-top: 200px;
    width: 600px;
    padding: 60px;
  }
}


@media screen and (max-width: 750px) {

  #datenschutz {
    height: 12300px;
  }
  #datenschutz-content {
    margin-top: 200px;
    width: 500px;
    padding: 60px;
  }
}


@media screen and (max-width: 680px) {

  #datenschutz {
    height: 12500px;
  }
  #datenschutz-content {
    margin-top: 200px;
    width: 450px;
    padding: 60px;
  }

  #datenschutz-content a {
    color: #D10A10;
    font-size: 15px;
  }
}

@media screen and (max-width: 600px) {

  #datenschutz {
    height: 15500px;
  }
  #datenschutz-content {
    margin-top: 200px;
    width: 350px;
    padding: 60px;
  }

}


@media screen and (max-width: 500px) {

  #datenschutz {
    height: 20500px;
  }
  #datenschutz-content {
    margin-top: 200px;
    width: 250px;
    padding: 60px;
  }

}


@media screen and (max-width: 400px) {

  #datenschutz {
    height: 20500px;
  }
  #datenschutz-content {
    margin-top: 200px;
    width: 150px;
    padding: 60px;
  }

}









/* === FOOTER ===*/



/* === 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: pink;
  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: #FFC0CB;
        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: #FFC0CB;
       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;
}
