/* CSS */
/******** GLOBAL COLORS ***********/
:root {
  --bg-primary: 180,187,136;
  --bg-secondary: 128,150,103;
   /* PINK: 
  --highlight-primary: 255,0,162;
  --highlight-secondary: 0,194,255;*/
  --highlight-primary: 209,165,34;
  --highlight-secondary: 121,14,14;  
  --highlight-tertiary: 197,12,0;
  --highlight-dark: 201,0,128;
  --illustration: 215,222,172;
  --white: 255,255,255;
  --black: 51,51,51;
  --super-black: 0,0,0;
  --link: 3,49,10;
  /*-- link: 15,90,15; */
  --whatsapp1: 37, 211, 102;
  --whatsapp2: 7, 94, 84;
  --whatsapp3: 220, 248, 198;
}

@keyframes progress {
  to {
    background-color: rgb(var(--highlight-primary));
    width: 100%;
  }
}


/************** MENU **************/
.burger-menu {
  position: sticky;
  top: 0;
  right: 0;
  z-index: 1000;
}

#menu-toggle {
  display: none;
}

/* Burger Icon */
.menu-icon {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1002;
}
.menu-icon:hover {
  transform: scale(0.9); /* leichtes Vergrößern beim Hover */
  transition: transform 0.2s ease;
  
}
.menu-icon span {
  display: block;
  height: 3px;
  background: rgb(var(--highlight-tertiary));
  border-radius: 2px;
  transition: 0.3s ease;
}

/* FLYER Link Decoration 
text-link {
  color: rgb(var(--link), 1.0);
  border-radius: 50px;
  padding: 4px 14px;
  background-color: #000;
}
*/


/* Terminbereich */
.termine-section {
  margin-top: 4px;
}

.termine-section h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}

.zeit {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  text-align: left;
}

/* Flex Container */
.termine-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;              /* Abstand horizontal + vertikal */
}

/* Einzelne Termin-Kästen */
.termine {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 8px;
  background-color: rgb(var(--highlight-primary));
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.termine:hover {
  background-color: rgb(var(--highlight-secondary));
  color: #fff;
  transform: translateY(-2px);
}
/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--black), 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

/* Menü */
.menu {
  text-transform: uppercase;
  font-weight: 300;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;  
/*  background: rgba(var(--highlight-primary), 1);*/
  background-image: linear-gradient(45deg, 
                    rgb(var(--highlight-secondary)), 
                    rgb(var(--highlight-primary)));
  background-size: 300%;
  background-position: top right;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.menu ul li {
  margin: 1rem 0;
}

.menu ul li a {
  font-size: 1.5rem;
  text-decoration: none;
  color: rgb(var(--white));
  transition: color 0.2s ease;
}

.menu ul li a:hover {
  color: rgb(var(--black));
}

/* Aktiv: Menü anzeigen + Overlay */
#menu-toggle:checked ~ .overlay {
  opacity: 1;
  visibility: visible;
}

#menu-toggle:checked ~ .menu {
  transform: translateX(0);
}

/* Burger zu X Animation */
#menu-toggle:checked + .menu-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
#menu-toggle:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .menu-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}


/* Desktop: Menü nur 30% breit */
@media screen and (min-width: 768px) {
  .menu {
    max-width: 30%;
    justify-content: flex-start;
    padding-left: 2rem;
  }
}
/************** Menü Ende ********************/

