/*Allgemeine CSS*/
html{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
  }

body {
margin: 0px;
padding: 0px;
height: 100%;
background-color: #C9E5E0;
font-family: 'Overlock';
color: #2A5248;
}
  
main{
position: relative;
margin: auto;
}

section{
  max-width: 1600px;
  position: relative;
  margin: auto;
}

button{
  cursor: pointer;
}

.loginNoShow{
  display: none;
}

.loginShow{
  display: block;
}

.custom-select{
  position: relative;
  margin: auto;
}

.custom-select select {
  background-color: #D2B992;
  padding-top: 6px;
  padding-bottom: 6px;
  width: 81%;
  @media (max-width:730px) {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: large;
  }
}
  
@media screen and (max-width: 800px) {
.mobileNoShow {
    display: none !important;
}
}

@media screen and (min-width: 800px) {
.DesktopNoShow {
    display: none !important;
}
}

.close {
  color: #4F270E;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.flex{
  display: flex;
  justify-content: space-between;
  margin: 0.5rem;
  flex-wrap: wrap;
  @media (max-width:730px) {
    margin: unset;
  }
}

.NoMaxWidth{
  max-width: unset !important;
}

.MaxWidth{
  max-width: 1600px;
  position: relative;
  margin: auto;
}

.NoMarginTop{
  margin-top: unset !important;
}

.NoMarginBottom{
  margin-bottom: unset !important;
}

.NoMarginLeft{
  margin-left: unset !important;
}

.NoMarginRight{
  margin-right: unset !important;
}

.MarginTop{
  margin-top: 2rem;
}

.MarginBottom{
  margin-bottom: 2rem;
}

.MarginRight{
  margin-right: 2rem;
  @media (max-width:730px) {
    margin-right: 1rem;
  }
}

.MarginLeft{
  margin-left: 2rem;
  @media (max-width:730px) {
    margin-left: 1rem;
  }
}

.xxLarge{
  font-size: xx-large;
  @media (max-width:730px) {
    font-size: x-large;
  }
}

.xLarge{
  font-size: x-large;
  @media (max-width:730px) {
    font-size: x-large;
  }
}

.center{
  text-align: center;
}

.center-center{
  position: relative;
  display: flex;
  justify-content: center;
  top: 0.4rem;
}


.BorderRed{
  border: 1px solid #4F270E;
  border-radius: 10px;
}

.GreenFont{
    color:#2A5248;
}

.MiddleGreenFont{
    color: #3F6F63;
}

.LightGreenFont{
    color: #C9E5E0;
}

.DarkGreenFont{
  color: #093329;
}

.BlueFont{
  color:#2E3E53;
}

.MiddleBlueFont{
  color: #445770;
}

.LightBlueFont{
  color: #63748A;
}

.DarkBlueFont{
  color: #0D1E34;
}

.RedFont{
  color:#7E5841;
}

.MiddleRedFont{
  color: #AA7D62;
}

.LightRedFont{
  color: #D2AA92;
}

.DarkRedFont{
  color: #4F270E;
}

.YellowFont{
  color:#D2B992;
}

.MiddleYellowFont{
  color: #AA8F62;
}

.LightYellowFont{
  color: #7E6741;
}

.DarkYellowFont{
  color: #4F360E;
}



.GreenBack{
    background-color: #2A5248;
}

.MiddleGreenBack{
    background-color: #3F6F63;
}

.LightGreenBack{
    background-color: #C9E5E0;
}

.DarkGreenBack{
    background-color: #093329;
}

.BlueBack{
  background-color:#2E3E53;
}

.MiddleBlueBack{
  background-color: #445770 !important;
}

.LightBlueBack{
  background-color: #63748A !important;
}

.DarkBlueBack{
  background-color: #0D1E34;
}

.RedBack{
  background-color:#7E5841;
}

.MiddleRedBack{
  background-color: #AA7D62;
}

.LightRedBack{
  background-color: #D2AA92;
}

