body {
  font-size: 12pt;
  font-family: "HeadlineFont";
  color: var(--kf-text);
  background: var(--back-white);
  padding-top: 70px;
  margin: 0;
  margin-top: 11px;
}


/* ============================================================
                             NAVBAR
=============================================================== */
.nav-site {
  max-width: 1400px;
  border-radius: 0 0 30px 30px;
  box-shadow: var(--shadow-box);
  margin: 0 auto;
  padding: 0 20px 0 20px;
  position: fixed;
  inset: 0;
  height: 80px;
  background-color: var(--back-white);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 12px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.nav-brand img {
  height: 130px;
  width: auto;
  display: block;
}

.nav-links-container {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
}

.nav-links-container a {
  height: 100%;
  padding: 0 16px;
  display: flex;
  align-items: center;
  color: var(--font-Links);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
}

.nav-links-container a:hover,
.nav-links-container a:focus-visible {
  color: var(--kf-primary-dark);
}

#nav-sidebar-active {
  display: none;
}

.nav-icon-button {
  display: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  line-height: 0;
}

.nav-icon-button:hover {
  background: var(--Icon-hover);
}

.nav-icon-button svg {
  width: 28px;
  height: 28px;
  fill: var(--kf-primary);
}

#nav-overlay {
  display: none;
}

@media (max-width: 850px) {
  .nav-icon-button.open {
    display: inline-flex;
    margin-left: auto;
    z-index: 1100;
  }

  .nav-links-container {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 78px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background-color: var(--back-taupe);
    box-shadow: var(--shadow-box);
    transition: right 0.4s ease-in-out;
    z-index: 1050;
    overflow-y: auto;
  }

  .nav-links-container a {
    width: 100%;
    height: auto;
    padding: 16px 20px;
  }

  .nav-icon-button.close {
    display: inline-flex;
    align-self: flex-end;
    margin: 8px 8px 0 0;
  }

  #nav-sidebar-active:checked ~ #nav-overlay {
    display: block;
    position: fixed;
    inset: 80px 0 0 0;
    background: var(--Overl_color);
    z-index: 1000;
  }

  #nav-sidebar-active:checked ~ .nav-links-container {
    right: 0;
  }
}


/* ============================================================
                             Welcome
=============================================================== */
#welcome {
  position: relative;
  margin-top: 0;
  width: 100%;
  aspect-ratio: 100/40;
  overflow: hidden;
}

.welc-ImageTop {
  width: 100%;
  height: 98%;
  object-fit: cover;
  object-position: center 60%;
  -webkit-mask: url("Images/cover_3.png") center / cover no-repeat;
  mask: url("Images/cover_3.png") center / cover no-repeat;
}

.welc-shadow {
  width: 100%;
  height: 30%;
  position: absolute;
  bottom: 0;
  background-color: var(--back-taupe);
  -webkit-mask: url("Images/cover_1.png") bottom / cover no-repeat;
  mask: url("Images/cover_1.png") bottom / cover no-repeat;
}

.welc-Container {
  position: absolute;
  bottom: 18%;
  left: 5%;
  color: var(--text-color);
  text-shadow: var(--shadow-sm);
}

.welc-Title1 {
  font-family: "MyBodyFont";
  font-weight: bolder;
  font-style: italic;
  font-size: clamp(1.4rem, 5vw, 5rem);
  margin: 0;
}

.welc-Title2 {
  font-family: "MyBodyFont";
  font-weight: bold;
  font-style: italic;
  font-size: clamp(0.8rem, 2.5vw, 3rem);
  margin-top: 20px;
}

@media (max-width: 700px) {
  #welcome {
    aspect-ratio: 10/6;
  }
}


/* ============================================================
                            Unsere Gottesdienste
=============================================================== */
#worship {
  background-color: var(--back-white);
  display: flex;
  justify-content: center;
  align-items: center;
}

.worship-Container {
  width: 90%;
  padding: 4% 2%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.worship-Container h1 {
  font-size: clamp(1.5rem, 4vw, 3.8rem);
  margin-top: 0;
}

.worship-Container h2 {
  font-size: clamp(1.2rem, 3vw, 3rem);
  margin-bottom: 2%;
}

#worship p {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 130%;
  text-align: center;
}


/* ============================================================
                            About us
=============================================================== */
.about_us {
  padding: 100px 30px 70px;
  background-color: var(--back-grey);
  display: flex;
  justify-content: center;
}

.about-cross {
  min-width: 20%;
  border: 2px solid var(--kf-primary-dark);
  border-radius: 20px;
  object-fit: cover;
  overflow: hidden;
}

.about-container {
  width: 90%;
  padding: 3%;
  background-color: var(--back-white);
  border: 2px solid var(--kf-primary-dark);
  border-radius: 20px;
  margin: 0 20px;
  display: flex;
  flex-direction: column;
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  text-align: justify;
  line-height: 130%;
}

