/* +++++++++++++++++++++++++++ Color +++++++++++++++++++++++ */
:root {
    --primary-color: #000000;
    --secondary-color: #ffffff; 
    --pink-color: #DE0639;
    --turkis-color: #12a6a4;
}
 
.turkis {
  color: var(--turkis-color);
}

.pink {
  color: var(--pink-color);
}

.turkis-bold {
  color: var(--turkis-color);
}

.pink-bold {
  color: var(--pink-color);
}

.big {
  font-size: 1em;
   letter-spacing: 0.1em;
}

.big2 {
 
  font-size: 1em;
   letter-spacing: 0.2em;
}

.white-shadow {
  text-shadow: 2px 2px 1px #fff;
}

.black-shadow {
  text-shadow: 4px 4px 2px #000000;
}

.box-shadow-black {
  box-shadow: 4px 4px 2px #000000;
}

.milchglas {
    background: rgba(255, 255, 255, 0.167); /* Weiß mit 30 % Deckkraft */
    backdrop-filter: blur(10px); /* Unschärfe-Effekt */
    -webkit-backdrop-filter: blur(10px); /* Safari-Unterstützung */
    border-radius: 12px; /* Abgerundete Ecken */
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sanfter Schatten */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth; /* Diese CSS-Eigenschaft sorgt für sanftes Scrollen */
}

body {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #000;
    font-family: 'Lato', sans-serif;
    color: #fff;
}

main {
    flex-grow: 1; /* sorgt dafür, dass der main-Bereich die verbleibende Höhe ausfüllt */
    padding-bottom: 0px; /* Platz für den Footer */
    /*margin: 0 5%;*/
}

.flex { 
  display: flex;
  justify-content: center; 
  align-items: center;
}

.flexCol { 
  display: flex;
  flex-direction: column;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

/* +++++++++++++++++++ Überschriften, Text ++++++++++++++++++++ */
h1 {
  font-size: 3em;
  text-align: center;
  font-family: 'Roboto';
  width: 100%;
  color: #ffffff;
  padding: 30px 0;
}

h2 {
  font-size: 2.8em;
  text-align: center;
  font-weight: 800;
  color: #ffffff;
  padding: 30px 0;
}

p {
  font-size: 1.8em;
  text-align: center;
}

a {
  color: #fff;
  text-decoration: none;
  color: var(--pink-color);
}

a:hover {
    color: var(--turkis-color);
}

li {
  list-style: none;
}

.icon {
  height: 20px;  
  width: auto;             /* Die Breite des Bildes in Prozent */
  margin-left: 8px;  /* Optional: Abstand zwischen Text und Icon */
  vertical-align: middle;  /* Optional: Falls es zu einer kleinen Vertikalverschiebung kommt */
}
/*+++++++++++++++++++++++++ BUTTON LINK <a> ++++++++++++++++++++++++++++++++++++*/
.button-link {
    padding: 15px 25px;    /* Gleichmäßiger Abstand innen */
    border: 0;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.5em;
    text-shadow: none; /* Verhindert, dass der Text einen Schatten bekommt */
    display: inline-flex;  /* Flexbox auf das Element anwenden */
    align-items: center;   /* Text und Bild vertikal ausrichten */
    transition: background-color 0.3s; /* Sanfter Übergang bei Hover */
}

.button-link-turkis  {
    background-color: var(--turkis-color);
    color: #fff!important;
    box-shadow: 2px 2px 2px #094b4a;
}

.button-link-turkis:hover  {
    background-color: var(--pink-color); 
    color: #fff!important;
    box-shadow: 2px 2px 2px #6d031c;
}

.button-link-pink  {
    background-color: var(--pink-color); 
    color: #fff!important;
    box-shadow: 2px 2px 2px #6d031c;
}

.button-link-pink:hover  {
    background-color: var(--turkis-color);
    color: #fff!important;
    box-shadow: 2px 2px 2px #094b4a;
}

/*++++++++++++++++++++++++ Sticky Header +++++++++++++++++++++++++++++*/
#stickyHeader {
    position: sticky;
    top: 0; /* Der Header bleibt oben, wenn gescrollt wird */
    z-index: 1000; /* Stellen sicher, dass der Header über anderen Elementen bleibt */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional, um einen Schatteneffekt hinzuzufügen */
    width: 100%; /* Stellt sicher, dass der Header die gesamte Breite einnimmt */
    display: flex;
    align-items: center;
    min-height: 80px;
    background: #000;
    position: relative;
}

/*++++++++++++++++++++++++ Header +++++++++++++++++++++++++++++*/

header p {
  font-size: 1.3em;
}

header section {
  width: 50%;
}

#logoBox  {
  position: absolute;
  top: 20px;
  left: 15px;
  width: 40px;
  height: 40px;
}

#logoBox a {
  background-image: url("../img/logo_pink2.svg");
  display: block;
  width: 50px;
  height: 50px;
}

#logoBox a:hover {
  background-image: url("../img/logo_tuerkis.svg");
}


#logoBox img {
  width: 50px;
  height: 50px;
}

#logoBox img:hover {
  width: 50px;
  height: 50px;
}

#navBox {
  position: absolute;
  top: 25px;
  right: 15px;
  width: 40px;
  height: 40px;
}

#navBox img {
  width: 40px;
  height: 40px;
}


/*++++++++++++++++++++++++ Responsive Nav +++++++++++++++++++++++++++++*/

#navBox {
  display: flex;
  justify-content: end;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: var(--turkis-color);
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: var(--pink-color);
}

.overlay #closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  width: 40px;
  height: 40px;
}


 /*++++++++++++++++++++++++ Footer +++++++++++++++++++++++++++++*/
 footer {
  font-size: 1.2em;
  min-height: 50px; 
  height: 50px; /* Feste Höhe */
  padding: 5px;
  color: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

footer p {
    font-size: 1.2em;
}



/*++++++++++++++++++++++++ STICKY Footer +++++++++++++++++++++++++++++*/
html {
    height: 100%;
  }
  
  body {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  main {
    flex: 1;
  }


/*++++++++++++++++++++++++++++++++++++++++++ Responsive max-width: 1000px +++++++++++++++++++++++++++++++++++++++*/
@media only screen and (max-width: 1000px) {
  footer a, footer p {
      font-size: 0.9em;
  }

}

/*++++++++++++++++++++++++++++++++++++++++++ Responsive max-width: 600px +++++++++++++++++++++++++++++++++++++++*/
@media only screen and (max-width: 630px) {
  footer, footer p {
      font-size: 0.8em;
  }

}

/*++++++++++++++++++++++++++++++++++++++++++ BackToTop Button +++++++++++++++++++++++++++++++++++++++*/
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none; /* Der Button ist zuerst unsichtbar */
  padding: 10px;
  background-color: var(--pink-color);
  border: none;
  border-radius: 5px;
}

#backToTop:hover {
  color: var(--turkis-color);
}

#backToTop img {
  width: 40px;  /* Oder eine andere Größe */
  height: auto;
}