.DarkRedBack{
  background-color: #4F270E;
}


/*Fonts*/
.delius-regular {
    font-family: "Delius", cursive;
    font-weight: 400;
    font-style: normal;
}

.overlock-regular {
    font-family: "Overlock", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
.overlock-bold {
    font-family: "Overlock", sans-serif;
    font-weight: 700;
    font-style: normal;
}
  
.overlock-black {
    font-family: "Overlock", sans-serif;
    font-weight: 900;
    font-style: normal;
}
  
.overlock-regular-italic {
    font-family: "Overlock", sans-serif;
    font-weight: 400;
    font-style: italic;
}
  
.overlock-bold-italic {
    font-family: "Overlock", sans-serif;
    font-weight: 700;
    font-style: italic;
}
  
.overlock-black-italic {
    font-family: "Overlock", sans-serif;
    font-weight: 900;
    font-style: italic;
}

.overlock-sc-regular {
    font-family: "Overlock SC", sans-serif;
    font-weight: 400;
    font-style: normal;
}
  

input[type="checkbox"] {
  accent-color: #4F270E;
  mix-blend-mode: color-burn;
  cursor: pointer;
}
  
  


/*Header*/
.header{
    background-color: #C9E5E0;
    max-width: 1600px;
    position: relative;
    margin: auto;
}

.hello {
  position: relative;
  margin: auto;
  display: flex;
}

.nav-logo img{
    width: 220px;
    border: 1px solid #2A5248;
    border-radius: 10px;
}

.nav-icons {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
    width: 40%;
    @media (max-width:730px) {
        width: 100%;
        margin-top: 1em;
    }
}

.icon-width{
  width: 100px;
}

.nav-icon:hover .hover-text {
  display: block;
}

.hover-text {
  display: none;
  position: absolute;
  transform: translate(-50%, -50%);
  background-color: #37493f;
  color: #C9E5E0;
  padding: 5px;
  border-radius: 10px;
  font-size: 12px;
}

img.header-icon {
    width: 50px;
}

@media screen and (max-width:730px) {
.nav-logo{
    text-align: center;	
    width: inherit;
    margin: auto;
}
}
  
nav.nav {
    display: flex;
    justify-content: space-between;
    margin: 0.5rem 1.5rem;
    flex-wrap: wrap;
}

.Header-Overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 35%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(99, 116, 138, 1);
  z-index: 3;
}

.Inner-Header-Overlay {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  @media (max-width: 875px) {
    width: 95%;
  }
}

.Header-Overlay-full {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(13, 30, 52, 0.98);
}

.Inner-Header-Overlay-full {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  @media (max-width: 875px) {
    width: 95%;
  }
}

.form-control {
  width: 80%;
  margin: 5px auto;
  position: relative;
  border: 1px solid #3F6F63;
  border-radius: 10px;
  line-height: 1.8rem;
}


