/* Global Settings */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  font-family: Inter Tight Light, sans-serif !important;
  font-size: 16px;
  letter-spacing: 1.5px;

}

.scrollbody {
  overflow: hidden !important;

}

/* Startpage */

#startpage {
  width: 100%;
  height: 100%;
}

.startpage-container {
  width: 100%;
  height: 92%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: url("../img/startpage.jpg");
  background-size: cover;
  background-attachment: scroll;
  background-repeat: no-repeat;
}

#startpage-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 60%;
}

.subtitle {
  width: 90%;
  padding: 1rem;
  text-align: center;
  background-color: white;
  font-family: Inter Tight Light, sans-serif;
  text-transform: uppercase;
  border-radius: 15px;
  color: rgba(135, 139, 48, 255);
  font-weight: 600;
}

.subtitle>span {
  color: rgba(53, 64, 92, 255);
}

.slogan {
  width: 60%;
  padding: 1rem;
  text-align: center;
  background-color: rgba(53, 64, 92, 255);
  font-family: Inter Tight Light, sans-serif;
  border-radius: 0 0 15px 15px;
  position: relative;
  left: -8%;
  font-size: 20px;
  color: white;
  font-weight: 400;
}

.slogan>span {
  font-size: 22px;
  font-weight: 1000;
}

/* Navbar Container */

#navbar-container {
  width: 100%;
  height: 8%;
  background-color: rgba(53, 64, 92, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

#navbar-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;

}

/* Logo */
#logo {
  display: flex;
  white-space: nowrap;
  font-family: Inter Tight Light, sans-serif;
  text-transform: uppercase;
  color: white;
  font-size: 20px;
  font-weight: 600;
}

/* Hamburger Icon Navbar*/

#hamburger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  z-index: 8888;
}

.bar1,
.bar2,
.bar3 {
  width: 40px;
  height: 5px;
  background-color: white;
  margin: 3px 0;
  transition: .5s;
}

.change .bar1 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg) translate(8px, 9px);
  background-color: rgb(255, 255, 255);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg) translate(5.8px, -7.5px);
  background-color: rgb(255, 255, 255);
}

.change:hover .bar1 {
  opacity: 1;
}

.change:hover .bar3 {
  opacity: 1;
}

/* Navigation Bar Top */
#navbartop {
  height: 100%;
  position: relative;
  background-color: rgba(53, 64, 92, 255);
  text-transform: uppercase;
  display: none;
}

#navbartop>ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

}

#navbartop>ul>li {
  list-style: none;
  font-size: 1rem;
  padding: 1rem;
}

#navbartop>ul>li>a {
  text-decoration: none;
  color: white;
  text-align: center;
  cursor: pointer;
}


/* Navigation Bar Fullscreen */

#navbarfull {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 8888;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(53, 64, 92, 255);
  color: white;
  visibility: hidden;
  opacity: 0;
}

#navbarfull>ul>li {
  list-style: none;
  font-size: 1.5rem;
  position: relative;
}

#navbarfull>ul>li>a {
  text-decoration: none;
  display: block;
  padding: 8px;
  margin: 8px;
  color: white;
  text-align: center;
  cursor: pointer;
}

#navbarfull>ul>li:hover,
#navbarfull>ul>li:active {
  opacity: 1;
}

.show {
  opacity: 1 !important;
  visibility: visible !important;
  transition: 1s;
}

/* Grußwort */

#grußwort {
  width: 100%;
  background-color: rgba(53, 64, 92, 255);
  padding: 1.5rem;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

#grußwort-content {
  width: 100%;
}

#grußwort-titel {
  font-size: 28px;
  font-weight: bold;
  padding: 1rem 0 1rem 0;
}

#grußwort-bild {
  padding: 1.5rem 0 0 0;
}

#grußwort-bild>img {
  width: 80%;
}

#grußwort-bild>img:hover {
  transform: scale(1.1);
}


#grußwort-text>p>span {
  font-family: 'Allura', cursive;
  font-size: 2.2em;
  font-weight: normal;
}

