
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lavishly Yours';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/lavishly-yours-v5-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: 'K2D';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/k2d-v11-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* architects-daughter-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: 'Architects Daughter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/architects-daughter-v19-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}




:root{
	--gruen: #737A5D;
}

:root{
	--dunkelgruen: #414833;
}

:root{
	--hellgruen: #A4AC86;
}

body{
	font-family: 'K2D';
}

body, .container {
  max-width: 100%;
  width: auto;
  overflow-x: hidden; /* Verhindert horizontalen Bildlauf */
}

p{
	font-family: 'K2D';
	font-size: 1.2rem;
}

ul{
	font-family: 'K2D';
	font-size: 1.2rem;
}

h1{
	font-family: 'Architects Daughter';
	font-size: 2rem!important;
	padding-bottom: 0.7rem!important;
	color: var(--gruen);
}

h2{
font-family: 'Architects Daughter';
	font-size: 2rem;
	padding-bottom: 0.2rem;
	color: var(--gruen);	
}




.carousel,
.carousel-inner,
.carousel-item {
	height: 100vh!important;
}

.carousel-item img {
  width: 100%!important;
  height: 100%!important;
  object-fit: cover!important;
	filter: brightness(70%);
}

.carousel{
  position: relative !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  display: flex !important;
  justify-content: center !important;
}


 

.carousel-item{
	transition: transform 1s ease-in-out!important;
}




.hero-image-zimmer {
	/* Mit "linear-gradient" wird das Hintergrundbild (images/photographer.jpg) abgedunkelt, damit der Text leichter lesbar ist */
	background-image: linear-gradient(rgba(0, 0, 0, 0.5),
					rgba(0, 0, 0, 0.3)),
					url("../images/herozimmer.jpg");

	/* Höhe des Hero-Images festlegen */
	height: 100vh; /* 50vh macht das Hero-Image nur halb so hoch */

	/* Ausrichtung und Zentrierung des Bildes, damit es auf allen Bildschirmen gut aussieht */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	display: flex;
	justify-content: center;
}

.hero-image-region {
	/* Mit "linear-gradient" wird das Hintergrundbild (images/photographer.jpg) abgedunkelt, damit der Text leichter lesbar ist */
	background-image: linear-gradient(rgba(0, 0, 0, 0.5),
					rgba(0, 0, 0, 0)),
					url("../images/heroimageregion1.jpg");

	/* Höhe des Hero-Images festlegen */
	height: 100vh; /* 50vh macht das Hero-Image nur halb so hoch */

	/* Ausrichtung und Zentrierung des Bildes, damit es auf allen Bildschirmen gut aussieht */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	display: flex;
	justify-content: center;
}

.hero-image-bilder {
	/* Mit "linear-gradient" wird das Hintergrundbild (images/photographer.jpg) abgedunkelt, damit der Text leichter lesbar ist */
	background-image: linear-gradient(rgba(0, 0, 0, 0.5),
					rgba(0, 0, 0, 0.3)),
					url("../images/blume.jpg");

	/* Höhe des Hero-Images festlegen */
	height: 100vh; /* 50vh macht das Hero-Image nur halb so hoch */

	/* Ausrichtung und Zentrierung des Bildes, damit es auf allen Bildschirmen gut aussieht */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	display: flex;
	justify-content: center;
}

.hero-image-kontakt {
	/* Mit "linear-gradient" wird das Hintergrundbild (images/photographer.jpg) abgedunkelt, damit der Text leichter lesbar ist */
	background-image: linear-gradient(rgba(0, 0, 0, 0.5),
					rgba(0, 0, 0, 0.3)),
					url("../images/heroimagekontakt1.jpg");

	/* Höhe des Hero-Images festlegen */
	height: 100vh; /* 50vh macht das Hero-Image nur halb so hoch */

	/* Ausrichtung und Zentrierung des Bildes, damit es auf allen Bildschirmen gut aussieht */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	display: flex;
	justify-content: center;
}



.hero-text {
  text-align: center;
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fa-chevron-down{
	color: #FFF;
	font-size: 250%;
	font-weight: bold;
	text-shadow: 2px 2px 4px #303030;
}

.hupf{
	position: relative;
	margin-top: 3.5rem;
	animation: hupf 1.3s infinite;
	transition: all 0.3s ease-in-out;
}

@keyframes hupf {

	0% {bottom: -20px;}
	50% {bottom: -10px;}
	100% {bottom: -20px;}
	
}

@media screen and (max-width: 992px) {
	.navbar li a:hover{
		transform: none!important;
	}
}

@media screen and (max-width: 992px) {
	.active{
		transform: none!important;
	}

}


.navbar{
	position: absolute!important;
	right: 10%!important;
	top: 3%!important;
	font-family: 'K2D';
	padding-top: 1.8rem!important;
}

a.nav-link{
	color: rgba(255, 255, 255, 0.8)!important;
	font-size: 1.2rem;
	transition: all 0.3s ease-in-out;
	padding-bottom: 0px!important;
    opacity: 1!important;
}

a.nav-link:hover{
-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1.05);
    color: rgba(255, 255, 255, 1)!important;
}


