@charset "utf-8";
/* CSS Document – swing.css */

body, html {
  margin: 0;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  color: #560604;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ===================== */
/* LINKS                 */
/* ===================== */
a:link    { color: #560604; text-decoration: none; transition: color 0.2s ease; }
a:visited { color: #000000; text-decoration: none; }
a:hover   { color: #560604; text-decoration: underline; }
a:active  { color: #560604; text-decoration: none; }

/* ===================== */
/* TOPBAR                */
/* ===================== */
.topbar {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.left,
.main,
.right {
  flex: 1;
  min-height: 397px;
  background-color: #F7F3EE;
  text-align: center;
  padding-top: 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.right {
  padding-top: 50px;
}

.lang-switch,
.logo {
  display: inline-block;
}

@media screen and (max-width: 1000px) {
  .topbar {
    flex-direction: column;
  }

  .left,
  .main,
  .right {
    width: 100%;
    min-height: 117px;
    padding-top: 0;
    align-items: center;
    justify-content: center;
  }
}

/* ===================== */
/* LAYOUT                */
/* ===================== */
.main1 {
  width: 100%;
}

.img-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0 15px;
  position: relative;
  left: 0;
  right: 0;
}

.img-wrapper .responsive {
  width: 100%;
  max-width: 100%;
  display: block;
  height: auto;
  border-radius: 8px;
  margin: 0;
  padding: 0;
}

.responsive {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  border-radius: 8px;
  box-sizing: border-box;
}

.container3 {
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===================== */
/* SPACERS               */
/* ===================== */
.spacer-small  { height: 10px; }
.spacer-medium { height: 50px; }
.spacer-large  { height: 100px; }

.footer-spacer {
  height: 130px;
}

@media screen and (max-width: 800px) {
  .footer-spacer {
    height: 160px;
  }
}

/* ===================== */
/* SECTION DIVIDER       */
/* ===================== */
.section-divider {
  width: 100%;
  height: 27px;
  margin: 0;
  background-color: #F7F3EE;
  border: none;
  display: block;
}

/* ===================== */
/* TEXT & TYPOGRAPHY     */
/* ===================== */
.text {
  background-color: #fff;
  color: #560604;
  text-align: left;
  font-weight: normal;
  font-size: 15px;
  line-height: 18px;
}

.text p {
  font-size: 17px;
  color: #560604;
  text-align: justify;
  max-width: 600px;
  margin-top: 8px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
  line-height: 27px;
}

h1, h2, h3, h4, h5 {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

h1 {
  font-size: 55px;
  font-weight: 900;
  line-height: 70px;
  color: #B89A7A;
  text-align: center;
  margin-top: 17px;
  padding: 0 17%;
  letter-spacing: 3px;
}

h2 {
  font-size: 33px;
  font-weight: bolder;
  line-height: 35px;
  color: #B89A7A;
  text-align: justify;
  max-width: 600px;
  margin-top: 57px;
  padding: 0 15px;
  letter-spacing: 1px;
}

h3 {
  font-size: 31px;
  line-height: 40px;
  font-weight: bolder;
  color: #560604;
  text-align: center;
  margin-top: 57px;
  padding: 0 17%;
}

h4 {
  font-size: 44px;
  font-weight: 800;
  line-height: 50px;
  color: #560604;
  text-align: center;
  max-width: 90%;
  margin-top: 17px;
  padding: 0 9%;
}

h5 {
  font-size: 33px;
  font-weight: 700;
  line-height: 36px;
  color: #B89A7A;
  text-align: center;
  margin-top: 17px;
  padding: 0 15px;
  letter-spacing: 3px;
}

@media screen and (max-width: 800px) {
  .text {
    margin: 0 10px;
  }

  .text p {
    font-size: 15px;
    line-height: 18px;
    padding: 0 15px;
    margin-top: 6px;
  }

  h1 {
    font-size: 44px;
    line-height: 50px;
    padding: 0 7%;
    text-align: center;
  }

  h2 {
    font-size: 17px;
    line-height: 22px;
  }

  h3 {
    font-size: 17px;
    line-height: 20px;
  }

  h4 {
    font-size: 24px;
    line-height: 28px;
    margin-top: 27px;
    padding: 0 7%;
  }

  h5 {
    font-size: 21px;
    line-height: 27px;
  }
}

/* ===================== */
/* FOOTER                */
/* ===================== */
.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 107px;
  background-color: #F7F3EE;
  color: #560604;
  text-align: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 15px;
}

.footer a:link    { color: #560604; text-decoration: none; }
.footer a:visited { text-decoration: none; color: #000000; }
.footer a:hover   { text-decoration: underline; color: #B89A7A; }
.footer a:active  { text-decoration: none; color: #560604; }

@media screen and (max-width: 800px) {
  .footer {
    font-size: 12px;
    line-height: 18px;
    padding-bottom: 10px;
  }
}

/* ===================== */
/* BUTTON                */
/* ===================== */
.button {
  background-color: #560604;
  border: none;
  color: #F7F3EE !important;
  padding: 5px 12px;
  text-align: center;
  text-decoration: none !important;
  display: inline-block;
  font-size: 21px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}

.button:hover {
  background-color: #B89A7A;
}

/* ===================== */
/* FEATURE LIST          */
/* ===================== */
.feature-list {
  max-width: 600px;
  margin: 17px auto;
  padding: 0 30px;
  color: #560604;
  font-size: 21px;
  line-height: 25px;
}

.feature-list li {
  margin-bottom: 8px;
}

@media screen and (max-width: 1000px) {
  .feature-list {
    font-size: 15px;
    line-height: 22px;
  }
}

.cta-hinweis {
  text-align: center !important;
  font-size: 21px;
}

/* ===================== */
/* IMPRESSUM SPECIFIC    */
/* ===================== */
.impressum-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 600px;
  width: 100%;
}

.impressum-list li {
  font-family: Avenir, sans-serif;
  font-size: 17px;
  color: #560604;
  text-align: left;
  line-height: 20px;
  padding: 0 15px;
  margin-top: 8px;
}

.text.impressum-text {
  max-width: 600px;
  width: 100%;
}

.text.h1-text {
  max-width: 100%;
  width: 100%;
  padding: 0 15px;
  text-align: justify;
}

.privacy-section {
  font-weight: bold;
  color: #B89A7A;
  margin-top: 27px !important;
}

/* ===================== */
/* SLIDESHOW             */
/* ===================== */
.mySlides {
  width: 100%;
  display: none;
}

img {
  vertical-align: middle;
}

.slideshow-container {
  width: 100%;
  position: relative;
  margin: auto;
  overflow: hidden;
  box-sizing: border-box;
}

/* slide-inner: padding links/rechts wie bei Fahnen-Seiten */
.slide-inner {
  padding: 0 15px;
  box-sizing: border-box;
}

.slide-inner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* ===================== */
/* ARROWS                */
/* ===================== */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
  color: #560604;
  background-color: rgba(184, 154, 122, 0.9);
  font-size: 20px;
  font-weight: bold;
  transition: 0.6s ease;
  user-select: none;
  border: none;
  z-index: 10;
}

.prev {
  left: 15px;
  border-radius: 0 3px 3px 0;
}

.next {
  right: 15px;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: #B89A7A;
}

/* ===================== */
/* DOTS                  */
/* ===================== */
.dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  cursor: pointer;
  height: 13px;
  width: 13px;
  margin: 0 4px;
  background-color: #560604;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  border: none;
}

.active1,
.dot:hover {
  background-color: #B89A7A;
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from { opacity: .4; }
  to   { opacity: 1; }
}

@keyframes fade {
  from { opacity: .4; }
  to   { opacity: 1; }
}

@media only screen and (max-width: 800px) {
  .prev, .next {
    font-size: 16px;
    width: 36px;
    height: 36px;
  }

  .dot {
    height: 8px;
    width: 8px;
  }
}

/* ===================== */
/* ROW / GALLERY GRID    */
/* ===================== */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
}

.responsive1 {
  flex: 1 1 45%;
  max-width: 600px;
  box-sizing: border-box;
}

.gallery {
  border: 1px solid #f1f1f1;
  text-align: center;
  border-radius: 8px;
}

.gallery img {
  width: 100%;
  max-width: 600px;
  height: auto;
  max-height: 667px;
  object-fit: cover;
}

div.desc {
  padding: 15px;
  text-align: center;
}

.row2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 12px;
}

.responsive2 {
  flex: 1 1 300px;
  max-width: 400px;
  box-sizing: border-box;
}

.gallery2 {
  border: 1px solid #f1f1f1;
  padding-top: 17px;
  text-align: center;
  border-radius: 8px;
}

.gallery2 img {
  width: 100%;
  max-width: 400px;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

@media (max-width: 700px) {
  .row,
  .row2 {
    gap: 20px;
  }

  .responsive1,
  .responsive2 {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ===================== */
/* COOKIE BANNER         */
/* ===================== */
/* ===================== */
/* COOKIE BANNER         */
/* ===================== */
#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 30%;
  max-width: 420px;
  min-width: 280px;
  background: #B89A7A;
  color: #fff;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  z-index: 9999;
  display: none;
  font-family: Avenir, Helvetica, Arial, sans-serif;
  text-align: center;
}

.cookie-text {
  margin: 0 0 12px 0;
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
}

#cookie-banner a {
  color: #fff;
  text-decoration: underline;
}

#cookie-banner a:hover {
  color: #560604;
}

#cookie-banner button,
#cookie-banner .btn {
  background-color: #560604;
  color: #F7F3EE;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  margin: 4px;
  transition: background-color 0.2s ease;
}

#cookie-banner button:last-child,
#cookie-banner .decline {
  background-color: #F7F3EE;
  color: #560604;
}

#cookie-banner button:hover,
#cookie-banner .btn:hover {
  opacity: 0.85;
}

.cookie-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 800px) {
  #cookie-banner {
    left: 10px;
    right: 10px;
    bottom: auto;
    top: 107px;
    width: calc(100% - 20px);
    max-width: 100%;
  }

  .cookie-actions {
    flex-direction: column;
  }
}