/* Balken */
#balken {
  width: 100%;
  height: 3%;
  background-color: rgba(135, 139, 48, 255);
}

/* Über mich */
#übermich {
  width: 100%;
  background-color: white;
  padding: 1.5rem;
  color: rgba(53, 64, 92, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
}

#übermich-titel {
  font-size: 30px;
  text-align: center;
  padding: 2rem 0 2rem 0;
  margin: -1.5rem -1.5rem 0 -1.5rem;
}

#übermich-content>ul {
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

#übermich-content>ul>li {
margin: .5rem;
}


#übermich-subtitle {
  text-transform: uppercase;
  font-weight: 600;
  margin: 1rem 0 .5rem 0;
}

#motto {
  font-size: 20px;

}

#motto>span {
  font-weight: 700;
}

#übermich-bilder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

#übermich1-bild {
  background-image: url("../img/uebermicheins.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 1rem;
  width: 100%;
  height: 215px;
}

#übermich1-bild:hover {
  transform: scale(1.1);
}

#übermich2-bild {
  background-image: url("../img/uebermichzwei.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 1rem;
  width: 100%;
  height: 200px;
}

#übermich2-bild:hover {
  transform: scale(1.1);
}

/* Wofür ich stehe */
#wofürichstehe {
  width: 100%;
  background-color: rgba(53, 64, 92, 255);
  padding: 1.5rem;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#wofürichstehe-content {
  width: 100%;
}

#wofürichstehe-titel {
  font-size: 30px;
  text-align: center;
  padding: 1rem 0 1rem 0;
}

#wofürichstehe-text {
  display: flex;
  align-items: center;
  flex-direction: column;
}

#wofürsäule {
  font-size: 26px;
  margin: 2rem 0 2rem 0;
}

#wofürbutton {
  width: 100%;
  margin: 1rem 1rem 0 1rem;
  padding: 2rem 2rem 1rem 2rem;
  border-radius: 15px;
  border-style: hidden;
  cursor: pointer;
  font-family: Inter Tight Light, sans-serif !important;
  font-size: 16px;
  letter-spacing: 1.5px;
  background-color: white;
  font-weight: 600;
  color: rgba(53, 64, 92, 255);

}

.arrow {
  font-size: 20px;
  display: inline-block;
  margin: .5rem 0 0 0;
}

#wofürbuttoninfo1,
#wofürbuttoninfo2,
#wofürbuttoninfo3 {
  display: none;
  background-color: white;
  padding: 2rem;
  margin: 1rem;
  width: 100%;
  color: rgba(53, 64, 92, 255);
  border-radius: 15px;
}

#wofürbuttoninfo1.open,
#wofürbuttoninfo2.open,
#wofürbuttoninfo3.open {
  display: block;
}

#wofürbuttoninfo1>ul>li, #wofürbuttoninfo2>ul>li, #wofürbuttoninfo3>ul>li{
  margin: 1rem;
}

/* Kontakt */
#kontakt {
  width: 100%;
  background-color: white;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#kontakt-titel {
  font-size: 30px;
  text-align: center;
  padding: 1rem 0 1rem 0;
  color: rgba(53, 64, 92, 255);
}

#kontakt-text {
  color: rgba(53, 64, 92, 255);
}

#kontakt-daten>a {
  color: white;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

#kontakt-daten {
  background-color: rgba(53, 64, 92, 255);
  color: white;
  padding: 1rem;
  margin: 1rem;
  border-radius: 15px;
}

/* Karteninfo */

#kartetitel {
  font-size: 30px;
  text-align: center;
  padding: 1rem 0 1rem 0;
  color: rgba(53, 64, 92, 255);
}


#kartecontainer {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#karte-content {
  width: 100%;
}

#karte {
  background-image: url("../img/kartehinten.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 250px;
}

#karte:hover {
  transform: scale(1.1);
}


#karte-text {
  color: rgba(53, 64, 92, 255);
}

#formkarte {
  display: flex;
  flex-direction: column;
  color: rgba(53, 64, 92, 255);
}

#formkarte>label {
  margin: 0 0 .5rem 0;
}