.navbar {
  z-index: 1030 !important;
}

#dunkleroverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  /* z-index ist jetzt niedriger als der der Navbar */
  z-index: 1029; 
}











.logoposition{
	position: absolute;
	left: 10%;
	top: 5%;
    width: 12rem;
}

.headerschrift{
	position: absolute;
	bottom: 8%;
	right: 12%;
	left: 12%;
    font-size: 1.6rem;  
    text-align: end!important;
    color: #FFF; 
    border-bottom: 2px solid #FFF;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
	padding: 0 2rem;
	transition: all 0.3s ease-in-out!important;
}

.charmant{
	font-family: 'Lavishly Yours';
	font-size: 3.8rem!important;
	padding: 0 2rem;
	transition: all 0.5s ease-in-out!important;
}

@media screen and (max-width: 720px) {
    .headerschrift {
  font-size: 0.9rem!important;
		bottom: 7%!important;
		text-align: center!important;
}	
}

@media screen and (max-width: 720px) {
	.charmant {
  		font-size: 2.1rem!important;
		bottom: 7%!important;
		padding: 0 0.5rem!important;

}	
}





img.grayscale {
	filter: grayscale(100%);
}


.parallaxueberuns{
	
	background-image:url("../images/parallaxueberuns1.jpg");

  /* Set a specific height */
  height: 550px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallaxindexzimmer {
  background: url(../images/parallaxindexzimmer.jpg) no-repeat center center fixed;
  display: table;
  min-height: 40vh;
  position: relative;
  width: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.parallaxangebote{
	
	background-image:url("../images/parallaxangebote.jpg");

  /* Set a specific height */
  height: 550px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallaxregion{
	
	background-image:url("../images/parallaxregion.jpg");

  /* Set a specific height */
  height: 550px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallaxgarten{
	
	background-image:url("../images/parallaxgarten.jpg");

  /* Set a specific height */
  height: 550px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.parallaxtiere{
	
	background-image:url("../images/parallaxtiere.jpg");

  /* Set a specific height */
  height: 550px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallaxsommer{
	
	background-image:url("../images/parallaxsommer.jpg");

  /* Set a specific height */
  height: 550px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallaxwinter{
	
	background-image:url("../images/parallaxwinter.jpg");

  /* Set a specific height */
  height: 550px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallaxzimmer{
	
	background-image:url("../images/parallaxzimmer.jpg");

  /* Set a specific height */
  height: 550px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallaxkontakt{
	
	background-image:url("../images/parallaxkontakt1.jpg");

  /* Set a specific height */
  height: 550px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}









.containerabstand{
	padding: 100px 0;
}
.containerunten{
	padding-bottom: 100px;
}
.containerhoehe{
	min-height: 250px!important;
}
.navbarextra{
	top: -2%!important;
}
.abstandunten{
	padding-bottom: 20px;
}
.hintergrundfarbe{
	background-color: var(--hellgruen);
}
.rundeecken{
	border-radius: 30px;
}
.k2dschrift{
	font-family:'K2D'!important; 
}

.datenschutzformular{
	color: var(--gruen)!important;
	text-decoration: none!important;
	transition: all 0.2s ease-in-out!important;
}
.datenschutzformular:hover{
	color: var(--dunkelgruen)!important;
}




.tabellelang{
	width: 250rem;
}
.tabellekurz{
	width: 20px;
}







.text-vcenter {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  color: #FFF;
}
.zimmerbutton{
	font-family: 'Architects Daughter';
	font-size: 1.5rem!important;
	color: var(--gruen)!important;
	background-color: #FFF!important;
	border:none!important;
	text-decoration: none!important;
	transition: all 0.3s ease-in-out!important;
	border-radius: 20px!important;
}
.zimmerbutton:hover{
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1.05);
	color: var(--dunkelgruen)!important;
	border:none!important;
	text-decoration: none!important;
}
.buchenbutton{
	font-family: 'Architects Daughter';
	font-size: 1.4rem!important;
	color: #FFF!important;
	background-color: var(--dunkelgruen)!important;
	border:none!important;
	text-decoration: none!important;
	transition: all 0.3s ease-in-out!important;
	border-radius: 20px!important;
}
.buchenbutton:hover{
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1.03);
	color: #FFF!important;
	border:none!important;
	text-decoration: none!important;
}




.cursor{
    cursor:pointer!important;
}

#zimmerformular{
	font-family: 'K2D';
	font-size: 1rem;
}
.kontaktformular{
	font-family: 'K2D';
	font-size: 1rem;
}

.form-control{
	border: none!important;
	border-radius: 0px!important;
}

.formularrahmen{
	border-bottom: 1px #000 solid!important;
}


.buchungsdatum{
	border: none!important;
	text-align: end!important;
}

.zimmeranfragenbtn{
	background-color: var(--gruen)!important;
	color: #FFF!important;
	border-radius: 20px!important;
	transition: all 0.3s ease-in-out!important;
	padding: 5px 15px!important;
}
.zimmeranfragenbtn:hover{
	background-color: var(--dunkelgruen)!important;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1.03);
}




.galleriebild{
	transition: all 0.2s ease-in-out!important;
 	filter: brightness(75%);
	border-radius: 7px!important;
}
.galleriebild:hover{
	filter: brightness(100%);
}













.regionbutton{
	font-family: 'Architects Daughter';
	font-size: 1.3rem!important;
	color: #FFF!important;
	background-color: var(--dunkelgruen)!important;
	border:none!important;
	text-decoration: none!important;
	transition: all 0.3s ease-in-out!important;
	border-radius: 20px!important;
}
.regionbutton:hover{
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1.05);
	border:none!important;
	text-decoration: none!important;
}










.footer{
	min-height: 50px;
	color: #000;
	font-family: 'K2D';
	background-color: var(--hellgruen);
}

.footerinhalt{
	padding-top: 60px;
	padding-bottom: 10px;
}

.dunkelgruen{
	color: var(--dunkegruen);
}
.footerschrift{
	font-size: 1rem;
}

.footer a{
	font-family: 'K2D';
	font-size: 1rem;
	color: var(--dunkelgruen);
	transition: all 0.2s ease-in-out!important;
}

.footer a:hover{
	text-decoration: none;
	font-family: 'K2D';
	color: var(--gruen);
}

.kontaktlink{
	font-family: 'K2D';
	color: #000;
	text-decoration: none;
}
.kontaktlink:hover{
	color: var(--dunkelgruen);
	text-decoration: none;
}





#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 3rem; /* Place the button at the bottom of the page */
    right: 4.2rem; /* Place the button from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    color: var(--dunkelgruen); /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 25px; /* Increase font size */
	line-height: 24px; /* Set the line-height for better alignment inside the box */
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}

#myBtn:hover {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1.2);
	text-decoration: none;
}





/* ===== DROPDOWN: Overlay ohne Seitenverschiebung ===== */

nav.navbar.navbar-expand-lg.navbar-dark{
    padding-bottom: 0!important;
}

/* Verhindert, dass ein Eltern-Element das Dropdown abschneidet */
.navbar, .navbar .collapse, .navbar .container {
  overflow: visible !important;
}

/* Bezugsrahmen für das absolute Dropdown */
.navbar .nav-item.dropdown {
  position: relative !important;
}

/* Das Dropdown liegt aus dem Fluss, verschiebt also keinen Content */
.navbar .nav-item.dropdown .dropdown-menu {
    position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  display: none;
  min-width: 12rem;
  z-index: 3000 !important;
  background-color: rgba(255, 255, 255, 0) !important; /* Transparent weiß */
  border-radius: 0px!important;
  padding: 0px!important;
  box-shadow: none!important;
  transform: none !important;     /* verhindert transform-bedingte Verschiebungen */
  max-height: none !important;    /* sicherstellen, dass nicht begrenzt ist */
  overflow: visible !important;
}

/* Desktop: Hover für Link ODER Menü öffnet das Dropdown */
@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover > .dropdown-menu,
  .navbar .nav-item.dropdown:focus-within > .dropdown-menu {
    display: block;
    border: none;
  }
}


/* Dropdown-Textfarben */
.navbar .dropdown-menu .dropdown-item {
  color: rgba(255, 255, 255, 0.8) !important; /* Normale Farbe */
  font-weight: 500;        /* optional etwas kräftiger */
  	transition: all 0.2s ease-in-out;
font-size: 1.1rem;
padding-top: 0px;
padding-bottom: 0px;
padding-right: 60px!important;
text-align: right;
}


/* Hover- oder Fokuszustand */
.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus {
  color: #fff !important; /* Farbe beim Hover */
  background-color: rgba(0,0,0,0) !important; /* Hintergrund beim Hover */
  -webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1.05);
}