.img-fit {
    width: 100%;
    object-fit: cover;
    height: auto;
}

  /*Footer*/

  #footer{
    position: relative;
    margin: auto;
    background-color: rgb(42, 82, 72, 1);
    padding-left: 5%;
    padding-right: 5%;
    margin-top: 2%;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    padding-top: 3.5rem;
    padding-bottom: 1rem;
  }

  #footer-import{
    max-width: unset !important;
  }

  #footer .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  #footer .footer-row {
    display: flex;
    justify-content: space-around;
    margin-left: 5%;
    margin-right: 5%;
    font-size: 1.2em;
    @media (max-width: 875px) {
      width: 100%;
      display: block;
      margin-left: unset;
    }
  }

  .footer-contact{
    text-wrap: nowrap;
    @media (max-width: 875px) {
      text-align: center;
    }
  }

  .text-center{
    text-align: center;
    margin-top: 2%;
    @media (max-width: 875px) {
      text-align: center;
    }
  }
  
  #footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #footer ul li {
    margin-bottom: 10px;
  }
  
  #footer ul li a {
    color: #C9E5E0;
    text-decoration: none;
  }
  
  #footer ul li a:hover {
    color: #AA7D62;
  }
  
  #footer .footer-social-media {
    margin-top: 6%;
    @media (max-width: 875px) {
      display: flex;
      justify-content: space-around;
      margin-right: 8%;
    }
  }

  .footer-social-media a {
    padding: 0px 10px 0px 10px;
  }

  .footer-informationen ul{
    @media (max-width: 875px) {
      display: flex;
      justify-content: space-around;
      margin-top: 1%;
      margin-bottom: 2%;
    }
  }

  .copyright p{
    margin-left: unset !important;
    @media (max-width: 875px) {
      margin-left: 3%;
      margin-right: 3%;
    }
  }

  .social-margin{
    margin-top: 6%;
    @media (max-width: 875px) {
      margin-top: 1%;
      margin-bottom: 1%;
    }
  }

  .footer-row a {
    color: #C9E5E0;
    text-decoration: none;
  }

  .img-icon{
    max-width: 45px;
  }
  
  
  /*Ende Footer*/


   /*Index Seite*/

  #img-header-index{
    margin-top: 2rem;
    @media (max-width:730px) {
      margin-top: 1rem;
    }
  }

  
  .slider {
    position: relative;
    width: 100%;
    height: 350px;
    @media (max-width:730px) {
        height: 220px;
    }
  }
  
  .slides {
    position: relative;
    margin: auto;
    top: 0;
    left: 0;
    width: 87%;
    height: 80%;
    border: 2px solid #445770;
    border-radius: 40%;
    @media (max-width:730px) {
      width: 98%;
      border-radius: 15%;
    }
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 0.5s;
    border-radius: 40%;
    @media (max-width:730px) {
      border-radius: 15%;
    }
  }
  
  .slide.active {
    opacity: 1;
  }
  
  .slide:not(.active) {
    opacity: 0;
  }
  
  .controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .prev, .next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    font-size: 18px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background-color: #445770;
    color: #C9E5E0;
    cursor: pointer;
    z-index: 1;
  }
  .prev {
    left: 10px;
    font-size: xxx-large;
  }
  .next {
    right: 10px;
    font-size: xxx-large;
  }
  
  #index-intro{
  position: relative;
  top: -1.5rem;
  margin: auto;
  background-color: rgb(63, 111, 99, 0.8);
  padding: 3%;
  display: flex;
  clip-path: polygon(0 calc(100% - 2rem), 0 1rem, 100% 0, 100% 100%);
  @media (max-width:730px) {
    clip-path: polygon(0 calc(100% - 0.9rem), 0 1rem, 100% 0, 100% 100%);
  }
}

