@charset "UTF-8";
/** Color Variables */
/** Breakpoints */
/** 1200px oder schmaler */
/** 992px oder schmaler */
/** 768px oder schmaler */
/** 576px oder schmaler */
/* Fira Sans */
/* fira-sans-regular - latin */
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  src: url("../fonts/fira_sans/woff2/fira-sans-v17-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-sans-italic - latin */
@font-face {
  font-family: "Fira Sans";
  font-style: italic;
  font-weight: 400;
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  src: url("../fonts/fira_sans/woff2/fira-sans-v17-latin-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-sans-600 - latin */
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/fira_sans/woff2/fira-sans-v17-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-sans-600italic - latin */
@font-face {
  font-family: "Fira Sans";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/fira_sans/woff2/fira-sans-v17-latin-600italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-sans-700 - latin */
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/fira_sans/woff2/fira-sans-v17-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-sans-700italic - latin */
@font-face {
  font-family: "Fira Sans";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/fira_sans/woff2/fira-sans-v17-latin-700italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-sans-900 - latin */
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/fira_sans/woff2/fira-sans-v17-latin-900.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* Poppins */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../fonts/poppins/Poppins-ExtraLight.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/poppins/Poppins-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/poppins/Poppins-Bold.ttf") format("truetype");
}
/* Zeyada */
@font-face {
  font-family: "Zeyada";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/zeyada/Zeyada-Regular.ttf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  line-height: 0;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-size: 1rem;
  line-height: 1.6rem;
  margin: 0;
  padding: 0;
  color: #2D4146;
  background-color: #FFFFFF;
  background-size: cover;
}

a {
  text-decoration: none;
  color: #2D4146;
  padding: 0;
}

h1, h2 {
  text-transform: uppercase;
  font-weight: 400;
}

h1 {
  font-size: 1.4rem;
  letter-spacing: 0.3rem;
  padding-bottom: 0rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.2rem;
}

p {
  margin: 0.5rem 0;
}

ul {
  list-style: none;
}

.handwriting {
  font-family: "Zeyada";
  letter-spacing: 0;
}
.handwriting::after {
  content: "";
  display: block;
  width: 20rem;
  height: 3px; /*Höhe des Farbverlaufs anpassen*/
  background: linear-gradient(to right, #204146 40%, rgba(255, 66, 66, 0) 90%, transparent);
}

.btn {
  border-radius: 8px;
  border-style: none;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  height: 2.5rem;
  line-height: 1.2rem;
  list-style: none;
  margin: 0;
  outline: none;
  padding: 0.6rem 1rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: color 100ms;
  vertical-align: baseline;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.btn--light {
  color: black;
  background-color: #FFFFFF;
}

.btn--light:hover,
.btn--light:focus {
  background-color: #F4F4F4;
}

.btn--dark {
  color: #FFFFFF;
  background-color: #204146;
}

.btn--dark a {
  color: #FFFFFF;
}

.btn--dark:hover,
.btn--dark:focus {
  background-color: #204146;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

.container {
  max-width: 75rem;
  margin: 0px auto;
  padding: 0 2rem;
}
@media (max-width: 62em) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 48em) {
  .container {
    padding: 0 1rem;
  }
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  line-height: 1.1rem;
  background: #FFFFFF;
  /* Die Navigation wird .active, wenn auf der Seite etwas nach unten gescrollt wird
  Damit wird bewirkt, dass der Header etwas gestaucht wird */
}
.header.active > .container {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.header.active .header__link-image {
  height: 2rem;
  transition: all 0.3s ease-in-out;
}
.header > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  padding-top: 1.2rem;
  padding-bottom: 0.6rem;
  transition: all 0.3s ease-in-out;
}
.header__link .header__link-image {
  fill: #2D4146;
  height: 4rem;
  transition: all 0.3s ease-in-out;
}
.header__link:hover .cls-1 {
  transition: all 0.3s ease-in-out;
  fill: #204146;
}
.header__link:hover .cls-2 {
  transition: all 0.3s ease-in-out;
  fill: #204146;
}

/* Navbar */
.navbar {
  /* border: 2px solid blue; */
}
.navbar__list {
  display: flex;
  justify-content: flex-start;
  gap: 0 1rem;
  align-items: center;
}
.navbar__item {
  font-weight: 400;
  text-transform: uppercase;
  /* border: 2px solid yellow; */
}
.navbar__item:last-child {
  padding-right: 0;
}
.navbar__link {
  text-align: center;
  text-wrap: nowrap;
  /* border: 1px solid red; */
  transition: all 0.3s ease-in-out;
}
.navbar__link:hover {
  color: #204146;
}
.navbar__link.active {
  color: #204146;
}
.navbar__link i {
  margin-right: 0.5rem;
}
@media (max-width: 75em) {
  .navbar__list {
    font-size: 0.9rem;
  }
}
@media (max-width: 62em) {
  .navbar__list {
    display: none;
  }
}

.navbar a {
  display: block;
}

/* Hamburger Button */
.hamburger-button {
  position: relative;
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1000;
}
.hamburger-button__hamburger-line {
  width: 30px;
  height: 3px;
  background: #333;
  margin: 6px 0;
}

/* Media Queries */
@media (max-width: 62em) {
  .hamburger-button {
    display: block;
  }
}
/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: #F4F8FF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  transition: max-height 0.3s ease-in-out;
  right: 0;
  top: 5rem;
  max-height: 0;
  overflow: hidden;
  background-color: #F4F8FF;
}
.mobile-menu--active {
  right: 0;
  max-height: 100vh;
}
.mobile-menu__list {
  font-weight: 400;
  margin-top: 6rem;
  padding-left: 3rem;
  padding-right: 0.6rem;
}
.mobile-menu__item {
  display: block;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  line-height: 4.5rem;
}
.mobile-menu__link {
  color: #204146;
  font-size: 1.2rem;
  transition: 0.3s;
}

footer {
  padding: 0;
  margin: 0;
  margin-top: auto;
  padding-top: 2rem;
  color: #FFFFFF;
  background-color: #204146;
}

.footer {
  padding: 1rem;
  margin-bottom: 2rem;
  /*
  &__logo {
      width: 12rem;

      @media (max-width: $breakpoint-md) {
          width: 100%;
          text-align: center;
          margin-bottom: 3.6rem;

          &-image {
              width: 12rem;
          }
      }

      @media (max-width: $breakpoint-sm) {
          width: 8rem;
          margin-bottom: 3.6rem;
      }
  }
  */
}
.footer__contact {
  text-align: right;
}
.footer__contact-email {
  margin-bottom: 1.6rem;
}
.footer__contact-email a {
  color: #FFFFFF;
}
.footer__contact-social {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 0.8rem;
}
.footer__contact-social-item {
  width: 2rem;
}
@media (max-width: 48em) {
  .footer__contact-social {
    justify-content: center;
  }
  .footer__contact-social-item {
    width: 3.5rem;
  }
}
@media (max-width: 48em) {
  .footer__contact {
    text-align: center;
  }
}

.legal {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 400;
}
@media (max-width: 48em) {
  .legal {
    font-size: 0.8rem;
  }
}
.legal a {
  color: #FFFFFF;
}

.gallery {
  padding: 1.6rem 0;
}

.gallery_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.6rem;
  justify-content: center;
}
@media (max-width: 62em) {
  .gallery_items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 48em) {
  .gallery_items {
    grid-template-columns: repeat(1, 1fr);
  }
}

.gallery_item {
  text-align: center;
  /*border-top: 2px solid $dark-background-color;*/
}

/* Das Overlay */
.lightbox {
  display: none; /* Erstmal unsichtbar */
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9); /* Dunkler Hintergrund */
  justify-content: center;
  align-items: center;
}

/* Das vergrößerte Bild */
.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  animation: zoom 0.3s; /* Kleiner Animationseffekt */
}

@keyframes zoom {
  from {
    transform: scale(0.7);
  }
  to {
    transform: scale(1);
  }
}
/* Der Schließen-Button */
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

/* Deine Miniaturansichten */
.zoom-img {
  cursor: pointer;
  transition: 0.3s;
}

.zoom-img:hover {
  opacity: 0.7;
}

/* About Me */
.about {
  display: flex;
  gap: 2rem;
  padding: 2rem;
}
.about_image {
  flex: 1;
}
.about_image--portrait {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.8rem;
  /*box-shadow: 4px 4px 6px 3px rgba(229,210,204,0.71);
  -webkit-box-shadow: 4px 4px 6px 3px rgba(229,210,204,0.71);
  -moz-box-shadow: 4px 4px 6px 3px rgba(229,210,204,0.71);*/
}
.about_desc {
  padding: 0 0.8rem;
  flex: 2;
}
@media (max-width: 48em) {
  .about {
    flex-direction: column;
    align-items: center;
  }
}

.contact {
  font-weight: 400;
  padding: 1.6rem 0;
}
.contact h2 {
  border-bottom: 1px solid #2D4146;
  margin-bottom: 0.8rem;
}
.contact__address, .contact__responsibility, .contact__copyright {
  margin: 3.2rem 0;
}/*# sourceMappingURL=main.css.map */