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

@font-face {
  font-family: Fira-Regular;
  src: url(../fonts/FiraSans/FiraSans-Regular.woff);
}

@font-face {
  font-family: Fira-Light;
  src: url(../fonts/FiraSans/FiraSans-Light.woff);
}

@font-face {
  font-family: Fira-Medium-Italic;
  src: url(../fonts/FiraSans/FiraSans-MediumItalic.woff);
}

@font-face {
  font-family: Fira-SemiBold;
  src: url(../fonts/FiraSans/FiraSans-SemiBold.woff);
}

body {
  font-family: 'Fira-Light';
  color: white;
  line-height: 26px;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

body p {
  font-size: 17px;
}

strong {
  font-family: 'Fira-Regular', sans-serif;
  font-weight: bold; /* Verwendet die standardmäßige "bold" Stärke */
}

body h2 {
  font-family: 'Fira-Medium-Italic';
  font-size: 36px;
  line-height: 45px;
  margin: 0px;
}
@media screen and (max-width: 815px) {
  body h2 {
    font-size: 34px;
    line-height: 38px;
  }
}

body #content {
  color: #333333;
}

body #content section {
  padding-left: 10px;
  padding-right: 10px;
}

body {
  width: 100%;
}
body .slicknav_menu {
  display: block;
  position: fixed;
  width: 100%;
  z-index: 2;
}
@media screen and (min-width: 815px) {
  body .slicknav_menu {
    display: none;
  }
}

body .sticky {
  position: fixed;
  background-color: #2d4873;
  width: 100%;
  display: none;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 2%;
  height: 60px; /* Add specific height for the container */
}
@media screen and (max-width: 815px) {
  body .sticky {
    display: none !important; /* Force hide sticky nav on mobile */
  }
}

body .sticky .logo {
  width: 30%;
  display: flex;
  align-items: center;
}

body .sticky .logo img {
  max-height: 40px; /* Add max height for image */
}

body .sticky nav {
  height: 50px; /* Reduce from 70px to 50px */
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Add this line to right-align nav content */
  width: 70%; /* Add this line to give more space for right alignment */
}

body .sticky nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  justify-content: flex-end; /* Add this line to right-align menu items */
  width: 100%; /* Add this to ensure the ul takes full width of nav */
}

body .sticky nav ul li {
  float: left;
}

body .sticky nav ul li a {
  color: white;
  text-decoration: none;
  width: 100%;
  padding: 6px 10px; /* Reduce padding from 10px to 6px 10px */
  border: 3px solid rgba(255, 255, 255, 0);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

body .sticky nav ul li a:hover {
  border: 3px solid white;
  color: white;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

body .sticky nav ul li a:active {
  border: 3px solid #FFFFFF;
  background-color: #2d4873;
  color: white;
}

body #top {
  background-color: #2d4873;
  padding: 25px 2%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media screen and (max-width: 1224px) {
  body #top {
    justify-content: center;
  }
}

@media screen and (max-width: 815px) {
  body #top {
    padding-top: 45px;
  }
}

body #top #menu {
  display: none;
}

body #top .js .slicknav_menu {
  display: block;
}
@media screen and (min-width: 1225px) {
  body #top .logo {
    float: left;
  }
}
@media screen and (min-width: 1225px) {
  body #top {
    min-height: 140px;
    padding-left: 2%;
    padding-right: 2%;
  }
}
@media screen and (max-width: 1225px) {
  body #top img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

body #top nav {
  min-height: 65px;
  margin-left: auto;
  margin-right: auto;
  display: none;
}
@media screen and (min-width: 815px) {
  body #top nav {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Add this line to right-align nav content */
  }
  
  body #top nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    justify-content: flex-end; /* Add this line to right-align menu items */
    width: 100%; /* Add this to ensure the ul takes full width of nav */
  }
}
@media screen and (min-width: 1225px) {
  body #top nav {
    margin-left: auto;
    margin-top: 0;
    width: 70%; /* Add this line to give more space for right alignment */
  }
}

body #top nav ul li {
  float: left;
}

body #top nav ul li a {
  color: white;
  text-decoration: none;
  width: 100%;
  padding: 10px;
  border: 3px solid rgba(255, 255, 255, 0);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

body #top nav ul li a:hover {
  border: 3px solid white;
  color: white;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

body #top nav ul li a:active {
  border: 3px solid #FFFFFF;
  background-color: #2d4873;
  color: white;
}

body #content {
  width: 100%;
}

body #content .contentwrap .articlewrap {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

body #content .contentwrap .articlewrap section {
  float: left;
  width: 100%;
  margin-top: 2%;
  padding: 1em;
  margin-bottom: 5%;
  margin-top: 5%;
}

/* New button class replaces the long selector */
.btn {
  color: #2d4873;
  text-decoration: none;
  width: 100%;
  padding: 10px;
  border: 3px solid #2d4873;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn:hover {
  border: 3px solid #2274ac;
  color: #2274ac;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.btn:active {
  border: 3px solid #FFFFFF;
  background-color: #2d4873;
  color: #2d4873;
}

a.basiclink {
  color: #2d4873;
  text-decoration: none;
}

a.basiclink:hover {
  color: #2274ac;
  text-decoration: none;
}
/* Comment out the old selectors as they're replaced by .btn */
/*
body #content .contentwrap .articlewrap section a {
  color: #2d4873;
  text-decoration: none;
  width: 100%;
  padding: 10px;
  border: 3px solid #2d4873;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

body #content .contentwrap .articlewrap section a:hover {
  border: 3px solid #2274ac;
  color: #2274ac;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

body #content .contentwrap .articlewrap section a:active {
  border: 3px solid #FFFFFF;
  background-color: #2d4873;
  color: #2d4873;
}
*/