#index-intro-loc{
  position: relative;
  top: -1.5rem;
  margin: auto;
  background-color: rgb(68, 87, 112, 0.8);
  padding: 3%;
  display: flex;
  clip-path: polygon(0 calc(100% - 2rem), 0 1rem, 100% 0, 100% 100%);
  @media (max-width:730px) {
    clip-path: polygon(0 calc(100% - 0.9rem), 0 1rem, 100% 0, 100% 100%);
  }
}

  .index-intro-boxen{
    position: relative;
    margin: auto;
    display: flex;
    flex-wrap: nowrap;
    padding: 1rem 0rem 1rem 0rem;
    overflow-x: scroll;
    scrollbar-width: thin;
  }
  
  .index-container-intro {
    display: flex;
    position: relative;
    background-color: #093329;
    width: 45%;
    height: auto;
    border-radius: 10px;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    max-width: 880px;
    margin-left: 1rem;
    margin-right: 1rem;
    min-width: 280px;
    @media (max-width:730px) {
      width: 95%;
      margin-top: 1rem;
    }
  }

  .index-container-intro-loc {
    display: flex;
    position: relative;
    background-color: #0D1E34;
    width: 45%;
    height: auto;
    border-radius: 10px;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    max-width: 880px;
    margin-left: 1rem;
    margin-right: 1rem;
    min-width: 280px;
    @media (max-width:730px) {
      width: 95%;
      margin-top: 1rem;
    }
  }
  
  .container-intro {
    display: flex;
    flex-wrap: nowrap;
  }
  
  
  .intro-text {
    border-radius: 10px;
    margin-right: 3%;
    padding-left: 2%;
  }
  
  .intro-header-text {
    margin-top: 2%;
    position: relative;
    margin-right: 2%;
    border: 1px solid #0D1E34;
    border-radius: 10px;
    top: -1rem;
    left: -1rem;
    background-color: #C9E5E0;
    padding-left: 5px;
  }

  .intro-header-text-header {
    margin-top: -9%;
    margin-left: -9%;
    position: relative;
    margin-right: 25%;
    border: 1px solid #0D1E34;
    border-radius: 10px;
    top: -1rem;
    left: -1rem;
    background-color: #C9E5E0;
    padding-left: 5px;
  }

  .intro-header-text-loc {
    margin-top: 2%;
    position: relative;
    margin-right: 2%;
    border: 1px solid #4F360E;
    border-radius: 10px;
    top: -1rem;
    left: -1rem;
    background-color: #D2B992;
    padding-left: 5px;
  }

  .location-types-boxes{
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    scrollbar-width: thin;
  }

  .location-overview-item-container {
    position: relative;
    background-color: #2A5248;
    border-radius: 10px;
    margin-bottom: 1rem;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
    width: 220px;
    min-width: 220px;
    height: auto;
    margin-top: 1.5rem;
    cursor: pointer;
  }

  .location-overview-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  

  .location-img-banner {
    height: 200px;
    border-radius: 10px;
    display: flex;
    max-width: 200px;
    padding-left: 2%;
    width: 90%;
    margin-right: 0;
    padding-left: 0;
    margin-left: -3px;
  }

  
  .location-text-container {
    display: inline-block;
    width: 100%;
    margin-right: 5%;
    margin-left: 5%;
    margin-top: -5%;
    text-align: center;
  }

  #index-event-type{
    position: relative;
    margin: auto;
    background-color: rgb(68, 87, 112, 0.8);
    padding-left: 5%;
    padding-right: 5%;
    margin-top: 2%;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    padding-top: 3.5rem;
    padding-bottom: 5.5rem;
    @media (max-width:730px) {
      clip-path: polygon(0 calc(100% - 0.5rem), 0 2rem, 100% 1rem, 100% 95%);
      padding-bottom: 3.5rem;
    }
  }

  .event-type-boxes{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0% 1% 0% 1%;
    max-height: 250px;
    overflow-y: scroll;
    scrollbar-width: thin;
  }

  .event-type-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 13rem;
    height: 50px;
    border: 2px solid #0D1E34;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
    text-align: center;
    color: #0D1E34;
    cursor: pointer;
    @media (max-width:730px) {
      width: 10rem;
      margin-top: 0.4rem;
      margin-left: 0.1rem;
      margin-right: 0.1rem;
      margin-bottom: 1rem;
    }
    &:hover{
      background-color: #2E3E53;
      color: #C9E5E0;
    }
  }

  #index-new-location-container{
    background-color: #AA7D62;
    margin: 3rem;
    border-radius: 10px;
    border: 2px solid #4F270E;
    justify-items: center;
    height: 700px;
    @media (max-width:730px) {
      width: 96%;
      position: relative;
      margin-left: auto;
      margin-right: auto;
    }
  }
  
  .center-text {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #4F270E;
    border-radius: 10px;
    text-align: center;
    font-size: xx-large;
    color: #D2AA92;
    z-index: 1;
    padding: 1%;
    @media (max-width:1000px) {
      font-size: large;
    }
  }
  
  .location-containers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .location-container {
    width: 18%;
    height: 25%;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #4F270E;
    cursor: pointer;
    
  }

  .loc-con1 {
    display: flex;
    position: absolute;
    top: 5%;
    left: 7%;
  }

  .loc-con2 {
    display: flex;
    position: absolute;
    top: 11%;
    left: 30%;
  }

  .loc-con3 {
    display: flex;
    position: absolute;
    top: 2%;
    left: 52%;
  }

  .loc-con4 {
    display: flex;
    position: absolute;
    top: 14%;
    left: 74%;
  }

  .loc-con5 {
    display: flex;
    position: absolute;
    top: 46%;
    left: 7%;
  }

  .loc-con6 {
    display: flex;
    position: absolute;
    top: 61%;
    left: 29%;
  }

  .loc-con7 {
    display: flex;
    position: absolute;
    top: 69%;
    left: 50%;
  }

  .loc-con8 {
    display: flex;
    position: absolute;
    top: 54%;
    left: 72%;
  }
  
  .location-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #hover-content {
    display:none;
    position: absolute;
    background-color: #0D1E34;
    border-radius: 10px;
    top: 2%;
    left: 2%;
  }
  .location-container:hover #hover-content {
    display:block;
  }

  /*Profile Seite*/

    #intro-profile{
      position: relative;
      top: -1.5rem;
      margin: auto;
      background-color: rgb(9, 51, 41, 0.8);
      padding: 3%;
      display: flex;
      clip-path: polygon(0 calc(100% - 2rem), 0 1rem, 100% 0, 100% 100%);
      @media (max-width:730px) {
        clip-path: polygon(0 calc(100% - 0.9rem), 0 1rem, 100% 0, 100% 100%);
      }
    }
    #intro-profile-loc{
      position: relative;
      top: -1.5rem;
      margin: auto;
      background-color: rgb(13, 30, 52, 0.8);
      padding: 3%;
      display: flex;
      clip-path: polygon(0 calc(100% - 2rem), 0 1rem, 100% 0, 100% 100%);
      @media (max-width:730px) {
        clip-path: polygon(0 calc(100% - 0.9rem), 0 1rem, 100% 0, 100% 100%);
      }
    }
  
    .intro-profile-boxen{
      position: relative;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 1rem 0rem 1rem 0rem;
      min-width: 55rem;
      @media (max-width:730px) {
        min-width: unset;
      }
    }
    
    .container-intro-profile {
      position: relative;
      background-color: #D2B992;
      width: 45%;
      height: auto;
      border-radius: 10px;
      align-items: flex-start;
      margin-bottom: 0.5rem;
      max-width: 880px;
      margin-left: 1rem;
      margin-right: 1rem;
      min-width: 280px;
      @media (max-width:730px) {
        width: 95%;
        margin-top: 1rem;
      }
    }
    
    .container-overview-profile {
      position: relative;
      background-color: #D2B992;
      width: 15%;
      height: auto;
      min-height: 250px;
      border-radius: 10px;
      align-items: flex-start;
      margin-bottom: 0.5rem;
      max-width: 880px;
      margin-left: 1rem;
      margin-right: 1rem;
      min-width: 180px;
      @media (max-width:730px) {
        width: 95%;
        margin-top: 1rem;
        min-height: auto;
        min-width: 280px;
      }
    }

    .container-loc-profile {
      position: relative;
      background-color: #D2B992;
      width: 70%;
      height: auto;
      border-radius: 10px;
      align-items: flex-start;
      margin-bottom: 0.5rem;
      max-width: 880px;
      margin-left: 1rem;
      margin-right: 1rem;
      min-width: 680px;
    }
    @media (max-width: 1000px) {
      .container-loc-profile {
        min-width: unset;
      }
    }
    @media (max-width: 730px) {
      .container-loc-profile {
        width: 95%;
        margin-top: 1rem;
      }
    }

    .loc-users-table-container {
      max-width: 90%;
      margin: 0 auto;
      margin-top: 1rem;
    }
  
    .loc-users-table {
        border-collapse: collapse;
    }
  
    .loc-users-table th, .loc-users-table td {
        border: 1px dashed #4F270E;
        padding: 10px;
        text-align: left;
    }
  
    .loc-users-table th {
        background-color: #D2B992;
    }

    .loc-links{
      text-decoration: none;
      font-size: 1.2rem;
    }
    
    .intro-text-profile {
      border-radius: 10px;
      margin-right: 3%;
      padding-left: 2%;
    }

    .intro-text-profile li{
      list-style: none;
      margin-left: 1rem;
      padding: 2% 0% 2% 0%;
    }

    .intro-text-profile-loc {
      border-radius: 10px;
      margin-right: 3%;
      padding-left: 2%;
      display: grid;
      grid-template-columns: 3.5fr 0.2fr 3.5fr;
      align-items: center;
    }

    .intro-text-profile-loc-overview {
      border-radius: 10px;
      margin-right: 3%;
      padding-left: 2%;
      display: grid;
      grid-template-columns: 1.5fr 0.2fr 2.5fr 0.2fr 4.0fr 0.2fr 1fr;
      align-items: center;
    }
    
    .button-container {
      grid-column: 1 / -1;
    }
    
    .header-text-profile {
      width: 70%;
      margin-top: 2%;
      position: relative;
      margin-right: 2%;
      border: 1px solid #093329;
      border-radius: 10px;
      top: -1rem;
      left: -1rem;
      background-color: #AA7D62;
      padding-left: 5px;
    }

    .header-text-loc {
      width: 70%;
      position: relative;
      margin-right: 2%;
      border: 1px solid #093329;
      border-radius: 10px;
      top: -1rem;
      left: -1rem;
      background-color: #AA7D62;
      padding-left: 5px;
    }

    .form-control-darkRed {
      width: 80%;
      margin: 5px auto;
      position: relative;
      border: 1px solid #3F6F63;
      border-radius: 10px;
      line-height: 1.8rem;
      color: #4F270E;
      background-color: #C9E5E0;
    }

    .form-group-profile{
      width: 100%;
      margin: 0.4rem;
      display: grid;
      gap: 0.4rem;
    }

    .form-group-profile-overview{
      width: 100%;
      margin-right: 0.4rem;
      margin-left: 0.4rem;
      display: grid;
      gap: 0.4rem;
    }

    .tickbox-container {
      display: grid;
      gap: 0.2rem;
      grid-template-columns: 0.2fr 1fr 0.2fr 1fr 0.2fr 1fr;
      align-items: center;
  }

  .dropdown-container {
    display: none;
  }

  @media only screen and (max-width: 768px) {
      .nav-links {
          display: none;
      }
      .dropdown-container {
          display: block;
      }
  }

  #add-profile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 62, 83, 0.8);
    display: none;
    z-index: 5;
  }

  #update-profile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 62, 83, 0.8);
    display: none;
    z-index: 5;
  }
  
  .profile-overlay-container {
    overflow-y: auto;
    max-height: 500px; /* adjust the height to your liking */
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #D2B992;
    border: 1px solid #1C3048;
    color: #4F270E;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }


  /*Ende Profile Seite*/

  /*FAQ*/
  #faq-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(245, 248, 246, 0.6);
    display: none;
    z-index: 2;
  }
  
  .faq-container {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #dfe8e2;
    border: 1px solid #577564;
    color: #37493f;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  
  .close-faq {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
  }

  #faq-list {
    overflow-y: auto;
    max-height: 500px; /* adjust the height to your liking */
    padding: 10px;
    border: 1px solid #577564;
    list-style: none;
    font-size: 1.2em;
  }

  #faq-search {
    width: 30%;
  }

  /*Ende FAQ*/


  /*AGB*/
  #agb-overlay, #imp-overlay, #data-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(245, 248, 246, 0.6);
    display: none;
    z-index: 5000;
  }
  
  .agb-container, .imp-container, .data-container {
    overflow-y: auto;
    max-height: 500px; /* adjust the height to your liking */
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #dfe8e2;
    border: 1px solid #577564;
    color: #37493f;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }

    /*Ende AGB*/

  /*Cookies*/

  #cookieBanner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(95, 136, 126, 0.6);
    display: none;
    z-index: 2;
  }

  .cookie-container {
    overflow-y: auto;
    max-height: 500px; /* adjust the height to your liking */
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #37493f;
    border: 1px solid #2A5248;
    color: #37493f;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  

    /*Ende Cookies*/

  /*Button*/

  .standard-button{
    background-color: #3F6F63;
    color: #C9E5E0;
    font-size: 1.2em;
    padding: 10px 15px;
    cursor: pointer;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    margin-top: 5%;
    text-align: center;
    &:hover {
      background-color: #577564;
    } 
  }

  .standard-button-yellow{
    background-color: #AA8F62;
    color: #4F360E;
    font-size: 1.2em;
    padding: 10px 15px;
    cursor: pointer;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    margin-top: 5%;
    text-align: center;
    &:hover {
      background-color: #7E6741;
    } 
  }
  
  .standard-button-colorLight{
    position: relative;
    background-color: #C9E5E0;
    color: #2A5248 !important;
    font-size: 1.8em;
    padding: 1% 3.5%;
    cursor: pointer;
    border: 1px solid #37493f;
    border-radius: 10px;
    z-index: 1;
    text-align: center;
    &:hover {
      background-color: #2A5248;
      color: #C9E5E0 !important;
    } 
  }

  .standard-button-colorDarkRed{
    position: relative;
    background-color: #4F270E;
    color: #C9E5E0!important;
    font-size: 1.8em;
    padding: 1% 3.5%;
    cursor: pointer;
    border-radius: 10px;
    z-index: 1;
    text-align: center;
    &:hover {
      background-color: #7E5841;
      color: #C9E5E0 !important;
    } 
  }

  .standard-button-colorDarkRed-smaller{
    position: relative;
    background-color: #4F270E;
    color: #C9E5E0!important;
    font-size: 1.2em;
    padding: 1% 3.5%;
    cursor: pointer;
    border-radius: 10px;
    z-index: 1;
    text-align: center;
    width: 50%;
    margin: auto;
    &:hover {
      background-color: #7E5841;
      color: #C9E5E0 !important;
    } 
  }
  
  .standard-button-colorDarkBlue{
    position: relative;
    background-color: #0D1E34;
    color: #C9E5E0 !important;
    font-size: 1.8em;
    padding: 1% 3.5%;
    cursor: pointer;
    border: 1px solid #37493f;
    border-radius: 10px;
    z-index: 1;
    text-align: center;
    &:hover {
      background-color: #2E3E53;
    } 
  }


.go-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #D2AA92;
  color: #4F270E;
  padding: 10px 15px;
  border: 1px solid #7E5841;
  cursor: pointer;
  border-radius: 10px;
  z-index: 2;
}