@media (max-width: 767.98px) {
  .navbar .dropdown-menu {
    display: none !important;
  }
  .navbar .dropdown-toggle::after {
    display: none;
  }

}


/* — Mobile: größere Navigationstexte — */
@media screen and (max-width: 720px) {
  /* zielt auf die typischen Navbar-Strukturen (collapsed + normal) */
  .navbar .navbar-nav .nav-link,
  .navbar .nav-item .nav-link,
  .navbar-collapse .nav-link,
  a.nav-link {
    font-size: 2rem !important;         /* gewünschte Größe */
    line-height: 1.2 !important;        /* bessere Lesbarkeit */
    padding-top: .35rem !important;     /* evtl. mehr Klickfläche */
    padding-bottom: .35rem !important;
    -webkit-text-size-adjust: 100% !important;
    -ms-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
  }

    .navbar-toggler {
    font-size: 1.3rem !important;
  }

.navbar-toggler{ /* falls du einen Button hast */
  border: none !important;
  outline: none !important; /* falls ein Fokusrahmen angezeigt wird */
  box-shadow: none !important; /* falls ein Schatten als Rahmen wirkt */
}

.logoposition{
    width: 10rem;
}


#myBtn {
    bottom: 1rem; /* Place the button at the bottom of the page */
    right: 1.4rem; /* Place the button from the right */
}






