@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Philosopher:wght@400;700&family=Poppins:wght@100;200;300;400;500;600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Philosopher:wght@400;700&family=Poppins:wght@100;200;300;400;500;600&display=swap');

:root{
  --main-color:#885f30;
  --black:#222;
  --white:#fff;
  --light-black:#777;
  --light-white:#fff9;
  --dark-bg:rgba(0,0,0,.7);
  --light-bg:#eee;
  --border:.1rem solid var(--black);
  --box-shadow:0  .5rem 1rem rgba(0,0,0,.1);
  --text-shadow:0  2.5rem 3rem rgba(0,0,0,.3);
}

*{
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
}

html{
  font-size: 62.5%;
  overflow-x: hidden;
}

html::-webkit-scrollbar{
  width: 1rem;
}

html::-webkit-scrollbar-track{
  background-color: var(--white);
}

html::-webkit-scrollbar-thumb{
  background-color: var(--main-color);
}

section{
  padding: 5rem 10%;
}

@keyframes fadeIn {
  0%{
    transform: scale(0);
    opacity: 0;
  }
}

.heading {
  background-size: cover !important;
  background-position: center !important;
  padding-top: 10rem;
  padding-bottom: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.heading h1{
  font-size: 6rem;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: var(--text-shadow);
  font-family: 'philospher';
  max-width: 90%;
  word-wrap: break-word;
}
.btn{
  display: inline-block;
  background: var(--black);
  margin-top: 1rem;
  color: var(--white);
  font-size: 1.7rem;
  padding: 1rem 3rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn:hover{
  background: var(--main-color);
}

.heading-title{
  text-align: center;
  margin-bottom: 3rem;
  font-size: 3rem;
  text-transform: uppercase;
  color: var(--black);
  font-family: 'philospher';
}

.header{
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background-color: var(--white);
  display: flex;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  box-shadow: var(--box-shadow);
  align-items: center;
  justify-content: space-between;
}

.header .logo{
  font-size: 3rem;
  color: rgb(192, 37, 37);
  font-family: 'lobster';
}

.header .logo img {
  width: 120px;
  height: auto;
}

.header .navbar a{
  font-size: 2rem;
  margin-left: 2rem;
  color: var(--black);
}

.header .navbar a:hover{
  color: var(--main-color);
}

#menu-btn{
  font-size: 2.5rem;
  cursor: pointer;
  color: var(--black);
  display: none;
}

.home{
  padding: 0;
}

.home .slide{
  text-align: center;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover !important;
  background-position: center !important;
  min-height: 60rem;
}

.home .slide {
  position: relative;
}

.home .slide .content {
  width: 120rem;
  display: none;
}

.home .swiper-slide-active .content{
  display: inline-block;

}

.home .slide .content span {
  display: block;
  font-size: 5rem;
  color:var(--light-white);
  padding-bottom: 1rem;
  animation:fadeIn .3s linear backwards .2s;
}

.home .slide .content h3 {
  font-size: 3vw;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.2;
  text-shadow: var(--text-shadow);
  padding: 1rem 0;
  animation:fadeIn .4s linear backwards .4s;
}

.home .slide .content .btn{
  animation:fadeIn .4s linear backwards .7s;
}

.home .swiper-button-next,
.home .swiper-button-prev{
  top: inherit;
  left: inherit;
  bottom: 0;
  right: 0;
  height: 7rem;
  width: 7rem;
  background: var(--white);
  color: var(--black);
}

.home .swiper-button-next:hover,
.home .swiper-button-prev:hover{
  background: var(--main-color);
  color: var(--white);
}

.home .swiper-button-next:after,
.home .swiper-button-prev:after{
  font-size: 2rem;
}

.home .swiper-button-prev{
  right: 7rem;
}


.services .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
}

.services .box-container .box{
  padding: 3rem 2rem;
  text-align: center;
  background: var(--main-color);
  border-radius: 7px;
}

.services .box-container .box:hover{
  background: var(--black);
  /* cursor: pointer; */
}

.services .box-container .box img{
  height: 7rem;
}

.services .box-container .box h3{
  color: var(--white);
  font-size: 1.7rem;
  padding-top: 1rem;
}