.go-to-top:hover {
  background-color: #AA7D62
}

#myBtn{
  display: none;
}


.round-button {
  background-color: #C9E5E0;
  border: 1px solid #2A5248;
  border-radius: 50%;
  color: #577564;
  cursor: pointer;
  font-size: 1rem;
  height: 4.5rem;
  width: 4.5rem;
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px #2A5248, 0 2px 4px rgba(0, 0, 0, 0.2);
  top: 14rem;
  right: -1rem;
  @media (max-width: 800px) {
    top: 14rem;
  right: 0.5rem;
  }
  &:hover{
    background-color: #3F6F63;
    color: #C9E5E0;
    border: 1px solid #2A5248;
  }
}

button#acceptCookies {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: block;
  width: 40%;
  min-width: 30px;
}

.button-width{
  width: 40%;
  @media (max-width: 800px) {
    width: unset;
  }
}

/* Header Container Layout */
.header-container {
    display: flex;
    min-height: 600px;
    position: relative;
    gap: 0;
    margin-top: -4%;
    @media (max-width: 800px) {
        margin-top: 0;
    }

}

.booking-form-container {
    flex: 0 0 50%;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.booking-form {
    background: #093329;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    max-width: 480px;
    width: 100%;
    border: 2px solid #C9E5E0;
}

.booking-header h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: left;
    color: #222222;
}

