body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f5f5;
    color: #ffffff;
}

header {
    background: #5b82a9;
    color: #fff;
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 6vw;
    text-align: center;
    top: 0;
    overflow: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 5vw;
    margin-right: 10px;
    margin-left: 1.5vw;
    border-radius: 10px;
}

.navbar-title {
    font-size: 1.8vw;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2vw;
    margin: 0;
    padding: 0;
    padding-right: 2vw;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    size: 1.1vw;
    font-size: 1.8vw;
    transition: color 0.2s;
    padding: 0.5vw;
}

.nav-links li a:hover {
    background-color: #5b7ca9;
    box-shadow: rgba(91, 124, 169, 0.396) 0px 3px 8px;
    transition: ease-in 0.3s;
    transition: ease-out 0.3s;
    border-radius: 10px;
    color: #e37643;
}

.content {
    position:absolute;
    top: 5vw;
    left: 3%;
    right: 3%;
    bottom: 12vw;
    max-width: 90%;
    max-height: 90%;
    min-height: 85%;
    margin: 2vw auto;
    padding: 0 1vw;
}

h1 {
    font-size: 3vw;
    margin-bottom: 1vw;
    color: #3991ef;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
    text-emphasis: bold;
}

.description {
    display: flex;
    align-items: stretch;
    gap: 2vw;
}

.description-box {
    max-width: 100%;
    border: 2px solid #3d3d3d;
    background-color: rgb(85, 85, 85);
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 0.6vw;
}

.description-emoji {
    font-size: 2vw;
    margin-right: 0.5vw;
    padding-left: 0.5vw;
}

.description-text {
    padding: 0.5vw;
    text-align: justify;
    color: #ffffff;
    font-size: 1.3vw;
    line-height: 1.5;
}

#Bildergalerie {
    max-width: 100%;
    float: right;
    object-fit:fill;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    align-self: stretch;
    max-height: 35vw;
}

.gallery-controls {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2vw;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: #fff;
    border: none;
    font-size: 3vw;
    z-index: 2;
    cursor: pointer;
    padding: 0 0.5vw;
    opacity: 0.7;
    transition: opacity 0.2s, color 0.2s;
}


.gallery-controls img#Bildergalerie {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
    transition: opacity 0.7s;
}

.booking-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5vw auto;
    padding: 1vw 2vw;
    border: 2px solid #3d3d3d;
    background-color: rgb(85, 85, 85);
    color: #fff;
    font-weight: bold;
    font-size: 2.5vw;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    min-width: 50%;
}

.booking-button:hover {
    background-color: #5b7ca9;
    box-shadow: rgba(91, 124, 169, 0.396) 0px 3px 8px;
    transition: ease-in 0.3s;
    transition: ease-out 0.3s;
    border-radius: 10px;
    color: #FFF;
}

/* Google Maps */

.embed-map-fixed {
    position: relative;
    text-align: right;
    min-width: 100%;
    height: 400px;

}

.embed-map-container {
    overflow: hidden;
    background: none !important;
    min-width: 100%;
    height: 400px;
}

.embed-map-frame {
    min-width: 100% !important;
    height: 80% !important;
    border-radius: 30px;
}

footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 0.2vw 0;
    bottom: 0;
    width: 100%;
    margin-top: 1vw;
    font-size: 0.9vw;
    position: fixed;
}


/* MOBILE ANSICHT */


@media screen and (max-width: 800px) {
  .description-box{
    min-width: 100%; 
    max-width: 100%;
    margin-bottom: 2vw;
  }

  .description-text {
    font-size: 3vw;
    padding: 1.5vw;
  }

  .description-emoji {
    font-size: 3vw;
    padding: 1.5vw;
  }

  #Bildergalerie {
    max-width: 100%;
    max-height: 100%;
    margin-bottom: 3vw;
    margin-top: 3vw;
  }
  
  .booking-button {
    font-size: 3.5vw;
  }

  .logo img {
    height: 10vw;
    margin-right: 10px;
    margin-left: 1.5vw;
    border-radius: 10px;
  }

  .navbar, header {
    min-height: 10vw;
  }
  
  .navbar-title, .nav-links li a {
    font-size: 3vw
  }

  .content {
    top: 9vw;
  }

  h1 {
    font-size: 4vw;
  }

  footer {
    font-size: 2vw;
  }
}


/* KONTAKT */

.content-container {

    max-width: 100vw;
    margin: 0 auto;
    background-color: rgba(85, 85, 85, 0.8);
    padding: 2vw;
    border-radius: 10px;
    margin-bottom: 2vw;
}

.contact-info {
    font-size: 2vw;
    line-height: 1.5;
    text-align: justify;
    color: #ffffff;
}

/* KONTAKT: MOBILE */
@media screen and (max-width: 800px) {
    .contact-info {
        font-size: 5vw;
    }

    .heading-contact {
        font-size: 8vw;
    }
}