@charset "utf-8";
 
/*
* CSS-Design
* Residencia-Serentepia
*/

/* Webfonts-Einbindung */
/* quicksand-regular - latin */
@font-face {
  font-display: swap; 
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/quicksand-v30-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* quicksand-600 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/quicksand-v30-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
        
 
/* Reset * * * * * * * * */
*{
margin: 0;
padding: 0;
-mozbox-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
 
.wrapper{
  max-width: 1250px;
  padding: 0 25px;
  margin: 25px auto 25px auto;
  border-radius: 25px;
}

.widewrapper{
  width: 100%;
  padding: 0 25px;
  margin: 25px auto 25px auto;
}

.bottomwrapper{
  max-width: 1250px;
  margin: 0 auto 0 auto;
  border-top: 1px solid;
  border-color: #8B735D;
}

.naviwrapper{
  max-width: 1250px;
  padding: 0 25px;
  margin: 0 auto 25px auto;
  border-bottom: 1px solid;
  border-color: #8B735D;
  animation: fade-up 2s;
}

.column {
  float: left;
  margin: 25px 0 25px 5%;
  padding: 25px 0;
}

.incolumn{
  float: left;
  margin: 25px auto 25px auto;
  padding: 25px 0;
}

.navicolumn {
  float: left;
  margin: 25px auto 10px auto;  
  animation: fade-up 2s;
}
 
.column:first-child{
  margin-left: 0;
}

.incolumn:first-child{
  margin-left: 0;
}

.navicolumn:first-child{
  margin-left: 0;
}
 
/* Clearfix */
.row:before,
.row:after {
  content: " ";
  display: table;
}
 
.row::after {
  clear: both;
}
 
/*S
.row{
background: #aaa;
margin: 20px 0;
}
*/
 
 
/* Raster */
 
.col_1{
  width: 100%;
}
 
.col_1_2{
  width: 47.5%;
}
   
.col_1_3{
  width: 30%;
}
 
.col_2_3{
  width: 65%;
}
 
.col_1_4{
  width: 21.25%;
}
 
.col_3_4{
  width: 73.75%;
}
 


/* Slider */

.sliderblock{
  height: auto;
}

.sliderblock .button{
  float: right;
}

.sliderblock2 .slick-dots li button::before {
  font-size: 26px;
}

.slick-prev::before,
.slick-next::before {
  display: block;
  width: 20px;
  height: 20px;
  background-color: #b4d3b2;
  color: black;
  border: black solid 1px;
  border-radius: 20%;
  margin-block-end: 20px;
}

.slick-dots li button::before {
  font-size: 26px;
}

.slider_img {
  padding: 20px 10px;
  height: auto;
  border-radius: 50%;
}

.sliderblock2_img {
  padding: 20px 10px;
  max-height: 1200px;
}

/* Navigation */
  
#navigation{ 
  text-align: center ;
  margin-right: 5%;
  line-height: 50px;
}

#navigation li{
  text-align: center;
  display: inline;
  list-style: none;
  margin-left: 35px;
}

#navigation li a{
  color: black;
  text-decoration: none;
  list-style: none;
  text-transform: uppercase;
  font-size: 23px;
  padding: 3px;
  border: black 2px solid;
  border-radius: 10px;
}

#navigation li a:hover{
  background-color: #f0d969;
  color: black;
}



/* Responsive Navigation */

.mobile {
  display: none;
}
  
nav {
  /* display: none; */
  height: 0;
  transition:height .2s ease-in-out;
  overflow:hidden;
}
  
#nav-open:target nav {
  /* display: block; */
  height: 700px;
}
  
.nav-toggle {
  margin-top: 125px;
  background: #d8ffd5;
  padding: 10px 15px;
  color: black;
}

.nav-toggle:hover {
  background: #f0d969;
  color: black;
  border: black 2px solid;
  border-radius: 20px;
}
  
li{
  list-style: none;
}

#mobilenavigation li a{
  color: black;
  text-decoration: none;
  list-style: none;
  text-transform: uppercase;
  font-size: 23px;
  line-height: 35px;
  padding: 2px;
  border: black;
  border-radius: 10px;
}
  
#mobilenavigation li a:hover{
  font-size: 26px;
  color: black;
  background-color: #f0d969;
  padding: 2px;
  border:  black solid 2px;
  border-radius: 10px;
}



/* Kontaktformular */

form label { 
  display: block;
  font-weight: 600;
}
   
input[type='text'],input[type='checkbox'], input[type='radio'],input[type='email'],textarea, select {
  margin: 0 auto;
}
   
input[type='text'], input[type='email'], textarea, select {
  width: 100%;
  border: 1px solid #2d5639;
  padding: 5px;
  font: 400 1.125rem/1.55 'Fira Sans', Helvetica, Arial, sans-serif;
  border-radius: 5px;
}
   
textarea {
  height: 175px;
}
   
input:hover, textarea:hover, input:focus, textarea:focus {
  border: 3px solid #f0d969;
}
   
input[type='submit']{
  background-color: #b4d3b2;
  color: black;
  text-decoration: none;
  font-size: 23px;
  padding: 2px;
  margin-bottom: 20px;
  border: black solid 2px;
  border-radius: 10px;
}
   
input[type='submit']:hover{
  background-color: #f0d969;
  color:black;
  border: black solid 2px;
}

.formular{
  padding-top: 20px;
  text-align: left;
}



/* totop */

#totop {
  display: none;
  text-decoration: none;
  background: #b4d3b2;
  color: #000000;
  padding: 3px 10px;
  border: 1px solid #000000;
  border-radius: 25px;
  font-size: 28px;
  line-height: 1;
  position: fixed; 
  right: 30px; 
  bottom: 30px; 
}