.booking-header p {
    text-align: left;
    font-size: 14px;
    margin-bottom: 24px;
    color: #0D1E34;
}

.slider-container-new {
    flex: 1;
    position: relative;
    margin-left: -18%;
    z-index: 1;
    max-width: calc(100vw - 50% + 100px);
    display: flex;
    align-items: center;
}

.slider-overlay {
    width: 100%;
    height: calc(80% + 10px);
    min-height: 390px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0,0,0,0.28);
    margin-left: 60px;
    margin-top: -18px;
    margin-bottom: -18px;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 12px;
    color: #C9E5E0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-select, .form-input {
    width: 100%;
    padding: 14px 12px;
    border: 1px solid #C9E5E0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.15s ease;
    background-color: #63748A;
    color: #0D1E34;
    box-sizing: border-box;
}

.form-select::placeholder, .form-input::placeholder {
    color: #0D1E34;
}

.form-select:focus, .form-input:focus {
    outline: none;
    border-color: #C9E5E0;
    box-shadow: 0 0 0 2px rgba(34, 34, 34, 0.1);
}

.form-select:hover, .form-input:hover {
    border-color: #577564;
}


.form-step {
    min-height: 280px;
}

.booking-next-btn, .booking-back-btn {
    background: #C9E5E0;
    color: #0D1E34;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    width: 48%;
    margin-top: 2%;
}

