* {
  margin: 0 auto;
  box-sizing: border-box;
}

@font-face {
  font-family: deco;
  src: url(../fonts/GloriaHallelujah-Regular.ttf);
}

@font-face {
  font-family: standard;
  src: url(../fonts/Anonymous_Pro/AnonymousPro-Regular.ttf);
}

body {
  background-color: #fafafa;
    overflow-x: hidden;
}

:root {
  --akzent: #fb6c93;
  --bg-rosa: rgba(251, 108, 147, 0.05);
  --font-grey: #2b2b2b;
}

h2 {
  font-family: deco;
  text-align: center;
}

h3 {
  font-family: standard;
}

p {
  font-family: standard;
  font-size: 0.9rem;
}

.big {
  font-size: 6rem;
  font-family: deco;
}

/* Header-Navigation */

header {
  background-color: var(--bg-rosa);
}

.navbar-nav,
nav {
  width: 100vw;
  height: 60px;
  background-image: linear-gradient(
    to right,
    rgba(251, 108, 147, 0.07),
    rgba(243, 207, 196, 0.4),
    rgba(232, 234, 182, 0.31),
    rgba(202, 234, 182, 0.59),
    rgba(161, 192, 240, 0.73),
    rgba(177, 172, 235, 0.66)
  );
  justify-content: space-evenly;
  align-items: center;
  font-family: deco;
  margin-left: 0;
  position: sticky;
  z-index: 20;
}

.navbar-brand {
  width: 0;
  margin: 0;
  display: none;
}

.container-fluid {
  padding: 0;
  margin: 0;
}

.logo {
  width: 120px;
  height: auto;
  margin-top: 7rem;
}

.nav-link {
  color: var(--font-grey);
}

a:hover {
    transform: scale(1.1);
    --bs-link-color-rgb: var(--akzent);
}



.intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: fit-content;
  margin: 0 auto;
  padding-top: 8rem;
  padding-bottom: 2rem;
  background: var(--bg-rosa);
}

.my-carousel-container {
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 100%;
  max-width: 1000px;
  overflow: hidden;
  position: relative;
  margin-top: 8rem;
}

.my-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  margin-bottom: 2rem;
}

.my-carousel-item {
  flex: 0 0 33.333%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    transform 0.5s,
    opacity 0.5s;
  opacity: 0.5;
}

.my-carousel-item img {
  width: 80%;
  transition: transform 0.5s;
  box-shadow: 10px 10px 10px lightgray;
}

.my-carousel-item.active {
  transform: scale(1);
  opacity: 1;
  position: relative;
  z-index: 5;
}

.my-carousel-item.active img {
  width: 100%;
  box-shadow: 10px 10px 10px lightgray;
}

.my-carousel-button {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 3;
}

.my-carousel-button.prev {
  left: 10px;
}
.my-carousel-button.next {
  right: 10px;
}

.introtext {
  width: 60%;
  height: auto;
  max-width: 1000px;
  background-color: #fde7ea;
  box-shadow: 10px 10px 10px lightgray;
  margin-left: 6rem;
  padding: 2rem;
  position: absolute;
  z-index: -5;
  bottom: 0;
  overflow: visible;
}

.introtext h1 {
  font-family: deco;
  font-size: 1.5rem;
}

.my-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10rem;
  height: fit-content;
  background-color: var(--akzent);
  border: none;
  box-shadow: 5px 5px 10px lightgray;
  margin-right: -6rem;
  padding: 0.5rem;
  
}

.my-button a {
  margin: 0 auto;
  font-family: deco;
  color: var(--font-grey);
  text-align: center;
  text-decoration: none;
}

.my-button-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10rem;
  height: fit-content;
  background-color: var(--akzent);
  border: none;
  box-shadow: 5px 5px 10px lightgray;
  margin: 0 auto;
  padding: 0.5rem;
}

.my-button-2 a {
  margin: 0 auto;
  font-family: deco;
  color: var(--font-grey);
  text-align: center;
  text-decoration: none;
}

article.links,
article.rechts {
  margin: 0 auto;
  margin-top: 5rem;
}

