

:root {
  --color-bg: #eef2f5;                 /* light gray background */
  --color-card: #ffffff;
  --color-text: #1e293b;               /* dark slate */
  --color-text-strong: #0f172a;        /* almost black */
  --color-muted: #334155;              /* readable muted text */
  --color-primary: #0369a1;            /* darker, sharp blue */
  --color-primary-soft: rgba(3, 105, 161, 0.1);
  --color-primary-strong: #014f7a;
  --color-accent: #d84315;             /* deep orange for contrast */
  --color-border: #cbd5e1;

  --radius-lg: 14px;
  --radius-xl: 20px;

  --shadow-soft: 0 3px 12px rgba(0,0,0,0.12);
}


/* dancing-script-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Dancing Script';
  font-style: normal;
  font-weight: 400;
  src: url('/scripts/fonts/dancing-script-v29-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('/scripts/fonts/poppins-v24-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}



@media screen and (max-width: 975px) {

#headerBanner {
 display: none;
}

}

@media screen and (min-width: 975px) {

#headerBanner {
 style="width:100%; 
 background-color: #02345e; 
 text-align:center
}

}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  
}

footer{
  background: #02345e;
  text-align:center;
   font-size: 18px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  
  color: white;
}

footer li {
	display:inline-block;
	padding:10px;
}

footer li a {
	color: white;
}



@media screen and (max-width: 975px) {
	
nav{
  position: fixed;
  z-index: 200;
  width: 100%;
  
  background: #02345e;
}

}

@media screen and (min-width: 975px) {
	
nav{
  
  z-index: 200;
  width: 100%;
  
  background: #02345e;
}

}


nav .wrapper{
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}




.wrapper .logo a{
  color: white;
  font-size: 45px;
  font-weight: 450;
  text-decoration: none;
  font-family: 'Dancing Script';
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  
}
.nav-links li a:hover{
  background: #02345e;
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
	z-index:100;
  position: absolute;
  background: #02345e;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}
.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #02345e;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 975px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #02345e;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  
  #showDrop1:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  
  .nav-links .desktop-item{
    display: none;
	z-index:100;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #02345e;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}

.body-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div{
  font-size: 45px;
  font-weight: 600;
}

@media screen and (max-width: 975px) {
.photoDIV {padding:5px;width:190px; display:inline-block;}
.bigfotoalbum .photoDIV {padding:5px;width:190px; display:inline-block;}
.webcamImageDay { width:190px; padding:5px}
.webcamImageLive { max-width:400px; width:100%}

}



@media screen and (min-width: 975px) {
.photoDIV {padding:10px;width:250px; display:inline-block;}
.bigfotoalbum .photoDIV {padding:10px;width:320px; display:inline-block;}
.webcamImageDay { width:250px; padding:10px}
.webcamImageLive { max-width:500px; width:100%}


}

.photoDIV img {width:100%;}
.photoContainer { text-align:center}
.bigfotoalbum .photoDIV img {width:100%;}


.wrapper {
	display: flex; 
	justify-content: center; 
	align-items: center;
	width: 100%;
}


.content {
  width:100%;
  padding: 3rem;
  color: var(--color-text);
  background: var(--color-card);
  box-shadow: var(--shadow-soft);
  
}

@media screen and (min-width: 975px) {
.content {
  max-width: 1250px;
  padding: 1.7rem;
  padding-top: 0rem;
  font-size: 17px;
}
}

@media screen and (max-width: 975px) {
.content {
  max-width: 970px;
  padding: 0.8rem;
  padding-top: 3.3rem;
  font-size: 17px;
}
}

.content li {
	margin-left:20px;
}


.content p {
	padding-top:10px;
	padding-bottom:10px;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text-strong);
}

h1 {
  text-align: left;
  font-size: 1.6rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #02345e;
  font-weight: 700;
 }

h2 {
  text-align: left;
  font-size: 1.4rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
   color: #02345e;
  font-weight: 700;
 
}


h3 {
  text-align: left;
  font-size: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  
  font-weight: 700;
  color: #02345e;
}



@media screen and (max-width: 975px) {
	.content {margin-top:50px; padding-top:20px}
	
}

@media screen and (min-width: 975px) {
	.content {margin-top:0px; padding-top:20px}
	
}

.content .gastgeberPriceList p { padding-top:0.8rem; padding-bottom:0.8rem; font-size:  15px;  }


.bookingPlanMonth { display: inline-block;padding:15px;}
.gastgeberBookingPlanContainer { margin-top:15px;text-align:center}
.pricelistHeader {font-weight:bolder}