/*Farben*/
:root{
  --main_FARBE:#F6EFE0;
  --secondary_FARBE:#A79689;
  --primary_CNONTRAST:#573C32;
  --secondary_CONTRAST:#2C1E19;
  --black_FARBE:#000000;
}

.pic, .text {
  flex: 1;
}

.pic img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.div1 { grid-area: 1 / 1 / 2 / 2; }
.div2 { grid-area: 1 / 2 / 2 / 4; }
.div3 { grid-area: 2 / 1 / 3 / 3; }
.div4 { grid-area: 2 / 3 / 3 / 4; }

/*Seite 1*/
.FCarousel{
  width: 300px;
  height: 300px;
}

.carousel-item{
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.carousel-item img{
  width: 100%;
  height: 100%;
  object-position: 30% 40%;
  object-fit: cover;
}

#row2{
  padding-bottom: 5%;
  margin-top: 3%
}

.textRight{
  margin:20%;
  margin-bottom: 15%;
}

.textLeft{
  margin:20%;
}


/*Seite 2*/


.AUheading{
  text-align: center;
  padding: 2%;
  
}

.pic1{
  margin: 5%;
  border-radius: 8px;
}

.text{ 
  margin: 3%;
}

.row{
  margin-left: 3%;
  margin-right: 3%;
  display: flex;
  align-items: center;
}

.map{
  width: 60%;
  margin-left: 20%;
  margin-bottom: 5%;
}
.container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.location {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
  padding: 0;
  margin-bottom: 5%;
}

.container2 {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 768px) {

  .AUheading {
    padding: 5%;
    font-size: 1.5rem;
  }

  .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }

  /* Text zuerst */
  .text {
    order: 1;
    width: 90%;
    max-width: 600px;
    margin: 0 auto 20px auto;
  }

  /* Bild danach */
  .pic1 {
    order: 2;
    width: 90%;
    max-width: 400px;
    margin: 0 auto 40px auto;
    display: block;
  }

  .map {
    width: 90%;
    max-width: 600px;
    margin: 0 auto 40px auto;
    display: block;
  }

  .container {
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
  }

  .location {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .container2 {
    width: 100%;
    align-items: center;
    gap: 40px;
  }

}




/* Blog */

.containerBlog{
  margin: 5%;
}