@import url('fonts.css');
@import url('bootstrap-icons.min.css');

:root {
  --bs-primary: #4bc6ff;
  --bs-secondary: #333;
}

html, body {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--bs-secondary);
  height: 100%;
}

/* TYPOGRAPHY */
h1, .h1, 
h2, .h2, 
h3, .h3, 
h4, .h4, 
h5, .h5, 
h6, .h6 {
  font-family: 'Delicious Handrawn', 'Montserrat', sans-serif;
  font-weight: 300;
  margin: 30px 0 30px 0;
  line-height: 1.25;
}
h1, .h1 {
  margin-top: 0;
  font-size: 55px;
}
h2, .h2 {
  font-size: 50px;
}
h3, .h3 {
  font-size: 45px;
}
h4, .h4 {
  font-size: 40px;
} 
h5, .h5 {
  font-size: 35px;
} 
h6, .h6 {
  font-size: 30px;
}

h1 small, .h1 small, 
h2 small, .h2 small, 
h3 small, .h3 small, 
h4 small, .h4 small, 
h5 small, .h5 small, 
h6 small, .h6 small {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0;
  font-weight: 300;
  margin-left: 30px;
}

p {
  margin: 15px 0;
  text-align: justify;
  -moz-hyphens: auto; 
  -o-hyphens: auto; 
  -webkit-hyphens: auto; 
  -ms-hyphens: auto; 
  hyphens: auto;
}

a {
  color: var(--bs-primary);
  text-decoration: none;
  transition: all .25s;
}
a:hover {
  color: var(--bs-secondary);
  text-decoration: none;
}

small {
  font-size: 65%;
  display: block;
  font-weight: 300;
}

strong,
.fw-bold {
  font-weight: 600;
}

hr {
  display: block;
  margin: 30x 0;
}

/* BACKGROUND */
.bg-primary {
  background-color: var(--bs-primary) !important;
  color: var(--bs-white);
}
.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary h5,
.bg-primary h6 {
  color: var(--bs-white);
}

.bg-secondary {
  background-color: #f3f3f3 !important;
  color: var(--bs-secondary);
}
.bg-secondary h1,
.bg-secondary h2,
.bg-secondary h3,
.bg-secondary h4,
.bg-secondary h5,
.bg-secondary h6 {
  color: var(--bs-secondary);
}

/* BUTTON */
.btn {
  border-radius: 0;
  border: none;
}
.btn-primary {
  background-color: var(--bs-primary) !important;
  color: var(--bs-white);
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #3ca0ce !important;
  color: var(--bs-white);
}

/* NAV */
.navbar {
  background-color: transparent !important;
  padding-top: 15px;
  padding-bottom: 15px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all .25s;
}
.navbar-nav {
  width: 100%;
}
.nav-item {
  width: 100%;
  text-align: center;
}
.nav-link {
  font-family: 'Delicious Handrawn', 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 32px;
  color: var(--bs-white);
  transition: all .25s;
}
.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  font-weight: 600;
  color: var(--bs-white) !important;
}
.navbar-logo {
  width: 100%;
  text-align: center;
  font-weight: 800;
  display: block;
  color: var(--bs-white) !important;
  font-size: 20px;
}
.navbar-logo:hover {
  color: var(--bs-white) !important;
}
.navbar-logo .logo {
  width: 100%;
  max-width: 100px;
  display: block;
  margin: 0 auto;
}
.navbar-logo .logo-text {
  overflow: hidden;
  height: auto;
  opacity: 1;
  font-family: 'Delicious Handrawn', 'Montserrat', sans-serif;
  font-size: 26px;
}