#totop:hover { 
  text-decoration: none;
  color: #000000;
  border-color: #000000; 
  background: #f0d969; 
}



/* FadeUp */

#ueber:target h2{
  animation: fade-up 2s;
}

#pool:target h2{
  animation: fade-up 2s;
}

#pferde:target h2{
  animation: fade-up 2s;
}

#angebot:target h2{
  animation: fade-up 2s;
}

#haus1:target h2{
  animation: fade-up 2s;
}

#haus2:target h2{
  animation: fade-up 2s;
}

#haus3:target h2{
  animation: fade-up 2s;
}

#haus4:target h2{
  animation: fade-up 2s;
}

#kontakt:target h2{
  animation: fade-up 2s;
}



/* Hintergrundbilder */

.hauptbild{
  height: 700px;
  width: 100%;
  background: #2d5639 url('../img/Grundstück/background3.jpeg') center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.zweitbild{
  height: 700px;
  width: 100%;
  background: #2d5639 url('../img/Grundstück/teaserpicture2.png') center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}



/* Typografie */

.klein{
  display: none;
}

html { 
  scroll-behavior: smooth; 
}

.info{
  height: 200px;
}

img{
  width: 100%;
  height: auto;
}

.plan{
  width: 30%;
}

.halfimg{
  border: #d8ffd5 solid 5px;
  margin: 25px;
  width: 50%;
}

video{
  max-width: 100%;
  padding: 10px;
}

.colored{
  background: #b4d3b2;
}

iframe{
  width: 100%;
  height: 500px;
}

.space{
  margin-top: 100px;
}

.center{
  text-align: center;
}


.left{
  text-align: left;
  float: left;
}

.right{
  text-align: right;
  float: right;
}

.gross .right{
  text-align: left;
}

.body{
  font-family: Arial, Helvetica, sans-serif;
  background: #d8ffd5;
}

.link{
  text-decoration: underline;
  color: black;
}

h1{
  font-family: 'Quicksand', Georgia, Times, serif;
  font-weight: 600;
  color: #000000;
  font-size: 70px;
  font-style: italic;
}

h2{
  font-family: 'Quicksand', Georgia, Times, serif;
  font-style: italic;
  font-size: 40px;
  text-decoration: none;
}

.wrapper h2{
  text-decoration: none;
  padding-bottom: 25px;
}

h3{
  font-size: 30px;
}

p{
  font-size: 20px;
}

#ueber p, #kontakt p{
  text-align: left;
  line-height: 35px;
}

.zitat{
  padding: 100px;
}

.zitat p{
  font-size: 35px;
  font-style: italic;
  line-height: 50px;
}

.button{
  color: black;
  text-decoration: none;
  list-style: none;
  text-transform: uppercase;
  padding: 3px;
  border: black 2px solid;
  border-radius: 10px;
}

.ausblenden{
  display: none;
}


/* Hover */

a:hover{
  color: #ffd500;
}

.button:hover{
  background-color: #f0d969;
  color: black;
}



/* Media Queries */

@media only screen and (max-width: 1150px) {
  .zitat p{
    font-size: 25px;
  }
}
 
@media only screen and (max-width: 950px) {

.col_1, .col_1_2, .col_1_3, .col_2_3, .col_1_4, .col_3_4, .col_1_2 {
  width: 100%;
}

.column{
  margin: 25px 0 25px 0;
}

.widewrapper{
  margin: 0 0 0 0;
}

.navicolumn{
  margin: 25px 0 10px 0;
}

#navigation li{
  display: block;
  float: left;
}


.halfimg{
  width: 100%;
}

h1{
  font-size: 45px;
  text-align: left;
}

h2{
  font-size: 35px;
}

p{
  font-size: 16px;
}

.klein{
  display: block;
}

.klein img{
  width: 100%;
  height: auto;
}

.gross{
  display: none;
}

.zitat{
  padding: 25px 0;
  margin: 25px 0;
}

.zitat p{
  font-size: 25px;
}

.sliderblock {
  margin: 50px 0;
}

.sliderblock h2{
  font-size: 22px;
}

.sliderblock .button{
  display: none;
}

.left, .right{
  text-align: center;
}

.wrapper{
  margin: 0 0 0 0;
}

#ueber .wrapper{
  border-radius: 0 0 25px 25px;
}

#angebot .wrapper{
  border-radius: 25px 25px 0 0;
}



/* Responsive Navigation */

  .mobile {
    display: block;
  }
  
  .fullsize {
    display: none;
  }
  
  .nav-toggle {
    display: block;
    font-family: Quicksand;
  }
  
  #nav-open:target .nav-closed {
    display: block;
  }

  .nav-closed,
  #nav-closed:target .nav-closed,
  #nav-open:target .nav-open {
    display: none;
  }

  #nav-open:target nav {
    height: 300px;
  }

  #mobilenavigation {
    margin-top: 15px;
  }
  
  #mobilenavigation li {
      padding: 5px;
    display: block;
    margin-left: 0;
    text-align: left;
  }
}



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


  .column{
  margin: 0 0 0 0;
  }
  
  .navicolumn{
    margin: 0 0 0 0;
  }

  .info{
    display: none;
  }
  
  .hauptbild{
    height: 400px;
  }

  .halfimg{
    margin: 25px 0 25px 0;
  }

  .sliderblock h2{
    font-size: 16px;
    text-align: center;
  }
  
  h2{
      font-size: 30px;
  }
  
  h3{
      font-size: 23px;
  }
  
  p{
      font-size: 17px;
  }

  .zitat p{
    font-size: 25px;
  }
}



/* Keyframes */

@keyframes fade-up{
  0%{
      opacity: 0;
      transform: translateY(30px) scale(0.9);
  }
  100%{
      opacity: 1;
      transform: translateY(0px) scale(1);
  }
}