.booking-next-btn:hover {
    background: #0D1E34;
    color: #C9E5E0;
}

.booking-back-btn {
    background: #C9E5E0;
    color: #0D1E34;
    margin-right: 12px;
}

.booking-back-btn:hover {
    background: #0D1E34;
    color: #C9E5E0;
}

.booking-submit-btn {
    background: #C9E5E0;
    color: #0D1E34;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    width: 48%;
    margin-top: 2%;
}

.booking-submit-btn:hover {
    background: #0D1E34;
    color: #C9E5E0;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.arrow-icon {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.booking-submit-btn:hover .arrow-icon,
.booking-next-btn:hover .arrow-icon {
    transform: translateX(2px);
}

/* Progress Indicator - Airbnb Style */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    gap: 8px;
}

.progress-step {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #C9E5E0;
    transition: all 0.2s ease;
}

.progress-step.active {
    background: #0D1E34;
    transform: scale(1.2);
}

.progress-line {
    width: 24px;
    height: 2px;
    background: #C9E5E0;
}

/* Slider Improvements */
.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    top: -2px;
    left: -2px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 0.5s ease;
    border-radius: 16px;
}
  
  .slide.active {
    opacity: 1;
  }
  
  .slide:not(.active) {
    opacity: 0;
  }
  
  .controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #0D1E34;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s ease;
}

.prev:hover, .next:hover {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.18);
    transform: translateY(-50%) scale(1.04);
}

.prev {
    left: 24px;
}

.next {
    right: 24px;
}

/* Responsive Design */
@media (max-width: 800px) {
    .header-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .booking-form-container {
        flex: none;
        padding: 24px 16px;
    }
    
    .booking-form {
        padding: 24px;
        margin: 0 8px;
    }
    
    .slider-container-new {
        margin-left: 0;
        margin-top: 0;
        height: 300px;
        max-width: none;
        align-items: stretch;
    }
    
    .slider-overlay {
        margin-left: 0;
        min-height: 300px;
        max-height: 300px;
        border-radius: 16px;
        height: 100%;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 12px;
    }
    
    .booking-back-btn {
        margin-right: 0;
        width: 100%;
        order: 2;
    }
    
    .booking-submit-btn, .booking-next-btn {
        width: 100%;
        order: 1;
    }
}