.navbar-toggler {
  border-radius: 0;
  border: none;
  box-shadow: none !important;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand .navbar-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.navbar-brand .navbar-logo .logo {
  width: 60px;
  margin-right: 15px;
}
.navbar-brand .navbar-logo .logo-text {
  font-size: 28px;
}

.navbar.fixed-top {
  background-color: var(--bs-primary) !important;
}

/* HEADER */
.header {
  display: block;
  position: relative;
  min-height: 650px;
  background-image: url('../img/header.jpg');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.header-img-01 {
  display: block;
  position: absolute;
  bottom: -15px;
  left: 200px;
  width: 420px;
  height: 480px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-5deg);
}
.header-img-02 {
  display: block;
  position: absolute;
  bottom: -10px;
  left: 550px;
  width: 300px;
  height: 400px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}
.header-img-03 {
  display: block;
  position: absolute;
  bottom: -10px;
  left: 700px;
  width: 400px;
  height: 400px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.header-text {
  display: block;
  position: absolute;
  bottom: 60px;
  right: 60px;
  font-size: 65px;
  color: var(--bs-secondary);
  width: 500px;
  font-family: 'Delicious Handrawn', 'Montserrat', sans-serif;
  line-height: 1.25;
}
.header-text small {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
}
.slick-fader {
  position: relative !important;
}
.slick-fader .slick-track {
  position: relative !important;
  width: 400px !important;
  height: 400px;
  display: block !important;
}
.header-img-03-item {
  display: block;
  position: absolute !important;
  left: 50% !important;
  top: 71px !important;
  transform: translateX(-50%) !important;
  margin: 0 auto !important;
  max-width: 300px;
  max-height: 200px;
  height: auto !important;
  min-height: auto !important;
  width: auto !important;
  float: none !important;
  z-index: 500 !important;
}

#header2 {
  min-height: 300px;
  background-position: center;
}
#header2 .header-text {
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

/* SECTION */
.section {
  display: block;
  position: relative;
  padding: 120px 0;
}

/* MITGLIED */
.mitglied {
  display: block;
  position: relative;
  padding: 30px 0;
  border-bottom: 1px solid var(--bs-primary);
}
.mitglied h2 {
  margin-top: 0;
  font-size: 32px;
}

/* FOOTER */
.footer {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background-color: var(--bs-white);
  background-image: url('../img/logo-footer.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 180px;
}
.footer-nav a {
  margin-right: 15px;
}
.footer-nav a:last-child {
  margin-right: 0;
}

.footer .publisher {
  display: flex;
  align-items: center;
  flex-direction: row;
  line-height: 1.25;
  color: var(--bs-secondary);
}
.footer .publisher img {
  display: block;
  width:  35px;
  margin-right: 5px;
}

/* GALERIE */
.gallery {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 1;
}
.gallery-item-a {
  display: block;
  position: relative;
  overflow: hidden;
  width: 20%;
}
.gallery-item-a::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(44,44,44,.5);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23ffffff" class="bi bi-zoom-in" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M6.5 12a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11M13 6.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0"/><path d="M10.344 11.742q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.1 6.5 6.5 0 0 1-1.398 1.4z"/><path fill-rule="evenodd" d="M6.5 3a.5.5 0 0 1 .5.5V6h2.5a.5.5 0 0 1 0 1H7v2.5a.5.5 0 0 1-1 0V7H3.5a.5.5 0 0 1 0-1H6V3.5a.5.5 0 0 1 .5-.5"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0;
  z-index: 1;
  opacity: 0;
  transition: all .5s;
}
.gallery-item-a:hover::after {
  opacity: 1;
  background-size: 80px;
}
.gallery-item-img {
  display: block;
  position: relative;
  width: 100%;
}

/* FORM */
.form-group {
  margin-bottom: 15px;
}
.form-control,
.form-select {
  border-radius: 0;
}
.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-color: var(--bs-primary);
}

.has-error .form-control,
.has-error .form-select {
  border-color: var(--bs-danger);
}
.has-error label {
  color: var(--bs-danger);
}

#danke {
  display: none;
}

