
@font-face {
    font-family: satoshi;
    src: url(assets/Font/Satoshi-Medium.otf);
}
:root {
  --turk: #00ACAC;
}
* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    font-family: satoshi;
    hyphens: auto;
    overflow-x: hidden;
      scroll-behavior: smooth;
    transition: scroll-behavior 1s cubic-bezier(.92,.07,.61,1.01); /* Example easing */
}
@media screen and (max-width:600px) {
  p {
    font-size: 16px;
  }
}


/*HEADER*/
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 20vh;
  background: transparent; /* Transparent background */
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
  height: 20vh;
}

    .menu-toggle {
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      z-index: 1;
      right: 5%;
      position: fixed;
      font-size: 20px;
      text-transform: lowercase;
      transition: all .5s ease;
      
    }
    .menu-toggle:hover {
      color: var(--turk);
    }

    .logo {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1001;
    }

    .logo a img {
      height: 40px;
    }

    .right-space {
      width: 24px;
    }

    .menu-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: var(--turk);
      z-index: 999;
      padding: 2rem;
      overflow-y: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-20px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .menu-overlay.active {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .menu-close {
      position: absolute;
      top: 7%;
      right: 5%;
      background: none;
      border: none;
      font-size: 2rem;
      cursor: pointer;
      color: white;
      transition: all .5s ease;
    }
    .menu-close:hover {
      color: black;
    }

    .menu-content {
      display: flex;
      gap: 3rem;
      justify-content: space-evenly;
      width: 100%;
      height: 100%;
      align-items: center;
    }

    .menu-content div a {
      text-decoration: none;
      font-size: 20px;
      color: #fff;
      transition: color 0.2s ease;
    }
    .menu-content div:hover {
      transform: translateY(-20px);
    }

    .menu-content h3 {
      font-size: 32px;
      color: white;
      border-bottom: 2px solid #fff;
      margin-bottom: 16px;
            transition: color 0.2s ease;

    }
    .menu-content div {
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 200px;
      transition: all .5s ease;
    }

    .menu-content div a:hover, .menu-content div a h3:hover {
      color: #000;
    }
    .nav-header.scrolled .logo,
.nav-header.scrolled h1 {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: all 0.3s ease;
}
.nav-header .logo,
.nav-header h1 {
  transition: all 0.3s ease;
}
.nav-header.scrolled {
  height: 10vh;
}
.nav-container {
  transition: height 0.3s ease;
}
.nav-header.scrolled .nav-container {
  height: 10vh;
}
.nav-header,
.nav-container {
  overflow: hidden;
}

@media (min-width: 768px) {
  .menu-overlay {
    padding: 4rem;
  }

  .menu-section h2 {
    font-size: 2rem;
  }

  .menu-section a {
    font-size: 1.25rem;
  }
}
/*-----------------------------------------------------*/
/*HERO*/
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero-image-wrapper {
  width: 100%;
  height: 100%;
  animation: shrinkWrapper 5s ease forwards;
  overflow: hidden;
    animation-delay: 1s; /* Delay animation start */
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 10%;
  color: white;
  opacity: 0;
  animation: fadeInText 2s cubic-bezier(.92,.07,.61,1.01) 1s forwards;
  animation-delay: 1.5s; /* Delay animation start */
}
@keyframes fadeInText {
  to {
    opacity: 1;
  }
}
@keyframes shrinkWrapper {
  0% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 90%;
    height: 70%;
    margin: auto; /* center the image visually */
  }
}
.learnmore {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: 300;
  text-decoration: none;
  color: white;
  margin-top: 24px;
  transition: all .5s ease;

}
.learnmore:hover {
color: black;}
@media screen and (max-width:600px) {
  .nav-container h1 {
  display: none;  
  }
  .logo {
  left: 15%;
  }
  .menu-toggle, .menu-close {
    right: 15%;
  }
  .menu-content {
    flex-direction: column;
    gap: 0;
  }
  .menu-content div {
    height: fit-content;
  }
  .hero-text {
    width: 50%;
    text-align: center;
    top: 45%;
  }

}
/*-----------------------------------------------------*/
/*OVERVIEW*/
.overview {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  padding: 2rem;
  background: #fff;
  height: 100vh;
}