body #content .contentwrap .articlewrap section img {
  max-width: 100%;
  height: auto;
  width: 100%;
}

body #content .contentwrap .shortcuts {
  max-width: 770px;
  height: 6.25em;
  margin-left: auto;
  margin-right: auto;
}

body #content .contentwrap .shortcuts ul {
  padding-left: 2%;
}

body #content .contentwrap .shortcuts ul li {
  background-color: #2d4873;
  float: left;
  display: inline-block;
  vertical-align: middle;
  list-style: none;
  margin: 1%;
  margin-left: 2%;
  margin-right: 2%;
  padding: 3%;
  padding-top: 1%;
  padding-bottom: 1%;
  width: 150px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: center;
}
@media screen and (max-width: 815px) {
  body #content .contentwrap .shortcuts ul li {
    width: 45%;
    margin-bottom: 5%;
  }
}

body #content .contentwrap .shortcuts ul li:hover {
  background-color: #2274ac;
  padding-top: 2%;
}
@media screen and (max-width: 815px) {
  body #content .contentwrap .shortcuts ul li:hover {
    padding-top: 1%;
  }
}

body #content .contentwrap .shortcuts ul li i {
  color: white;
}

body #content .contentwrap .shortcuts ul li a {
  text-decoration: none;
  color: white;
}

body #content .contentwrap .text-noimage section {
  max-width: 800px;
  padding-top: 2%;
  margin-left: auto;
  margin-right: auto;
}

body #content .contentwrap .text-noimage .head-image img {
  max-width: 100%;
  height: auto;
  width: 100%;
  padding: 0;
}

body #content .contentwrap .text-image {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

body #content .contentwrap .text-image section {
  max-width: 26.875em;
  float: left;
  width: 45%;
  padding: 1em;
  margin-left: 9%;
  margin-bottom: 5%;
}

body #content .contentwrap .text-image section a {
  color: #2d4873;
  text-decoration: none;
  width: 100%;
  padding: 10px;
  border: 3px solid #2d4873;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

body #content .contentwrap .text-image section a:hover {
  border: 3px solid #2274ac;
  color: #2274ac;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

body #content .contentwrap .text-image section a:active {
  border: 3px solid #FFFFFF;
  background-color: #2d4873;
  color: #2d4873;
}
@media screen and (max-width: 815px) {
  body #content .contentwrap .text-image section {
    margin-left: 0%;
    width: 100%;
    margin-top: 0%;
    max-width: 62.5em;
  }
}

body #content .contentwrap .text-image .image {
  float: right;
  max-width: 450px;
  height: auto;
  width: 46%;
}
@media screen and (max-width: 815px) {
  body #content .contentwrap .text-image .image {
    width: 100%;
  }
}

body #content .text-backgroundimage {
  max-width: 1000px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

body #content .text-backgroundimage .head-image img {
  height: auto;
  width: 100%;
  padding: 0;
}

body #content .text-backgroundimage section {
  position: absolute;
  top: 5%;
  right: 9%;
  max-width: 26.875em;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1em;
}

body #content .text-backgroundimage section a {
  color: #2d4873;
  text-decoration: none;
  width: 100%;
  padding: 10px;
  border: 3px solid #2d4873;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

body #content .text-backgroundimage section a:hover {
  border: 3px solid #2274ac;
  color: #2274ac;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

body #content .text-backgroundimage section a:active {
  border: 3px solid #FFFFFF;
  background-color: #2d4873;
  color: #2d4873;
}
@media screen and (max-width: 815px) {
  body #content .text-backgroundimage section {
    position: relative;
    left: 0;
    width: 100%;
  }
}

body footer {
  background-color: #2d4873;
  width: 100%;
  min-height: 100px;
  text-align: center;
  padding: 2%;
  margin-top: -9px;
}
@media screen and (max-width: 815px) {
  body footer {
    margin-top: 10%;
  }
}

/* Styles moved from index.php */
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 0;
}

.image-gallery img {
  width: 48%;
  margin-bottom: 15px;
  border-radius: 5px;
}

.feature-list {
  margin: 15px 0;
}

.feature-list li {
  margin-bottom: 10px;
  list-style: none;
  padding-left: 25px;
  position: relative;
}

.feature-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #2d4873;
}

.highlight-box {
  background-color: #f5f5f5;
  padding: 20px;
  border-left: 4px solid #2d4873;
  margin: 25px 0;
}

.room-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.room-type {
  width: 48%;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 5px;
}

/* Enhanced text-image styles to maintain the improved layout */
.text-image {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.text-image section {
  flex: 0 0 45%;
  margin: 0;
  padding: 1em;
  float: none;
  max-width: 26.875em;
}

.text-image .image {
  flex: 0 0 46%;
  margin: 0 0 0 auto;
  padding: 1em 0;
  float: none;
  max-width: 450px;
  align-self: flex-start;
}

@media screen and (max-width: 815px) {
  .image-gallery img, .room-type {
    width: 100%;
  }
  
  .text-image {
    flex-direction: column;
  }
  
  .text-image section {
    flex: 0 0 100%;
    margin: 0;
    max-width: 100%;
    width: 100%;
    padding: 1em;
  }
  
  .text-image .image {
    flex: 0 0 auto;
    margin: 0 auto;
    max-width: 80%;
    width: auto;
    display: block;
    text-align: center;
  }
}