.about_text {
  color: var(--kf-primary-dark);
  font-weight: bold;
}

.about_linkcontainer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.about_linkcontainer span {
  font-size: clamp(0.7rem, 2.1vw, 0.9rem);
}

.about_linkcontainer b {
  font-size: clamp(1.3rem, 2.5cqw, 5rem);
}

.about_link img,
.about-bekenntnis {
  padding: 8px 16px;
  background-color: var(--back-grey);
  border: 2px solid var(--kf-primary-dark);
  border-radius: 10px;
  height: 60px;
  display: block;
}

.about-bekenntnis {
  padding: 10px 30px 15px;
  width: auto;
  font-size: clamp(1.1rem, 2cqw, 1.5rem);
  font-weight: bolder;
  text-decoration: none;
  color: var(--font-Links);
}

.about_link img:hover,
.about-bekenntnis:hover {
  background-color: var(--back-taupe);
}

@media (max-width: 1400px) {
  .about-cross {
    display: none;
  }
}

@media (max-width: 1050px) {
  .about_us {
    flex-direction: column;
    align-items: center;
    padding: 30px 10px 60px;
  }

  .about-container {
    margin-top: 30px;
  }
}


/* ============================================================
                             Vision
=============================================================== */
.Vision-Container {
  padding: 100px 30px 70px;
  background-color: var(--back-white);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5%;
}

.Vision_Grafik {
  width: 45%;
  height: 45%;
  margin-left: 30px;
}

.Vision-container1 {
  display: flex;
  margin-right: 30px;
  flex-direction: column;
  width: 90%;
  background-color: var(--back-white);
  border: 2px solid var(--kf-primary-dark);
  border-radius: 20px;
  padding: 3%;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  text-align: justify;
  line-height: 130%;
}

.vision_span1 {
  font-weight: bold;
  color: var(--kf-primary-dark);
}

@media (max-width: 1100px) {
  .Vision-Container {
    flex-direction: column;
    align-items: center;
    padding: 100px 10px;
  }

  .Vision-container1 {
    margin-right: 0;
  }

  .Vision_Grafik {
    margin-left: 0;
    margin-bottom: 60px;
    width: 65%;
    height: 65%;
  }
}


/* ============================================================
                             Adresse & Kontakt
=============================================================== */
#adressContact {
  display: flex;
  justify-content: flex-start;
  gap: 8%;
  align-items: start;
  background-color: var(--back-grey);
  font-size: 20px;
}

.adrcon-Image {
  max-width: 33%;
  height: auto;
  margin: 0;
  aspect-ratio: 10/7;
  object-fit: cover;
}

.adrcon-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  background-color: var(--back-grey);
  width: 66%;
}

.adrcon-text {
  margin: 7%;
  width: 45%;
}

@media (max-width: 1100px) {
  .adrcon-container {
    flex-direction: column;
    font-size: 20px;
  }

  .adrcon-Image {
    max-width: 50%;
  }

  .adrcon-text {
    margin: 1%;
  }

  .adrcon-container h2 {
    margin-bottom: 2%;
  }
}

@media (max-width: 850px) {
  #adressContact {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .adrcon-Image {
    aspect-ratio: 10/3;
    object-position: center 13%;
    max-width: 100%;
    width: 100%;
    display: block;
  }

  .adrcon-container {
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 30px;
    width: 100%;
  }
}

@media (max-width: 500px) {
  .adrcon-Image {
    aspect-ratio: 10/5;
  }

  .adrcon-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 16px;
  }
}


/* ============================================================
                           Footer
=============================================================== */
.footer_container {
  background-color: var(--back-footer);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 30px;
}

.footer_headline {
  color: var(--text-color);
  font-size: 16px;
}

.footer_cont_row {
  display: flex;
  gap: 100px;
}

.footer_cont_column {
  display: flex;
  flex-direction: column;
}

footer img {
  width: 200px;
  margin: 0 150px;
}

.footer_Link {
  display: flex;
  align-items: center;
  width: 230px;
  height: 40px;
  font-size: 18px;
  text-decoration: none;
  color: var(--text-color);
}

.footer_Link:hover {
  background-color: var(--font-Links-background);
}

@media (max-width: 1100px) {
  .footer_cont_row {
    gap: 30px;
  }

  footer img {
    width: 150px;
    margin: 0 50px;
  }
}

@media (max-width: 850px) {
  footer img,
  .footer_cont_column2 {
    display: none;
  }
}





/* ============================================================
===============================================================
                  Datenschutz / Impressum
===============================================================
=============================================================== */

#legal_main{
  display: flex;
  justify-content: center;
  align-items: center;
   font-size: 1.25rem;
}


.legal_background{
  max-width: 1330px;
  width: 90%;
  min-height: 1000px;
  background-color: var(--back-grey);
  padding: 3%;
  border-radius: 10px;
  box-shadow: var(--shadow-box);
}


