*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
/*  list-style: none;*/
  text-decoration: none;
}
html{
  scroll-behavior: smooth;
}
header{
  position: fixed;
  list-style: none;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: rgb(255, 250, 250);
}
.logo img{
  max-width: 150px;
  height: auto;
}
.navmenu{
  display: flex;
  list-style: none;
}
.navmenu a{
  padding: 10px 20px;
  color: #292929;
  text-transform: capitalize;
  font-weight: 500;
  transition: all .42s ease;
}
.navmenu a:hover{
  color: #cc3333;
  font-size: 20px;
  text-decoration: underline;
}

.nav-icon{
  display: flex;
  align-items: center;
}

.btn{
  display: inline-block;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid #cc3333;
  padding: 10px 30px;
  background-color: #cc3333;
  border-radius: 30px;
  color: #fff;
  letter-spacing: 1px;
  margin-right: 15px;
  transition: all .42s ease;
}

.btn:hover{
  transform: scale(1.1);
}
#menu-icon{
  font-size: 35px;
  color: #292929;
  z-index: 10001;
  cursor: pointer;
  display: none;
}

section{
  padding: 60px 12%;
}

.home{
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: .01rem;
}

.home-img img{
  max-width: 100%;
  width: 100%;
  height: auto;
}

.home-text h4{
  color: #cc3333;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -1px;
  font-family: 'Lobster', cursive;
}
.home-text h1{
  font-size: 50px;
  color: #292929;
  font-weight: 700;
  line-height: 1.2;
  margin: 23px 0;
}
.home-text h1 span{
  color: #cc3333;
  text-decoration: underline;
}
.home-text p{
  color: #666;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  margin-bottom: 40px;
}

/* ============================ right text ========================= */
.home-text-r{
  text-align: right;
}
.home-text-r h4{
  color: #cc3333;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -1px;
  font-family: 'Lobster', cursive;
}
.home-text-r h1{
  font-size: 50px;
  color: #292929;
  font-weight: 700;
  line-height: 1.2;
  margin: 23px 0;
}
.home-text-r h1 span{
  color: #cc3333;
  text-decoration: underline;
}
.home-text-r p{
  color: #666;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  margin-bottom: 40px;
}

/*=========================== about us ==========================*/
.home-text-about{
  text-align: center;
}
.home-text-about h4{
  color: #cc3333;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -1px;
  font-family: 'Lobster', cursive;
}
.home-text-about h1{
  font-size: 50px;
  color: #292929;
  font-weight: 700;
  line-height: 1.2;
  margin: 23px 0;
}

.home-text-about p{
  color: #666;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 40px;

}

/*=========================== other agb data =====================*/
.other-data h4{
  color: #cc3333;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -1px;
  font-family: 'Lobster', cursive;
  text-align: center;
  padding-top: 40px;
}

.other-data p{
  color: #666;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 40px;
  text-align: justify;
}
.other-data p span{
  font-weight: bolder;
}

/*============================ Contact us ==================== */
.home-text-contact{
  text-align: left;
  margin: 0 10px 0 10px;
}
.home-text-contact form{
  margin: 10px;
}

.main-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.main-btn .btn1{
  display: inline-block;
  color: #fff;
  font-size: 15px;
  text-transform: capitalize;
  background-color: #cc3333;
  padding: 12px 30px;
  transition: all .42s ease;
}
.main-btn .btn1:hover{
  background-color: #292929;
}
.btn2{
  font-size: 15px;
  font-weight: 500;
  color: #292929;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
}
.btn2 span{
  padding: 5px;
}
.btn2 span i{
  height: 50px;
  width: 50px;
  background: #cc3333;
  color: #fff;
  font-size: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margen-right: 15px;
  transition: all .42s ease;
}
.btn2 span i:hover{
  transform: translateY(-5px);
  background-color: #292929;
}

/*============= resposive dsign ==================*/