.links .bild {
  width: 18rem;
  height: 18rem;
  background-color: var(--akzent);
  box-shadow: 10px 10px 10px lightgray;
}

.rechts .bild {
  width: 18rem;
  height: 18rem;
  background-color: var(--akzent);
  box-shadow: 10px 10px 10px lightgray;
  margin-bottom: 4rem;
}

.links img {
  width: 18rem;
  height: auto;
  border: white solid 20px;
  margin-left: 2rem;
  margin-top: 2rem;
  box-shadow: 10px 10px 10px lightgray;
}

.rechts img {
  width: 18rem;
  height: auto;
  border: white solid 20px;
  margin-left: -2rem;
  margin-top: 2rem;
  
  box-shadow: -1px 10px 10px lightgray;
}

.container {
  width: 100%;
}

.text {
  padding-left: 4rem;
}
.typ1,
.typ2 {
  background-color: var(--bg-rosa);
  padding: 2rem;
  padding-right: 6rem;
  padding-left: 1rem;
}



.polaroid {
  width: 16rem;
  box-shadow: 10px 10px 10px lightgray;
  border: 0.5px solid lightgray;
}



.p1 {
  transform: rotate(7deg);
}

.p2 {
  transform: rotate(-6deg);
}
.p3 {
  transform: rotate(4deg);
}

.p4 {
  transform: rotate(-5deg);
}

.phone {
    display: none;
}

.zitat {
  margin: 5rem 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.zitat p {
  width: 40vw;
  text-align: center;
}

footer {
  background-color: var(--bg-rosa);
}



.footer-nav {
  margin-top: 3rem;
}

.footer-nav a:hover {
  color: var(--akzent);
}

.kontakt {
  padding: 2.5rem;
}

.kontakt h2 {
  margin-bottom: 4rem;
}

.adresse p {
  padding-left: 2rem;
}

.kontakt label {
  font-family: standard;
}

.adresse a {
  text-decoration: none;
  color: var(--font-grey);
  font-family: standard;
  padding-left: 2rem;
}

.adresse a:hover {
  color: var(--akzent);
}

.my-button-3, .btn {
  background-color: var(--akzent);
  border: none;
  border-radius: 0;
  font-family: deco;
  color: var(--font-grey);
  text-align: center;
  text-decoration: none;
  margin-top: 1rem;
}

.my-button-3:hover, .btn:hover {
  transform: scale(1.1);
  background-color: var(--akzent);
}

.preise h1 {
  font-size: 3rem;
  /*  margin: 0 auto;
    text-align: center; */
}

.preise h3 {
  font-family: deco;
}

.bold {
  font-weight: bolder;
}

.icons {
    color: var(--font-grey);
    width: 25px;
    margin: 0 auto;
}

/* Media-Queries */

@media screen and (max-width: 1200px) and (orientation: landscape) {

    .navbar-brand {
  width: 0;
  margin: 0;
  display: none;
}

    .zitat p {
        width: 80%;
    }

   
}

@media screen and (max-width: 1200px) {
  .container-fluid {
    padding-top: 0;
    margin-top: 0;
    overflow-y: visible;
  }

  .navbar {
    width: 100%;
    height: 76px;
  }

  .navbar-nav {
    width: 100%;
    height: max-content;
    margin-top: -8rem;
    background-color: none;
    padding-bottom: 3rem;
    padding-top: -5rem;
  }

  .navbar-brand {
    margin: 0;
    margin-top: 1rem;
    display: inline;
  }

  .navbar-brand img {
    width: 150px;
    margin-left: 5rem;

  }

  .navbar-collapse {
    padding-top: 0;
    padding-bottom: 2rem;
  }

  .navbar-nav a {
    position: relative;
  }

  #logo {
    display: none;
  }

  img.logo {
    margin-top: 0;
  }

  button.navbar-toggler {
    margin-top: -8rem;
    margin-right: 1rem;
  }

  .zitat p {
    width: 80%;
  }



  .intro {
    height: fit-content;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding-top: 10rem;
    padding-bottom: 2rem;
  }

  .my-carousel-container {
    width: 80%;
    height: 60%;
    max-width: 800px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
    justify-content: center;
    padding: 2rem 0;
    margin-top: 0rem;
  }

  .my-carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0.3rem 0.8rem;
    cursor: pointer;
    border-radius: 50%;
    z-index: 3;
  }

  .container.introtext {
    margin-right: 2rem;
    max-width: 600px;
    position: relative;
    overflow: visible;
    margin-top: 2rem;
  }

  .my-button {
    margin: 0;
    margin-top: 6rem;
    margin-left: 1rem;
  }

  .typ1,
  .typ2 {
    padding-left: 1rem;
  }

  .typ1 .polaroid,
  .typ2 .polaroid {
    width: 11rem;
  }

  .adresse {
    margin-top: 2rem;
  }

  .icons {
    margin-top: 2rem;
  }

   .kontakt h2 {
      margin-top: 2rem;
    }
}



