* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
} 

/********* BREAKPOINTS **********/

/* Breakpoint: 576px+ */
@media (min-width: 36em) {}

/* Breakpoint: 768px+ */
@media (min-width: 48em) {}

/* Breakpoint: 992px+ */
@media (min-width: 62em) {}

/* Breakpoint: 1200px+ */
@media (min-width: 75em) {}

/* Breakpoint: 1400px+ */
@media (min-width: 87.5em) {}


html {
    font-size: 1em; /*16px Standard Browser */
}

body {
    font-family: "Montserrat", sans-serif;
}

.container{
    max-width: 75rem; /*entspricht 1200px*/
    margin-left: auto;
    margin-right:auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 62em) {
    .container{
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/********* BUTTON  **********/

.button{
    text-decoration: none;
    color: #ffffff;
    background-color: transparent;
    border: 0.1rem solid white;
    border-radius: 999999px;
    padding: 0.75rem 2rem;
    display: inline-block;

}

.button:hover{
    background-color: rgba(255, 255, 255, 0.25);
}


/********* NAVIGATION **********/

.header{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #4c6265;
    padding: 0 25px;
    height: 100px;
}

.logo{
    width: 15rem;
    display: block;
}

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

.menu{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    z-index: 1;
}

.menu li{
    list-style-type: none;
}

.menu li a{
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 40px 25px;
    font-size: 1rem;
    line-height: 1;
}

.menu li a:hover{
    box-shadow: 0 -5px 0px #fff inset,
    500px 0 0 rgba(255, 255, 255, 0.03) inset;
    padding: 42px 25px 42px 25px;
}

.hamburger{
    position: relative;
    width: 30px;
    height: 4px;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    z-index: 2;
    transition: 0.3s;
}

.hamburger:before,
.hamburger:after{
    content:"";
    position: absolute;
    height: 4px;
    right: 0;
    background: #fff;
    border-radius: 10px;
    transition: 0.3s;
}

.hamburger:before{
    top: -10px;
    width: 20px;
}

.hamburger:after{
    top: 10px;
    width: 25px;
}

.toggle-menu{
    position: absolute;
    width: 30px;
    height: 100%;
    z-index: 3;
    cursor: pointer;
    opacity: 0;
}

.hamburger,
.toggle-menu{
    display: none;
}

.navigation input:checked ~ .hamburger{
    background: transparent;
}

.navigation input:checked ~ .hamburger:before{
    top: 0;
    transform: rotate(-45deg);
    width: 30px;
}

.navigation input:checked ~ .hamburger:after{
    top: 0;
    transform: rotate(45deg);
    width: 30px;
}

.navigation input:checked ~ .menu{
    right: 0;
    box-shadow: -20px 0 40px rgba(0,0,0,0.3)
}

@media screen and (max-width: 62em) {
    .hamburger,
    .toggle-menu{
        display: block;
    }

    .header{
        padding: 10px 25px;
    }

    .menu{
        justify-content: start;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0;
        right: -200px;
        background-color: #4c6265;
        width: 200px;
        height: 100%;
        padding-top: 100px;
        transition: 0.2s;
    }

    .menu li{
        width: 100%;
    }

    .menu li a{
        padding: 42px 25px;
        box-shadow: 0 1px 0 rgba(255,255,255,0.1)
        inset;
    }
}

@media (min-width: 62em) {
.navigation input:checked ~ .menu{
    right: 0;
    box-shadow: none;
}
}

.header__heading{
    color: #ffffff;
    font-size: 2rem;
}

@media (min-width: 36em) {
    .header__heading {
       font-size: 3rem;
      }
}

@media (min-width: 62em) {
    .header__heading {
       padding-top: 5rem;
      }
}

.header__sub-heading{
    font-size: 1rem;
    color: #ffffff;
    padding-top: 0.5rem;
    padding-bottom: 2rem;
}

@media (min-width: 36em) {
    .header__sub-heading {
       font-size: 1.25rem;
      }
}

@media (min-width: 62em) {
    .header__sub-heading {
       padding-bottom: 7.5rem;
      }
}

/********* ADVENTURE-BEREICH **********/

.adventures{
    background-color: rgb(225, 233, 225);
    padding-bottom: 3rem;
}

.adventures__card{
    background-color: #ffffff;
    flex: 0 0 22.333333rem; /*0 wachsen dürfen sie nicht, 0 schrumpfen dürfen sie nicht, 22.333rem immer diese Breite*/
    margin: 1rem;
    border-radius: 1rem;
    overflow: hidden; /* wenn etwas hinausragt, soll es versteckt werden*/
    text-align: center;
  
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
    will-change: transform; /*Browser wird auf scaling vorbereitet, keine Ruckler (kostet aber Performance)*/
    transform: scale(1);    /*Browser wird auf scaling vorbereitet, keine Ruckler*/
    transition: transform 0.25s ease-in-out; /*Eigenschaft sklaieren beim Hovern wird hiermit animiert*/

    position: relative;

}

.adventures__card:hover{
    transform: scale(1.05);
}

.adventures__card-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; /*Zeilenumbruch erlauben in mobile Version*/
    justify-content: center;
    margin-left: -1rem;
    margin-right: -1rem;
}

.adventures__card-img{
    width: 100%;
    display: block;
    height: 27rem;
    object-fit: cover;
    object-position: 50% 0%;
}

.adventures__card-heading{
    margin: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.adventures__card-date{
    color: #ffffff;
    text-align: left;  
    font-size: 1rem;
    margin: 0;
    padding: 2rem;
    line-height: 1.5rem;
}

.text-primary{
    color: rgb(192, 126, 3);
}

.adventures__card-bottom{
    position: absolute;
    bottom: 0;
    padding-bottom: 1.5rem;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(0.5rem);
    backdrop-filter: blur(0.5rem);
}


/********* STORY-BEREICH **********/

.story{
    background-image: url("../images/main/schaefersee-2000x1125.jpg");
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-attachment: fixed;
}

@media (min-width: 62em) {
    .story{
        background-image: url("../images/main/schaefersee-2000x1125.jpg");
        background-position: 50% 50%;
        background-attachment: fixed;
    }
}

 @media (min-width: 62em) {
    .story__inner{
        padding-left: 50%;
    }       
}

.story__paragraph{
    color: #ffffff;
    text-align: left;  
    font-size: 1rem;
    margin: 0;
    padding: 1.5rem;
    line-height: 1.75rem;
    background-color: rgba(75, 75, 75, 0.2);
    -webkit-backdrop-filter: blur(0.1rem);
    backdrop-filter: blur(0.3rem);
}


/********* Überschriften **********/

.heading{
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #014153;
    padding: 2rem 0;
}

.heading--centered{
    text-align: center;
}

.heading__pre-text{
    display: block; /*für Zeilenumbruch in der Überschrift*/
    font-size: 1.5rem;
    font-weight: 200;
}

.heading--white{
    color: #ffffff;
    padding-left: 1.5rem;
    background-color: rgba(75, 75, 75, 0.2);
    -webkit-backdrop-filter: blur(0.1rem);
    backdrop-filter: blur(0.3rem);
}

.heading--top::before{
    content: "";
    display: block;
    height: 0.25rem;
    width: 7.5rem;
    background-color: #9B9940;
    margin-bottom: 2rem;
}


/********* FOOTER-BEREICH **********/

.footer{
    background-color: #4c6265;
    padding: 3rem 0;
}

.footer__container {
    max-width: 75rem;
    margin-left: auto;
    margin-right:auto;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    flex-direction: row;
}

@media (min-width: 62em) {
    .footer__container{
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.footer__text-column{
    flex: 0 0 50%;
}

.footer__logo-column{
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
}

.footer__heading{
    color: white;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    /* margin-top: 5rem; */
}

.footer__contact-item-icon{
    background-color: rgb(91, 210, 152);
    height: 4rem;
    width: 4rem;
    text-align: center;
    border-radius: 99999rem;
    font-size: 2.5rem; /*Schriftgröße Icon erhöhen*/
    color: #093c42;
    position: relative;
    z-index: 2;
}

.footer__contact-item-icon--phone{
    line-height: 3.7rem;
}

.icon{
    fill: currentColor;
    height: 1em;
    vertical-align: middle; /*Icon alignen in der Mitte*/
    position: relative;
}

.footer__contact-item-link{
    position: absolute;
    text-decoration: none;
    color: white;
    padding: 1rem 2rem;
    background-color: #3F99A7;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    top: 0.4rem;
    left: 2rem;
    z-index: 1;
    width: 19rem;
    text-align: center;
    overflow: hidden;
}


.footer__contact-item-link::after{
    content: "";
    position: absolute;
    top: 0;
    left: calc(-100% - 5rem);
    width: calc(100% + 5rem);
    bottom: 0;
    z-index: -1;
    background-image: linear-gradient(-45deg, transparent 2.82rem, #093c42 2.82rem);
    transition: transform 0.5s ease-in-out;

}

.footer__contact-item-link:hover::after{
        transform: translate(100%, 0);
}


.footer__contact-item{
    position: relative;
    margin-bottom: 1rem;
}

.footer__logo-column{
    flex: 0 0 50%;
    display: flex;
    justify-content: right;
    align-items: center;
}

.footer__logo-container{
    font-size: 20rem;
    display: flex;
    justify-content: center;
    align-items: center;
}


@media (max-width: 62em) {
    .footer__container{
        flex-direction: column;
    }

    .footer__logo-container{
        display: none;
    }
}

.footer_text{
    text-align: center;
    border-top: 0.1rem solid rgba(255, 255,255, 0.25);
    padding-top: 1rem;
    color:rgb(225, 233, 225);
}
.top{
    padding-left: 50px;
    color: rgb(225, 233, 225);
}

/* =======================================================================
   GLOBAL: Unterseiten-Layout (ohne Story-Hintergrundbild, mit Kreis-Medien)
   Gilt für alle Unterseiten mit <body class="page">
   ======================================================================= */

/* Grund-Hintergrund für Unterseiten (gleicher Ton wie Header/Footer) */
body.page {
  background: #4c6265;
}

/* Story-Section: Hintergrundbild & Parallax abschalten, Farbe setzen */
body.page .story {
  background: none !important;
  background-image: none !important;
  background-attachment: scroll !important;
  background-color: #4c6265 !important;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* WICHTIG:
   In deinem CSS gibt es ab 62em: .story__inner { padding-left: 50%; }
   Das ist fürs Foto-Layout gedacht (Text rechts über Bild).
   Auf Unterseiten müssen wir das deaktivieren, sonst wird alles nach rechts geschoben. */
@media (min-width: 62em) {
  body.page .story__inner {
    padding-left: 0 !important;
  }
}

/* Optional: Breite begrenzen, bleibt aber zentriert */
body.page .story__inner {
  max-width: 1100px;
}

/* Optional: „Glas“-Overlay reduzieren (weil kein Foto dahinter ist) */
body.page .story__paragraph {
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.page .heading--white {
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding-left: 0;
}

/* Layout: Kreis links, Text rechts */
body.page .feature {
  display: flex;
  gap: 48px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

body.page .feature:last-child {
  border-bottom: none;
}

/* Kreis-Container */
body.page .feature__media {
  flex: 0 0 320px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  border: 2px solid rgba(255,255,255,0.18);
}

/* Bild/Video füllt den Kreis */
body.page .feature__media img,
body.page .feature__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text-Spalte */
body.page .feature__content {
  flex: 1 1 auto;
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  body.page .feature {
    flex-direction: column;
    align-items: flex-start;
  }

  body.page .feature__media {
    width: 260px;
    height: 260px;
    flex-basis: auto;
  }
}

.project-facts{
  margin-top:20px;
  padding:18px 22px;
  background:rgba(255,255,255,0.08);
  border-radius:8px;
  max-width:460px;
  border:1px solid rgba(255,255,255,0.15);
}

.project-facts__title{
  font-weight:600;
  margin-bottom:10px;
  letter-spacing:0.04em;
  color:#ffffff;
}

.project-facts__item{
  font-size:0.95rem;
  margin-bottom:6px;
  color:#ffffff;
}

.project-facts__item span{
  font-weight:600;
  color:#9fd3c7;
}

.feature__content--full {
    width: 100%;
}

.feature__diagram {
    margin: 1.5rem 0 2rem 0;
    text-align: center;
}

.feature__diagram img {
    display: block;
    width: 100%;
    max-width: 980px;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.adventures--contact .button{
    background-color: rgb(91, 210, 152);
    border: none;
    color: #093c42;
    font-weight: 600;
    padding: 0.9rem 2.2rem;
}

.adventures--contact .button:hover{
    background-color: rgb(75, 185, 135);
}