.home-about{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.home-about .image{
flex: 1 1 41rem;
}

.home-about .image img{
  width: 100%;
  border-radius: .5rem;
}

.home-about .content{
  flex: 1 1 41rem;
  padding: 3rem;
  background: var(--light-bg);
  border-radius: .5rem;
  border-top-left-radius: 0rem;
  border-bottom-left-radius: 0rem;
}

.home-about .content h3{
  font-size: 3rem;
  color: var(--black);
}

.home-about .content p{
  font-size: 1.5rem;
  padding: 1rem 0;
  line-height: 2;
  color: var(--black);
  text-transform: none;
}

.home-reisearten{
  background: var(--light-bg);
}

.home-reisearten .box-container{
  display: grid ;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.home-reisearten .box-container .box{
  border: var(--border);
  box-shadow: var(--box-shadow);
  background: var(--white);
}

.home-reisearten .box-container .box:hover .image img{
  transform: scale(1.1);
}

.home-reisearten .box-container .box .image{
  height: 25rem;
  overflow: hidden;
}

.home-reisearten .box-container .box .image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: .2s linear;
}

.home-reisearten .box-container .box .content{
  padding: 2rem;
text-align: center;
}

.home-reisearten .box-container .box h3{
  font-size: 2.5rem;
  color: var(--black);
}

.home-reisearten .box-container .box .content p{
  font-size: 1.5rem;
  color: var(--light-black);
  line-height: 2;
  padding: 1rem 0;
}

.home-reisearten .box-container .box .content p span{
  font-size: 2rem;
  color: var(--black);
  line-height: 2;
}

.home-reisearten .mehr-lesen{
  text-align: center;
  margin-top: 2rem;
}

.about{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 3rem;
}

.about .image{
  flex: 1 1 41rem;
}

.about .image img{
  width: 100%;
  border-radius: .3rem;
}

.about .content{
  flex: 1 1 41rem;
  text-align: center;
}

.about .content h3{
  font-size: 3rem;
  color: var(--black);
}

.about .content p{
  font-size: 1.5rem;
  color: var(--light-black);
  line-height: 2;
  padding: 1rem 0;
  text-transform: none;
}

.about .content .icons-container{
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-end;
}

.about .content .icons-container .icons{
  background: var(--light-bg);
  padding: 2rem;
  flex: 1 1 16rem;
}

.about .content .icons-container .icons i{
  font-size: 4rem;
  margin-bottom: 2rem;
  color: var(--main-color);
}

.about .content .icons-container .icons span{
  font-size: 1.5rem;
  color: var(--light-black);
  display: block;
}

.feedback{
  background-color: var(--light-bg);
}

.feedback .slide{
  padding: 2rem;
  border: var(--border);
  background: var(--white);
  text-align: center;
  box-shadow: var(--box-shadow);
  user-select: none;
}

.feedback .slide .stars{
  padding-bottom: .5rem;
}

.feedback .slide .stars i{
  font-size: 1.7rem;
  color: gold;
}

.feedback .slide p{
  font-size: 1.5rem;
  color: var(--light-black);
  line-height: 2;
  padding: 1rem 0;
}

.feedback .slide h3{
  font-size: 2rem;
  color: var(--black);
}

.feedback .slide span{
  font-size: 1.5rem;
  color: var(--main-color);
  display: block;
}

.feedback .slide img{
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
  background-color: var(--light-bg);
  margin-top: 1rem;
}


.reisearten .box-container{
  display: grid ;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.reisearten .box-container .box{
  border: var(--border);
  box-shadow: var(--box-shadow);
  background: var(--white);
  border-radius: .3rem;
  display: none;
}

.reisearten .box-container .box:nth-child(1),
.reisearten .box-container .box:nth-child(2),
.reisearten .box-container .box:nth-child(3){
  display: inline-block;
}


.reisearten .box-container .box:hover .image img{
  transform: scale(1.1);
}

.reisearten .box-container .box .image{
  height: 25rem;
  overflow: hidden;
}

.reisearten .box-container .box .image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: .2s linear;
}

.reisearten .box-container .box .content{
  padding: 2rem;
text-align: center;
}

.reisearten .box-container .box h3{
  font-size: 2.5rem;
  color: var(--black);
}

.reisearten .box-container .box .content p{
  font-size: 1.4rem;
  color: var(--light-black);
  line-height: 2;
  padding: 1rem 0;
  text-transform: none;
}

.reisearten .box-container .box .content p span{
  font-size: 2rem;
  color: var(--black);
  line-height: 2;
  display: block;
}
/* 
.reisearten .box-container .box .content .dn{
  padding-bottom: 2.1rem;
  padding-top: 1.8rem;
} */

.reisearten .mehr-laden{
  text-align: center;
  margin-top: 2rem;
}


.buchen .buchen-form{
  padding: 2rem;
  background: var(--light-bg);
}

.buchen .buchen-form .flex{
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.buchen .buchen-form .flex .inputBox{
  flex: 1 1 41rem;
}

.buchen .buchen-form .flex .inputBox input{
  width: 100%;
  padding: 1.2rem 1.4rem;
  font-size: 1.6rem;
  color: var(--light-black);
  text-transform: none;
  margin-top: 1.5rem;
  border: var(--border);
}

.buchen .buchen-form .flex .inputBox input:focus{
  background: var(--light-black);
  color: var(--white);
}

.buchen .buchen-form .flex .inputBox input:focus::placeholder{
  background: var(--light-black);
  color: var(--white);
}

.buchen .buchen-form .flex .inputBox span{
  font-size: 1.5rem;
  color: var(--light-black);
}

.buchen .buchen-form .btn{
  margin-top: 2rem;
}

.datenschutz .datenschutzerklärung{
  font-size: 1.5rem;
  line-height: 24px;
}

.datenschutz .datenschutzerklärung p{
  margin: 1.8rem;
  padding-left: 4rem;
  text-transform: none;
}

.datenschutz .datenschutzerklärung ul{
  padding-left: 9rem;
}

.datenschutz .datenschutzerklärung ol{
  padding-left: 12rem;
}

.datenschutz .datenschutzerklärung li{
  padding-left: 1rem;
}

.agb p{
  font-size: 1.5rem;
  line-height: 24px;
  padding-left: 4rem;
  margin: 1.8rem;
  text-transform: none;
}








.footer{
  background: url(../images/footer.bg4.jpeg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.footer .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}

.footer .box-container .box h3{
  color: var(--white);
  font-size: 2.5rem;
  padding-bottom: 2rem;
}

.footer .box-container .box a{
  color: var(--light-white);
  font-size: 1.5rem;
  padding-bottom: 1.5rem;
  display: block;
  text-transform: none;
}

.footer .box-container .box a i{
  color: var(--main-color);
  padding-right: .5rem;
  transition: .2s linear;
}

.footer .box-container .box a:hover i{
  color: var(--main-color);
  padding-right: 1.5rem;
}

.footer .credit{
  text-align: center;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: .1rem solid var(--light-white);
  font-size: 2rem;
  color: var(--white);
}

.footer .credit span{
  color: var(--main-color);
}









/* Media Queries */

/* Für Bildschirme bis zu 1200px Breite */
@media (max-width: 1200px) {
  section {
    padding: 3rem 5%;
  }
}

/* Für Bildschirme bis zu 991px Breite */
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  section {
    padding: 3rem 2rem;
  }
}

/* Für Bildschirme bis zu 768px Breite */
@media (max-width: 768px) {

  /* Menü-Button anzeigen */
  #menu-btn {
    display: inline-block;
    transition: transform 0.2s linear;
  }

  /* Menü-Button Animation beim Schließen */
  #menu-btn.fa-times {
    transform: rotate(180deg);
  }

  /* Navbar-Styling */
  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: var(--border);
    padding: 2rem;
    transition: clip-path 0.2s linear;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }

  /* Navbar-Animation bei Aktivierung */
  .header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  /* Navbar Links zentrieren und abstand anpassen */
  .header .navbar a {
    display: block;
    margin: 2rem;
    text-align: center;
  }
}

/* Für Bildschirme bis zu 480px Breite */
@media (max-width: 480px) {
  html {
    font-size: 50%;
  }

  .heading-title {
    font-size: 3.5rem;
  }
}