@media screen and (max-width: 820px) and (orientation: portrait) {

  .introtext h1 {
    width: 100%;
  }

  

  .my-button {
    overflow: visible;
    margin-left: 5rem;
  }

  .bild {
    margin-bottom: 3rem;
  }
  .typ1 .polaroid,
  .typ2 .polaroid {
    width: 8rem;
    padding: 0;
    margin: 0;
  }

  .my-button-2 {
    position: relative;
    z-index: 350;
    overflow: visible;
  }

      .phone {
        display:inline;
        margin-left: 0;
    }

    .full {
        display: none;
}

/* Smartphone */

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

 /*     main {
        overflow-x: hidden;
    } */

  img.logo {
    padding-top: 0.5rem;
    padding-left: 1rem;
    margin-left: 1rem;
  }
  
 
  .my-carousel-container {
    width: 100%;
    height: 60%;
    max-width: 700px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
    justify-content: center;
    padding: 2.5rem 0;
  }

  .my-carousel-item.active {
    transform: scale(1.3);
    opacity: 1;
    z-index: 2;
    padding-top: 0.5rem;
  }

  .my-carousel-item.active img {
    width: 100%;
    box-shadow: 10px 10px 10px lightgray;
  }

  .my-carousel-button {
    transform: scale(0.5);
    top: 50%;
  }

  .container.introtext {
    margin: 0 auto;
    margin-top: 0.5rem;
    width: 90%;
    padding: 1rem;
  }

  .container.introtext h1 {
    font-size: 1.2rem;
  }

  .container.introtext p {
    width: 100%;
    font-size: 0.8rem;
  }

  .my-button {
    margin-top: 0;
    margin-left: 0;
  }

  .links .bild {
    margin: 0 auto;
    margin-left: 2rem;
    margin-bottom: 3rem;
  }

  .links img {
    margin-left: 1rem;
  }

  .text {
    max-width: max-content;
    padding: 0;
    margin: 0 2rem;
    flex-shrink: 1;
  }

  article.typ1 {
    padding-top: 1rem;
    width: 100%;
    margin: 0 auto;
    margin-left: 0.5rem;
  }

  article.typ2 {
    padding-top: 1rem;
  }

  .typ1 .polaroid {
    width: 7rem;
    margin-right: 2rem;
  }

  /* .typ1 img.polaroid:hover {
    position: relative;
    z-index: 900;
    transform: scale(1.5);
  } */

  .typ2 .polaroid {
    width: 7rem;
    margin-left: 2rem;
  }

/*    .typ2 img.polaroid:hover {
    transform: scale(1.5);
    position: relative;
    z-index: 999;
  } */

   article.typ1 h2, article.typ2 h2 {
    margin-top: 2rem;
  }

  article.typ1 p {
    margin-left: 1rem;
  }

  article.zitat {
    margin: 0 auto;
  }

  .zitat p {
    margin: 1rem auto;
    width: 80%;
  }

  .big {
  font-size: 3rem;
  font-family: deco;
}

    .phone {
        display: inline;
        margin-left: 0;
    }

    .full {
        display: none;
    }
}
}