.overviewContainer {
  position: relative;
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: white;
  transition: transform 0.3s ease;
  height: 100%;
}

.overviewContainer img, .overviewContainer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.overviewContainer h3 {
  position: absolute;
  bottom: 2rem;
  padding: 0 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  z-index: 2;
  transition: bottom 0.3s ease;
}

/* Vignette Effect */
.overviewContainer::before, .lpItem::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.overviewContainer:hover::before, .lpItem:hover::before {
  opacity: 1;
}

.overviewContainer:hover h3 {
  bottom: 2.5rem;
}
.sectionTitle {
margin-top: 124px;
margin-bottom: 32px;
font-size: 32px;
padding-left: 2rem;
}
@media screen and (max-width:600px) {
  .sectionTitle {
    padding: 0;
    margin: 0px 0px 16px 0;
    text-align: center;

  }
  .overview {
    width: 100%;
    padding: 0 16px 0 16px;
    height: fit-content;
    margin-bottom: 124px;
flex-direction: column;
align-items: center;

  }
  .overview a {
    width: 90%;
    height: 200px;
    aspect-ratio: 1;
  }
  .overview a h3 {
    font-size: 15px;
  }
}

/*-----------------------------------------------------*/
/*Footer*/

.footer {
  background-color: var(--turk);
  color: white;
  padding: 5%;
  font-family: sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-col {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer strong {
  font-weight: bold;
}

.newsletter h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

@media screen and (max-width:600px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-logo {
    display: flex;
    justify-content: center;
  }
  .footer-col {
    text-align: center;
  }
}


/*-----------------------------------------------------*/
/*DESCRIPTIONS*/
.desc {
  padding: 2rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  
}
.desc div {
  width: 60%;
  display: flex;
  align-items: left;
  flex-direction: column;
}
.btn {
  padding: 8px 16px;
  border: 1px solid black;
  border-radius: 10px;
  width: fit-content;
  margin-top: 24px;
  text-decoration: none;
  color: black;
  text-transform: lowercase;
  transition: all .5s ease;
}
.btn:hover {
  background-color: var(--turk);
  color: white;
  border: 1px solid var(--turk);
}

/*-----------------------------------------------------*/

/*Latest Projects*/
.latestProject {
  width: 100%;
  height: fit-content;
  margin-bottom: 124px;
  margin-top: 124px;
}
.lpContainer {
  display: flex;
  justify-content: space-evenly;
}
.lpItem {
  width: 300px;
  height: 300px;
overflow: hidden;
position: relative;
display: flex;
justify-content: center;

}
.lpItem img {
  width: 300px;
  height: 300px;
  object-fit: cover;
}
.lpItem h3 {
  position: absolute;
  z-index: 2;
  text-decoration: none;
  color: white;
  bottom: 5%;
}

/*-----------------------------------------------------*/
/*Private etc.*/

.packages {
  width: 100%;
  height: fit-content;
  padding: 5rem;
}
.packages p {
  width: 50%;
  font-size: 20px;
  text-align: justify;
  padding-left: 2rem;
}
.package {
  width: 370px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all .5s ease;
  padding: 10px;
}
.package img {
  width: 350px;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.packagesContainer {
  display: flex;
  justify-content: space-evenly;
  margin-top: 124px;
  flex-wrap: wrap;
}
.package p, .package h3 {
  width: 100%;
  text-align: left;
  color: black;
  transition: all .5s ease;
  margin-top: 8px;
  padding-left: 0;

}
.package:hover {
  opacity: .95;
  transition: .2s ease-in-out;
  background-color: var(--turk);
}
.package:hover p, .package:hover h3 {
  color: white;
}
@media screen and (max-width:600px) {
  .packages {
    padding: 0;
    width: 90%;
    margin: 0 auto 124px auto;
  }
  .packages p {
    width: 100%;
    text-align: justify;
    hyphens: auto;
  }
  .packagesContainer {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .label {
    font-size: 16px;
    text-align: center;
  }
  .expandable {
    width: 90%;
    margin: auto;
  }
  .toggle-content p {
    text-align: justify;
  }
  .packages .sectionTitle {
    text-align: left;
  }
}
/*-----------------------------------------------------*/
/*Expandable*/
.expandable {
  margin-bottom: 124px;
}
.info-toggle {
  max-width: 800px;
  margin: 2rem auto;
  font-family: sans-serif;
}

.toggle-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
  padding: 0;
}

.toggle-btn .icon {
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.toggle-content {
  display: none;
  margin-top: 1.5rem;
  animation: fadeIn 0.4s ease forwards;
}

.toggle-content h3,
.toggle-content h4 {
  font-weight: bold;
  margin-top: 1.5rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/*-----------------------------------------------------*/

/*Package*/
.packageDetail {
  padding: 2rem;
  margin-top: 8rem;
}
.packageDetailContainer {
  display: flex;
}
.packageDetailContainer div {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.packageDetailContainer div img {
  width: 50%;
}
.packageDesc {
  width: 100%;
  background-color: #a2ffff;
  color: black;
  height: fit-content;
  padding: 5% 2rem;
}
.descContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.descBox {
  display: flex;
  flex-direction: column;
  width: 30%;
  gap: 8px;
}
.barrier {
  height: 2px;
  background-color: black;
}
.text {
  width: 30%;
  text-align: justify;
  font-size: 13px;
  margin-top: 48px;
}
.einblicke {
    width: 70vw;
    
  color: black;
  height: fit-content;
  padding: 5% 2rem;
  margin: auto;
}
.gridEinblicke {
  display: grid;
  grid-template-rows: 2, 1fr;
  grid-template-columns: 2, 1fr;
  width: 60%;
  margin: auto;
}
.gridEinblicke div {
 max-width: 200px;
}
.gridEinblicke div img {
 max-width: 200px;
 height: auto;
}
.gridEinblicke div:nth-of-type(1) {
  grid-column: 2;
}
.gridEinblicke div:nth-of-type(2) {
  grid-column: 1;
}
@media screen and (max-width:600px) {
.packageDetailContainer {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  gap: 32px;
}
.packageDetailContainer div:nth-of-type(2) {
  width: 100%;
  text-align: center;
}
.packageDetailContainer div:nth-of-type(1) img {
width: 100%;
}
.packageDetail {
  padding: 0 0 32px 0;
  height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section {
  width: 90%;
  margin: auto;
  
}
.btn {
  width: 80%;
  font-size: 18px;
}
.descBox {
  width: 100%;
}
.text {
  width: 100%;
  font-size: 16px;
}

.einblicke {
 display: none;
}
}
/*-----------------------------------------------------*/
/*About*/
.about {
  width: 100%;
  padding: 5% 2rem;
      background-color: #a2ffff;
      height: 100vh;

}
.aboutText {
  width: 100%;
  margin: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}
.aboutText p {
  width: 40%;
  margin: auto;
  text-align: justify;
}
.aboutSection {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  margin-bottom: 5%;
}
.aboutContainer {
display: flex;
gap: 2rem
;
}
.aboutContainer div {
  width: 300px;
  height: fit-content;
}
.aboutContainer div img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.breaker {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
}
@media screen and (max-width:600px) {
  .aboutText {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    gap: 24px;
  }
  .about {
    height: 50vh;
  }
  .aboutText p {
    width: 100%;
  }
  .aboutContainer {
    display: flex;
    flex-direction: column;
  }
  .text h1 {
text-align: start;  }
}
/*-----------------------------------------*/
/*AGB*/
.agb {
  padding: 2rem;
}
.divider {
  height: 2px;
  background-color: black;
  width: 100%;
  margin: 32px 0 64px 0;
}
.agb .text {
  width: 70;
}
/*-----------------------------------------*/
/*Buchen*/

.hidden {
  display: none;
}
  .formContainer {
    width: 60%;
    margin: auto;
    padding: 2rem;
  }
  .bookingForm {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    
  }
  .send {
    grid-column-start: 1;
    grid-column-end: 3;
    margin: auto;
  }
  .form-group input, select{
    width: 100%;
    height: 32px;
    padding-left: 8px;
  }
  label {
    margin-bottom: 16px;
  }
  @media screen and (max-width: 600px) {
    .bookingForm {
      display: flex;
      flex-direction: column;
    }
    .formContainer {
      width: 100%;
      padding: 0 0 2rem 0;
    }
  }
  