#name {
  margin: 0 0 .5rem 0;
  height: 50px;
  padding: 10px;
  color: rgba(53, 64, 92, 255);
  border-radius: 15px;
  border-color: rgba(53, 64, 92, 255);
  border-width: 1px;
}

#message {
  margin: 0 0 .5rem 0;
  padding: 10px;
  color: rgba(53, 64, 92, 255);
  border-radius: 15px;
  border-color: rgba(53, 64, 92, 255);
  border-width: 1px;
}

#formbutton {
  padding: 1rem;
  color: white;
  font-weight: 500;
  cursor: pointer;
  background-color: rgba(53, 64, 92, 255);
  border-radius: 15px;
  border-width: 1px;
}


/* Footer */

#footer {
  width: 100%;
  height: 150px;
  background-color: rgba(53, 64, 92, 255);
}

#footer>ul {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#footer>ul>li {
  list-style: none;
  font-size: 1rem;
  padding: 0.4rem;
}

#footer>ul>li>a {
  text-decoration: none;
  margin: 8px;
  color: white;
}

/* Modals*/

#modalimpressum,
#modaldsgvo {
  display: none;
  position: fixed;
  background-color: white;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.modaltext {
  margin: 1rem;
  font-size: 1rem;
  word-break: break-word;
  color: rgba(53, 64, 92, 255);
  display: flex;
  flex-direction: column;
  height: 80%;
}

#modalimpressum>i,
#modaldsgvo>i {
  float: right;
  font-size: 1.5rem;
  text-decoration: none;
  color: rgba(53, 64, 92, 255);
  cursor: pointer;
}

.close {
  position: absolute;
  top: 5%;
  right: 5%;
}

.closemodal {
  position: fixed;
  top: 2%;
  right: 2%;
}

.showmodal {
  display: block !important;
}



.msg {
  margin-top: 15px;
  padding: 10px;
  border-radius: 4px;
  transition: opacity 0.5s ease;
}

.success {
  background: #e0ffe0;
  border: 1px solid #0c0;
}

.error {
  background: #ffe0e0;
  border: 1px solid #c00;
}



/*Responsive*/

/*Tablet*/
@media (min-width: 768px) {
#grußwort-bild>img {
  width: 50%;
}

  #übermich1-bild {
    height: 400px;
  }

  #übermich2-bild {
    height: 375px;
  }
    #karte {
    height: 600px;
  }
}


/*Desktop*/
@media (min-width: 1024px) {

  #balken {
    height: 1.5%;
  }

  /* Logo */
  #logo {
    font-size: 25px;
  }

  #navbarfull {
    display: none;
  }

  #navbartop {
    display: flex;
  }

  #hamburger {
    display: none;
  }

  #navbar-content {
    width: 100%;
  }

  #navbar-container {
    height: 5%;
  }

  .startpage-container {
    background-image: url("../img/startpagebig.jpg");
    height: 95%;
  }

  #startpage-text {
    width: 30%;
  }

  #grußwort {
    min-height: 100%;
  }

  #grußwort-titel {
    font-size: 36px;
  }

  #grußwort-content {
    width: 60%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  #grußwort-bild>img {
    width: 35%;
  }

  #übermich {
    min-height: 100%;
  }

  #übermich-content {
    width: 60%;
    flex: 1;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }

  #übermich1-bild {
    height: 392px;
  }

  #übermich2-bild {
    height: 400px;
  }

  #übermich-bilder {
    flex-direction: row;
  }

  #wofürichstehe-titel {
    font-size: 50px;
  }

  #wofürichstehe {
    min-height: 100%;
  }

  #wofürichstehe-content {
    width: 40%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #wofürbutton {
    width: 60%;
  }

  #wofürbuttoninfo1,
  #wofürbuttoninfo2,
  #wofürbuttoninfo3 {
    width: 60%;
  }

  #kontakt-content {
    width: 30%;
  }

  #karte-content {
    width: 60%;
  }


  #footer {
    height: 8%;
  }

  #footer>ul {
    flex-direction: row;
  }
}

@media (min-width: 1440px) {

    #navbar-content {
    width: 70%;
  }
}