/* NEWS */
.news-item {
  display: block;
  position: relative;
  color: var(--bs-secondary);
  margin-bottom: 15px;
}
.news-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
}
.news-img-detail {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.news-body {
  display: block;
  position: relative;
  padding: 15px;
}
.news-title {
  font-size: 32px;
  margin-bottom: 15px;
  line-height: 1.5;
  margin-top: 0;
}
.news-text {
  font-size: 16px;
}

/* MOBIL */
@media (max-width: 1920px) {
  /* HEADER */
  .header {
    min-height: 600px;
  }

  /* NEWS */
  .news-img-detail {
    height: 250px;
  }
}
@media (max-width: 1700px) {
  /* HEADER */
  .header-img-01 {
    left: 100px;
  }
  .header-img-02 {
    left: 450px;
  }
  .header-img-03 {
    left: 600px;
  }
  .header-text {
    width: 350px;
  }

  /* NEWS */
  .news-img-detail {
    height: 250px;
  }
}
@media (max-width: 1399.98px) {
  /* HEADER */
  .header {
    min-height: 500px;
  }
  .header-img-01 {
    left: 60px;
    width: 200px;
    height: 380px;
  }
  .header-img-02 {
    left: 300px;
    width: 200px;
    height: 300px;
  }
  .header-img-03 {
    left: 450px;
    width: 300px;
    height: 300px;
  }
  .header-img-03-item {
    max-width: 250px;
    max-height: 150px;
    top: 54px !important;
  }
  .header-text {
    width:auto;
    font-size: 45px;
  }
  .header-text small {
    font-size: 20px;
  }

  .slick-fader .slick-track {
    position: relative !important;
    width: 300px !important;
    height: 300px;
    display: block !important;
  }

  /* NEWS */
  .news-img-detail {
    height: 200px;
  }
}
@media (max-width: 1199.98px) {
  /* NEWS */
  .news-img-detail {
    height: 200px;
    margin-bottom: 20px;
  }
}
@media (max-width: 991.98px) { 
  /* IMG */
  .ich {
    width: 100%;
    max-width: 180px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  /* NAV */
  .navbar {
    background-color: var(--bs-primary) !important;
  }

  /* HEADER */
  .header {
    min-height: 450px;
  }
  .header-img-01 {
    display: none;
  }
  .header-img-02 {
    left: 60px;
    bottom: 30px;
    width: 200px;
    height: 300px;
  }
  .header-img-03 {
    left: 200px;
    bottom: 30px;
    width: 300px;
    height: 300px;
  }
  .header-img-03-item {
    max-width: 250px;
    max-height: 150px;
    top: 54px !important;
  }
  .header-text {
    width:auto;
    font-size: 50px;
  }
  .header-text small {
    font-size: 22px;
  }

  /* FOOTER */
  .footer {
    padding: 15px 0;
    background-position: right -30px bottom -30px;
    background-repeat: no-repeat;
    background-size: 300px;
  }

  /* SECTION */
  .section {
    padding: 60px 0;
  }

  /* GALERIE */
  .gallery-item-a {
    width: 33%;
  }
  
  /* NEWS */
  .news-img {
    width: 100%;
    height: 400px;
  }
  .news-img-detail {
    height: 250px;
  }
}
@media (max-width: 767.98px) {
  /* HEADER */
  .header {
    min-height: 100%;
  }
  .header-img-01 {
    display: none;
  }
  .header-img-02 {
    left: calc(50% - 75px);
    bottom: 60px;
    transform: translateX(-50%);
    width: 200px;
    height: 300px;
  }
  .header-img-03 {
    left: calc(50% + 75px);
    bottom: 60px;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
  }
  .header-img-03-item {
    max-width: 250px;
    max-height: 150px;
    top: 54px !important;
  }
  .header-text {
    right: auto;
    left: 50%;
    bottom: 400px;
    transform: translateX(-50%) !important;
    width: auto;
    font-size: 45px;
    text-align: center;
  }
  .header-text small {
    font-size: 20px;
  }

  /* SECTION */
  .section {
    padding: 30px 0;
  }

  /* GALERIE */
  .gallery-item-a {
    width: 50%;
  }

  /* NEWS */
  .news-img {
    height: 280px;
  }
  .news-img-detail {
    height: 200px;
  }
}
@media (max-width: 575.98px) { 
  /* HEADER */
  .header-img-02 {
    left: calc(50% - 60px);
    bottom: 45px;
    transform: translateX(-50%);
    width: 120px;
    height: 220px;
  }
  .header-img-03 {
    left: calc(50% + 60px);
    bottom: 60px;
    transform: translateX(-50%);
    width: 220px;
    height: 220px;
  }
  .header-img-03-item {
    max-width: 200px;
    max-height: 100px;
    top: 49px !important;
  }
  .slick-fader .slick-track {
    width: 220px !important;
    height: 220px;
  }
  .header-text {
    width: 100%;
    font-size: 45px;
    bottom: 350px;
  }
  .header-text small {
    font-size: 20px;
  }

  /* GALERIE */
  .gallery-item-a {
    width: 50%;
  }
}
@media (max-width: 375px) {}