@media(max-width:945px){
  header{
    padding: 20px 3%;
    transition: .3s;
  }

}

@media(max-width: 1140px){
  .home{
    grid-template-columns: 1fr;
    height: 100%;
  }
  header.sticky{
    background: $fff;
    padding: 20px 3%;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  }
  .home-text, .home-text-r{
    padding-top: 50px;
    text-align: center;
  }
  section{
    padding: 90px 3%;
  }
  .home-img img{
    width: 100%;
    max-width: 600px;
  }
  .home-img{
    text-align: center;
  }
  .navfot{
    flex-direction: column;
    align-items: center;
  }
  .navfot a{
    margin: 10px;
  }
}

@media(max-width: 855px){
  #menu-icon{
    display: block;
  }
  .navmenu{
    position: absolute;
    top: 100%;
    right: -100%;
    width: 300px;
    height: 400px;
    background-color: #cc3333;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 90px 30px;
    transition: all .42s ease;
  }
  .navmenu a{
    display: block;
    margin: 5px 5px;
    transition: all .42px ease;
  }
  .navmenu a:hove{
    color: #fff;
    transform: translateX(-5px);
  }
  .navmenu.open{
    right: 0;
  }
}


/* ======================== gellery ==================== */

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}
.gellery{
  padding: 10px;
}
/* Main CSS */
.grid-wrapper > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid-wrapper > div > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.grid-wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}
.grid-wrapper .wide {
  grid-column: span 2;
}
.grid-wrapper .tall {
  grid-row: span 2;
}
.grid-wrapper .big {
  grid-column: span 2;
  grid-row: span 2;
}


/* =============================== Rooms list ======================== */
.container {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}


/*================================ Contact form =========================*/
input[type=text], input[type=number], input[type=email], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  width: 100%;
}



/*================= footer ==========================*/

/*footer{
  width: 100%;
  height: auto;
  bottom: 0;
  right: 0;
  z-index: 1000;
  justify-content: space-between;
  padding: 20px 10%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: rgb(255, 250, 250);
}
.navfot-icon{
  font-size: 40px;
}
.navfot-icon:hover{
  font-size: 45px;
}

.navfot{
  display: flex;
}
.navfoot-contact{
  font-size: 25px;
}
.navfot a{
  padding: 10px 10px;
  color: #292929;
  text-transform: capitalize;
  font-weight: 500;
  transition: all .42s ease;
}
.navfot a:hover{
  color: #cc3333;
  text-decoration: underline;
}
  .navfot li{
    margin: 10px;
  }*/

.footer{
background:#000;
padding:30px 0px;
font-family: 'Play', sans-serif;
text-align:center;
}

.footer .row{
width:100%;
margin:1% 0%;
padding:0.6% 0%;
color:gray;
font-size:0.8em;
}

.footer .row a{
text-decoration:none;
color:gray;
transition:0.5s;
}

.footer .row a:hover{
color:#fff;
}

.footer .row ul{
width:100%;
}

.footer .row ul li{
display:inline-block;
margin:0px 30px;
}

.footer .row a i{
font-size:2em;
margin:0% 1%;
}

@media (max-width:720px){
.footer{
text-align:left;
padding:5%;
}
.footer .row ul li{
display:block;
margin:10px 0px;
text-align:left;
}
.footer .row a i{
margin:0% 3%;
}
}

/*================================== rooms list ==================================*/

.row {
  margin: 8px;
}

/* Add padding BETWEEN each column */
.row,
.row > .column {
  padding: 8px;
}

/* Create four equal columns that floats next to each other */
.column {
  float: left;
  width: 25%;
}

/* Clear floats after rows */ 
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Content */
.content {
  background-color: white;
  padding: 10px;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 900px) {
  .column {
    width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}

/*============================ link other pages =====================*/
.agb, .datenschut, .impressum{
  display: none;
}
.main-page{
  display: block;
}