@-webkit-keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@-webkit-keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@-webkit-keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInSlider {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInSlider {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes gradient-animation {
  from {
    background-position: left;
  }
  to {
    background-position: right;
  }
}

@keyframes gradient-animation {
  from {
    background-position: left;
  }
  to {
    background-position: right;
  }
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  /*box-sizing: inherit;*/
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: rgb(var(--bg-primary));
  color: rgb(var(--super-black));
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: body 1s linear;
  position: relative;  
  z-index: 4;
}

.progress {
  height: 2px;
  width: 0%;
  background-color: rgb(var(--highlight-tertiary));
  position: fixed;
  top: 0;
  left: 0;
  animation: progress 1s linear;
  z-index: 11111111;
}
/*progress*/
:root * {
  /* Pause the animation */
  animation-play-state: paused;
  /* Bind the animation to scroll */
  animation-delay: calc(var(--scroll) * -1s);
  /* These last 2 properites clean up overshoot weirdness */
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}

ul {
  list-style-type: none;
  text-align: left !important;
}

i {
  pointer-events: none;
}

::-moz-selection {
  background-color: rgb(var(--highlight-secondary));
  color: rgb(var(--white));
}

::selection {
  background-color: rgb(var(--highlight-secondary));
  color: rgb(var(--white));
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
  font-weight: 700;
  color: rgb(var(--black));
}

h1 {
  font-size: 3.1rem;
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 3.8rem;
  }
}

h2 {
  font-size: 2.6rem;
  background-color: rgb(var(--black));
  background-image: linear-gradient(-35deg, 
                    rgb(var(--highlight-tertiary)), 
                    rgb(var(--highlight-secondary)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

@media screen and (min-width: 768px) {
  h2 {
    font-size: 3.2rem;
  }
}

h3 {
  font-size: 2.1rem;
}

@media screen and (min-width: 768px) {
  h3 {
    font-size: 2.6rem;
  }
}

h4 {
  font-size: 1.6rem;
  background-color: rgb(var(--black));
  background-image: linear-gradient(45deg, 
                  rgb(var(--highlight-secondary)), 
                  rgb(var(--highlight-tertiary)));
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

@media screen and (min-width: 768px) {
  h4 {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  h4 {
    font-size: 2.2rem;
  }
}

h5 {
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  h5 {
    font-size: 1.8rem;
  }
}

h6 {
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  h6 {
    font-size: 1.4rem;
  }
}

.section-heading {
  margin-bottom: 1.925rem;
}

ul,
a,
p {
  list-style-type: none;
  text-align: left !important;
  font-size: 1.8rem;
}

@media screen and (min-width: 768px) {
  ul,
  a,
  p {
    font-size: 2.2rem;
  }
}

a {
  text-decoration: none;
  font-weight: 500;
  color: rgb(var(--link));
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

a:hover {
  color: rgb(var(--highlight-primary), 1.0);
  transform: scaleX(1);
}

/*** LINK MIT BG ***/  
a.text-link {
  color: rgb(var(--link), 1.0);
  background-color: color-mix(in srgb, rgb(var(--white)) 100%, transparent);
  border-radius: 10px;
  padding: 0 7px 0 7px;
}

a.text-link::after {
  position: absolute;
  content: '';
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  transform-origin: left;
  transition: all 0.3s ease;
}

a.text-link:hover {
  color: rgb(var(--highlight-secondary));
  background-color: color-mix(in srgb, rgb(var(--white)) 100%, transparent);
  border-radius: 10px;
  padding: 0 7px 0 7px;
  margin-right: 2px;
  transition: 0.5s;
}
/*** / LINK MIT BG ENDE ***/  

/*** LINK MIT STRICH ***/  
a.text-linkersen {
  color: rgb(var(--link), 1.0);
  text-decoration: underline;
}

a.text-linkersen::after {
  position: absolute;
  content: '';
  bottom: -4px;
  background: rgb(var(--highlight-secondary));
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}

a.text-linkersen:hover {
  color: rgb(var(--super-black));
  border-radius: 10px;
  padding: 0 5px 0 5px;
  transition: 0.5s;
}

a.text-linkersen:hover::after {
  transform: scaleX(1);
  transform-origin: right;
}
/*** / LINK MIT STRICH ENDE ***/  


p.paragraph {
  margin-bottom: 3.85rem;
}

input,
textarea,
keygen,
select,
button {
  font-family: "Roboto", sans-serif;
}

strong {
  font-weight: 700;
/*  color: rgb(var(--black));*/
}

.punkt{
  font-weight: 500;
  color: rgb(var(--black));
  text-decoration: none;
}

.walther-white {
  color: rgb(var(--white))!important;
}

.row {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.row .col {
  flex-basis: 100%;
}

@media screen and (min-width: 480px) {
  .row {
    flex-direction: row;
  }
  .row .col {
    flex: 1;
  }
  .row .col._20 {
    flex: 0 0 calc(20% - 1.6rem);
  }
  .row .col._25 {
    flex: 0 0 calc(25% - 1.6rem);
  }
  .row .col._33 {
    flex: 0 0 calc(33.333% - 1.6rem);
  }
  .row .col._50 {
    flex: 0 0 calc(50% - 1.6rem);
  }
  .row .col._75 {
    flex: 0 0 calc(75% - 1.6rem);
  }
}

/*** PFEIL NACH OBEN ***/
.to-top {
  position: fixed;
  display: block;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 900;
  width: 4.8rem;
  height: 4.8rem;
  transform: translateY(200%);
  transition: all 0.3s ease;
  opacity: 0;
  border-radius: 999px;
}
@media screen and (min-width: 768px) {
  .to-top {
    bottom: 7.7rem;
    right: 3.2rem;
    width: 6rem;
    height: 6rem;
  }
}
.to-top.active {
  transform: translateY(0%);
  opacity: 1;
}
.to-top:hover {
  background: rgba(var(--highlight-primary), 1.0);
  box-shadow: 0 10px 15px -3px rgba(var(--super-black), 0.3), 
              0 4px 6px -2px rgba(var(--super-black), 0.05);
}
.to-top img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 3.8rem;
  width: 3.8rem;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
/*** / PFEIL NACH OBEN ENDE ***/


/* Parallax */
div.parallax-image* {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-color: rgb(var(--bg-primary));
  top: 0;
  z-index: -10;
}

div.parallax-image2 {
  background-image: url(../img/gruppenbild.jpg);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-position: center;
  background-color: rgb(var(--bg-primary));  
  background-repeat: no-repeat;
  z-index: -10;
}
.sticky {
  margin-top: -100vh;
  width: 100%;
  height: 120vh;
  background: linear-gradient(45deg, red, blue);
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
  z-index: -2;
}
/* Parallax End */



.image-round-corner{
  border-radius: 10px;
}

.image-circle{
  border-radius: 999px;
}

.container {
  margin: 0 auto;
  padding: 0 1.6rem;
  max-width: 960px;
}

@media screen and (min-width: 768px) {
  .container {
    padding: 0 3.2rem;
  }
}

.section {
  padding: 7.7rem 0;
  z-index: 5;
  background-color: rgb(var(--bg-primary));
}

@media screen and (min-width: 768px) {
  .section {
    padding: 11.55rem 0;
  }
}

.btn, .btn:link, .btn:visited {
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.925rem 3.2rem;
  transition: all 0.3s ease;
}

.btn--secondary {
  background-color: rgb(var(--super-black));
  background: linear-gradient(
    45deg,
    rgb(var(--highlight-secondary)),
    rgb(var(--highlight-primary))
  );
  background-size: 100%;
  background-position: left;
  background-repeat: no-repeat;
  color: rgb(var(--white));
  padding: 0.8rem 1.6rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(var(--super-black), 0.2);
  border-radius: 10px;
  border: 3px solid rgba(var(--white), 1);
  overflow: hidden;
  /* Übergänge für beide Richtungen */
  transition: all 0.7s ease;
}

.btn--secondary:hover {
  background: linear-gradient(
    45deg,
    rgb(var(--highlight-secondary)),
    rgb(var(--highlight-primary))
  );
  background-position: left;
  background-size: 400%;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  color: rgb(var(--white));
  transform: translateY(-2px);
  border-color: rgb(var(--highlight-secondary));
}

.btn--secondary:active,
.btn--secondary:focus {
  outline: none;
  background: linear-gradient(
    45deg,
    rgb(var(--highlight-tertiary)),
    rgb(var(--highlight-secondary))
  );
  background-position: right;
  background-size: 400%;
  transition: all 0.3s ease;
}

.btn--animated {
  -webkit-animation: moveInBottom 0.5s ease 0.75s;
  animation: moveInBottom 0.5s ease 0.75s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.btn-link, .btn-link:link, .btn-link:visited {
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0.9625rem 0;
  text-decoration: none;  
  transition: all 0.3s ease;
  color: rgb(var(--highlight-primary));
  border-bottom: 2px solid rgba(var(--super-black), 0);
}

.btn-link:hover {
  color: rgb(var(--highlight-primary));
  border-bottom: 2px solid rgb(var(--highlight-primary));
}

.btn-link:active, .btn-link:focus {
  outline: none;
  color: rgb(var(--highlight-primary));
  border-bottom: 2px solid rgb(var(--highlight-primary));
}

.btn-link i {
  padding-left: 1.6rem;
  font-size: inherit;
  color: inherit;
}

.image-slider__box {
  position: relative;
  overflow: hidden;
  margin-bottom: 3.85rem;
}

.image-slider__images {
  display: flex;
  transition: all 1.5s ease;
}

.image-slider__image {
  flex: 0 0 100%;
  position: relative;
}

.image-slider__image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.5) 21%, rgba(0, 0, 0, 0));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  transition: all 0.5s ease 1s;
}

.image-slider__image .overlay .title {
  color: #fff;
  margin-bottom: 3.85rem;
  opacity: 0;
  transform: translateY(10rem);
  transition: all 0.5s ease 1.25s;
}

.image-slider__image.active .overlay {
  opacity: 1;
}

.image-slider__image.active .overlay .title {
  opacity: 1;
  transform: translateY(0);
}

.image-slider__controls {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.image-slider__controls .prev,
.image-slider__controls .next {
  cursor: pointer;
  height: 8rem;
  width: 6rem;
  background: rgba(var(--white), 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.image-slider__controls .prev i,
.image-slider__controls .next i {
  font-size: 2.4rem;
  color: rgb(var(--white));
  transition: all 0.5s ease;
}

.image-slider__controls .prev:hover,
.image-slider__controls .next:hover {
  background: rgba(255, 255, 255, 0.5);
}

.image-slider__controls .prev:hover i,
.image-slider__controls .next:hover i {
  color: rgb(var(--highlight-secondary));
}

.image-slider__nav {
  height: 8px;
  width: 12rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.image-slider__nav .dot {
  cursor: pointer;
  flex: 1;
  background: rgb(var(--highlight-primary));
  height: 8px;
  margin: 6px;
  transition: all 0.5s ease;
}

.image-slider__nav .dot:hover {
  background: rgb(var(--highlight-tertiary));
  height: 12px;
}

.image-slider__nav .dot.active {
  background: rgb(var(--highlight-secondary));
  height: 12px;
}

.scroll {
  transition: all 0.5s ease;
}

.scroll.scroll--fade-in {
  opacity: 0;
}

.scroll.scroll--fade-in.appear {
  opacity: 1;
}

.scroll.scroll--fade-in-top {
  opacity: 0;
  transform: translateY(-4rem);
}

.scroll.scroll--fade-in-top.appear {
  opacity: 1;
  transform: translateY(0rem);
}

.main-header {
  background: url(../img/background.jpg) no-repeat center center/cover;
  height: 16rem;
  position: relative;
}

/*
.moon-header {
  background: #ff3eaf;
  background: url(../img/moon.svg) no-repeat top center/cover;
  height: 16rem;
  position: relative;
}
*/

@media screen and (min-width: 480px) {
  .main-header {
    height: 20rem;
  }
}

@media screen and (min-width: 768px) {
  .main-header {
    height: 30rem;
  }
}

.header-logo {
  /*filter: drop-shadow(3px 3px 6px rgba(var(--super-black),0.5));*/
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 25%);
  width: 95%;
  top: 10%;
}

@media screen and (min-width: 480px) {
  .header-logo {
    width: 90%;
    /*top: 5%;*/
  }
}

@media screen and (min-width: 768px) {
  .header-logo {
    width: 80%;
    top: -10%;
  }
}

@media screen and (min-width: 1024px) {
  .header-logo {
    width: 90%;
    top: -20%;
  }
}

@media screen and (min-width: 1440px) {
  .header-logo {
    width: 55%;
    top: 0px;
  }
}

@media screen and (min-width: 1800px) {
  .header-logo {
    width: 55%;
    top: -10%;
  }
}

@media screen and (min-width: 2100px) {
  .header-logo {
    width: 55%;
    top: -30%;
  }
}

@media screen and (min-width: 2500px) {
  .header-logo {
    width: 45%;
    top: -30%;
  }
}

@media screen and (min-width: 3300px) {
  .header-logo {
    width: 25%;
    top: -10%;
  }
}

@media screen and (min-width: 4660px) {
  .header-logo {
    width: 25%;
    top: -25%;
  }
}

@media screen and (min-width: 5040px) {
  .header-logo {
    width: 10%;
    top: 25%;
  }
}

.nav {
  padding: 1.925rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav .lang-icons {
  display: flex;
  align-items: center;
}

.nav .lang-icons li {
  margin-left: 1.6rem;
}

.nav .lang-icons li img {
  height: 3.4rem;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-radius: 999rem;
}

@media screen and (min-width: 1024px) {
  .nav .lang-icons li img {
    height: 4.4rem;
  }
}

.nav .lang-icons li img.active {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  border: 5px solid rgba(255, 255, 255, 0.4);
}

.nav .lang-icons li img:hover {
  -webkit-filter: grayscale(25%);
  filter: grayscale(25%);
  border: 5px solid #ff0f9c;
}

.divider {
  height: 18rem;
  overflow: hidden;
  /*filter: drop-shadow(1px 1px 7px rgb(var(--bg-primary)));*/
  z-index: 999;
}

.divider--1 {
  position: relative;
  /*background: linear-gradient(to bottom, #fff 50%, #fafafa 50%, #fafafa 100%);*/
  z-index: 999;
}

.divider--1 .left {
  position: absolute;
  top: 50%;
  left: 15%;
  height: 15rem;
  width: 15rem;
  padding: 1.06667rem;
  transform: translate(0%, -50%);
  border-radius: 999rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

@media screen and (min-width: 768px) {
  .divider--1 .left {
    left: 25%;
    height: 16rem;
    width: 16rem;
    padding: 1.28rem;
  }
}

@media screen and (min-width: 1024px) {
  .divider--1 .left {
    left: 30%;
    height: 18rem;
    width: 18rem;
    padding: 1.6rem;
  }
}

.divider--1 .left:hover {
}

.divider--1 .middle {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 15rem;
  width: 15rem;
  padding: 1.06667rem;
  transform: translate(-50%, -50%);
  border-radius: 999rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

@media screen and (min-width: 768px) {
  .divider--1 .middle {
    height: 16rem;
    width: 16rem;
    padding: 1.28rem;
  }
}

@media screen and (min-width: 1024px) {
  .divider--1 .middle {
    height: 18rem;
    width: 18rem;
    padding: 1.6rem;
  }
}

.divider--1 .middle:hover {  
}

.divider--1 .right {
  position: absolute;
  top: 50%;
  right: 15%;
  height: 15rem;
  width: 15rem;
  padding: 1.06667rem;
  transform: translate(0%, -50%);
  border-radius: 999rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

@media screen and (min-width: 768px) {
  .divider--1 .right {
    right: 25%;
    height: 16rem;
    width: 16rem;
    padding: 1.28rem;
  }
}

@media screen and (min-width: 1024px) {
  .divider--1 .right {
    top: 50%;
    right: 30%;
    height: 18rem;
    width: 18rem;
    padding: 1.6rem;
  }
}

.divider--1 .right:hover {
}

.divider--1.active .left {
  transform: translate(-40rem, -50%);
  opacity: 0;
}

@media screen and (min-width: 1024px) {
  .divider--1.active .left {
    transform: translate(-60rem, -50%);
  }
}

.divider--1.active .middle {
  height: 8rem;
  width: 8rem;
}

@media screen and (min-width: 768px) {
  .divider--1.active .middle {
    height: 12rem;
    width: 12rem;
  }
}

@media screen and (min-width: 1024px) {
  .divider--1.active .middle {
    height: 16rem;
    width: 16rem;
  }
}

.divider--1.active .right {
  transform: translate(40rem, -50%);
  opacity: 0;
}

@media screen and (min-width: 1024px) {
  .divider--1.active .right {
    transform: translate(60rem, -50%);
  }
}

.divider--2 {
  position: relative;
  top:60px;
}

.divider--2 .left {
  position: absolute;
  top: 50%;
  left: 17.5%;
  height: 15rem;
  width: 15rem;
  padding: 1.06667rem;
  transform: translate(0%, -50%);
  border-radius: 999rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1.5s ease;
}

@media screen and (min-width: 768px) {
  .divider--2 .left {
    left: 30%;
    height: 17rem;
    width: 17rem;
    padding: 1.28rem;
  }
}

@media screen and (min-width: 1024px) {
  .divider--2 .left {
    left: 40%;
    height: 18rem;
    width: 18rem;
    padding: 1.6rem;
  }
}

.divider--2 .left:hover {
}

.divider--2 .right {
  position: absolute;
  top: 50%;
  right: 17.5%;
  height: 15rem;
  width: 15rem;
  padding: 1.06667rem;
  transform: translate(0%, -50%);
  border-radius: 999rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1.5s ease 0.1s;
}

@media screen and (min-width: 768px) {
  .divider--2 .right {
    right: 30%;
    height: 17rem;
    width: 17rem;
    padding: 1.28rem;
  }
}

@media screen and (min-width: 1024px) {
  .divider--2 .right {
    right: 40%;
    height: 18rem;
    width: 18rem;
    padding: 1.6rem;
  }
}

.divider--2 .right:hover {
  /*background: #ff0f9c;*/
}

.divider--2.active .left {
  transform: translate(40rem, -50%);
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .divider--2.active .left {
    transform: translate(80rem, -50%);
  }
}

@media screen and (min-width: 1024px) {
  .divider--2.active .left {
    transform: translate(120rem, -50%);
  }
}

.divider--2.active .right {
  transform: translate(40rem, -50%);
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .divider--2.active .right {
    transform: translate(80rem, -50%);
  }
}

@media screen and (min-width: 1024px) {
  .divider--2.active .right {
    transform: translate(120rem, -50%);
  }
}

.main-footer {
  margin-top: -150px;
  position: relative;
  overflow: hidden;
  padding-top: 3.85rem;
  padding-bottom: 53.9rem;
  background: url(../img/bottom.jpg) repeat-x bottom center;
  background-color: rgb(var(--bg-primary));
  z-index: -1;
}

.footer-images {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-images .image {
  flex: 0 0 calc(33.33% - 2rem);
}

.footer-images .image .round {
  border-radius: 999rem;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .footer-nav {
    margin-top: 15.4rem;
    justify-content: space-between; /* auf Desktop bleiben sie verteilt */
  }
}

.footer-nav {
  margin-top: 7.7rem;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5rem; /* optional: Abstand zwischen den Icons */
}

.footer-nav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* --- Grundform der Icons --- */
.social-icon {
  height: 3.6rem;
  width: 3.6rem;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(1) saturate(1);
}

/* --- Hover-Effekt --- */
.footer-nav li a:hover .social-icon {
  transform: scale(0.8);
  /*filter: brightness(1.3) saturate(1.2) drop-shadow(0 0 6px rgba(var(--highlight-primary), 0.4));*/
}

/* --- Spezifische Icons --- */
.social-instagram {
  background-image: url("../img/instagram.svg");
}

.social-mail {
  background-image: url("../img/mail.svg");
}

.social-whatsapp {
  background-image: url("../img/Whatsapp_logo.svg");
}

.social-whatsapp2 {
  background-image: url("../img/whatsapp2.svg");
}

.social-facebook {
  background-image: url("../img/facebook.svg");
}

.social-info {
  background-image: url("../img/info.svg");
}

.social-share {
  background-image: url("../img/share.svg");
}


.footer-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
}

.footer-bottom img {
  min-width: 200rem;
}

@media screen and (min-width: 1024px) {
  .footer-bottom img {
    width: 100%;
  }
}

.intro-header .section-heading {
  width: 26rem;
}

.section-book {
  background: rgb(var(--bg-secondary));
  color: rgb(var(--white));
  z-index: 3;
}

.book-header {
  margin-bottom: 3.85rem;
}

@media screen and (min-width: 768px) {
  .book-header .section-heading {
    width: 18rem;
  }
}

.book-preview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.book-preview .preview {
  flex: 0 0 calc(50% - 1.6rem);
  margin-bottom: 3.2rem;
}

@media screen and (min-width: 768px) {
  .cta-header .section-heading {
    width: 26rem;
  }
}

/*.section-cta {
  background: #ff3eaf;
  background: url(../img/background-stars.jpg) no-repeat center center/cover;
}*/

@supports (-webkit-clip-path: polygon(0 0)) or (clip-path: polygon(0 0)) or (-webkit-clip-path: polygon(0 0)) {
  @media screen and (min-width: 768px) {
    .section-cta {
      padding: 23.1rem 0;
      -webkit-clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
      clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
    }
  }
}

.cta-box {
  background: #fff;
}

@media screen and (min-width: 768px) {
  .cta-box {
    display: flex;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .cta-box .cta-image {
    flex: 0 0 40%;
  }
}

.cta-box .cta-desc {
  padding: 3.85rem 1.6rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .cta-box .cta-desc {
    text-align: left;
    flex: 0 0 60%;
  }
}

.explore-header {
  margin-bottom: 7.7rem;
  z-index: 88;
}

.explore-header .image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore-header .image img {
  width: 12rem;
}

.image-big {
  width: 300rem;
}

.explore-header p {
  text-align: center;
  margin-top: 1.925rem;
}

@media screen and (min-width: 768px) {
  .explore-images {
    display: flex;
    justify-content: space-between;
  }
}

.explore-images .explore {
  margin-bottom: 7.7rem;
}

@media screen and (min-width: 768px) {
  .explore-images .explore {
    flex: 0 0 calc(25% - 4rem);
  }
   .explore-images .explore:last-child {
    flex: 0 0 calc(38% - 4rem);
  }
}

.explore-images .explore .explore-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 12rem;
}

.explore-images .explore .explore-image img {
  width: 12rem;
  border-radius: 999rem;
}

.explore-images .explore .explore-info {
  margin-top: 2.56667rem;
  text-align: center;
}

.explore-images .explore .explore-info .title {
  margin: 0 auto 1.925rem auto;
  /*width: 10rem;*/
}

.explore-images .explore .explore-info p {
  font-size: 1.6rem;

}
.section-feedback {
  margin-top:-240px;
  /*background-image: linear-gradient(145deg, #57C785, #EDDD53);*/
  background-color: rgb(var(--bg-primary));
  background: linear-gradient(
    45deg,
    rgb(var(--highlight-secondary)),
    rgb(var(--highlight-primary))
  );
  background-size: 300%;
  background-position: left;
  -webkit-animation: gradient-animation 6s infinite alternate;
  animation: gradient-animation 6s infinite alternate;
  z-index: 3;
}

@supports (-webkit-clip-path: polygon(0 0)) or (clip-path: polygon(0 0)) or (-webkit-clip-path: polygon(0 0)) {
  @media screen and (min-width: 768px) {
    .section-feedback {
      -webkit-clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
      clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
      padding: 23.1rem 0;
    }
  }
}

.feedback-box {
  background: rgb(var(--bg-primary));
  padding: 3.85rem 1.6rem;
}

.feedback-box .feedback-images {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3.85rem;
}

.feedback-box .feedback-images .image {
  flex: 0 0 calc(33.33% - 4rem);
}

.feedback-box .feedback-desc {
  text-align: center;
}

.feedback-box .feedback-desc p {
  margin-bottom: 1.925rem;
}

.border-round-and-green{
  border-radius: 20px; 
  border-color: rgb(var(--super-black)); 
  border-width: 3px; 
  border-style: solid;
}

.small-margin {
  margin-top: -60px!important;
}
/*
mail.svg 2DO
info.svg*/


/*** WHATS APP BUTTON ***/
.whats-font{
  color: #fff;
  font-size: 3.625em;
  text-align: center;
  margin-top: 20%;
}
.whats-float {
    position: fixed;
    transform:translate(108px,0px);
    top:25%;
    right:0;
    width:150px;
    overflow: hidden;
    background-image: linear-gradient(35deg, 
                      rgb(var(--whatsapp1)), 
                      rgb(var(--whatsapp2)));
    /*background-image: linear-gradient(35deg, rgb(var(--whatsapp1)) 0%, rgb(var(--whatsapp2)) 70%, rgba(var(--whatsapp1), 0.4) 100%);*/
    color: rgb(var(--white));
    border-radius: 4px 0 0 4px;
    z-index: 10;
    transition: all 0.5s ease-in-out;
    vertical-align: middle
}
.whats-float a span {
    color: white;
    font-size: 15px;
    padding-top: 8px;
    padding-bottom: 10px;
    position: absolute;
    line-height: 16px;
    font-weight: bolder;
}

.whats-float i {
    font-size: 30px;
    color: white;
    line-height: 30px;
    padding: 10px;
    transform:rotate(0deg);
    transition: all 0.5s ease-in-out;
    text-align:center;

}

.whats-float:hover {
    color: #FFFFFF;
    transform:translate(0px,0px);
}

.whats-float:hover i  {
    transform:rotate(360deg);
}