
html {
	scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  height: 100%;
}

@media only screen and (max-width: 1200px) {
  nav {
    flex-direction: column;
  }
  .nav-links,
  .nav-link {
    display: none;
  }
}

h2 {
  text-align: left;
  width: 100%;
  margin: 0;
  font-size: calc(32px + 0.3vw);
  padding: 30px 0 8px;
  position: relative;
}

p {
  margin: 0;
  font-size: calc(16px + 0.3vw);
}

a {
  text-decoration: none;
}

@media only screen and (max-width: 600px) {
  h2 {
    margin: 0;
    font-size: 8vw;
  }
  p {
    margin: 0;
    font-size: 5vw;
  }
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
}

.section {
  width: 100%;
  position: relative;
}

@media only screen and (min-width: 601px) {
  .section {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.colorful {
  background-color: #f9d868;
  z-index: 1;
}

.fullscreen {
  min-height: 100vh;
}

.section-content {
  max-width: 1024px;
  padding: 48px 24px;
  margin: 24px;
}

@media only screen and (max-width: 600px) {
  .section-content {
    margin: 20px;
  }
}

.highlight {
  background-color: #3bd6ff;
  border-radius: 5px;
  padding: 0 4px;
}

button {
  position: relative;
  top: 0;
  padding: 0;
  border: none;
  color: white;
  background: black;
  border-radius: 8px;
  padding: 16px 32px;
  font-size: calc(16px + 0.3vw);
  cursor: pointer;
  transition: top ease 0.5s;
}

button:hover {
  top: -10px;
  box-shadow: 0px 0px 96px rgba(0, 0, 0, 0.1);
}

/*
NAVIGATION
*/

.nav-name {
  font-size: 1.4em;
  color: #3bd6ff;
  font-family: 'Permanent Marker', cursive;
}

.nav-job {
  font-size: 1.855em;
}

@media only screen and (max-width: 600px) {
  .nav-placeholder-right {
    display: none;
  }
}

.nav-placeholder-right > .nav-name,
.nav-placeholder-right > .nav-job {
  color: white;
  cursor: default;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */
}
.nav-links {
  display: flex;
  justify: center;
  gap: 16px;
}

.nav-link {
  padding: 4px;
  font-weight: semibold;
  color: black;
  text-decoration: none;
  border-bottom: 2px solid #3bd6ff;
}

.nav-link:hover {
  background-color: #3bd6ff;
  border-radius: 4px;
}

/*
SECTION: PERSON
*/

#person-content {
  padding: 96px 24px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 20px 20px;
  grid-template-areas:
    'Image Text Text'
}

@media only screen and (max-width: 600px) {
  #person-content {
    display: flex;
    flex-direction: column;
    padding: 24px;
  }
}

.person-header {
  text-align: center;
  grid-area: Header;
}

.person-text {
  grid-area: Text;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.person-image {
  grid-area: Image;
  display: flex;
  justify-content: center;
  align-items: center;
}

.person-footer {
  margin: auto;
  grid-area: Footer;
}

#eva-picture {
  width: 100%;
  max-width: 450px;
}

/*
SECTION: ANGEBOT
*/

#angebot-content {
  padding-top: 80px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 20px 120px;
  grid-template-areas:
    'Explanation .'
    'Explanation .'
    'Explanation .'
    'Explanation .'
    'Explanation .'
    'Explanation .';
}

.offer-header {
  grid-area: Explanation;
}

.offer-detail {
  border-top: 1px dashed;
  padding-top: 8px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.offer-number {
  font-size: 0.75em;
  margin-right: 8px;
  font-size: 20px;
}

@media only screen and (max-width: 600px) {
  #angebot-content {
    padding: 20px 10px;
    display: flex;
    width: 90%;
    flex-direction: column;
  }

  .offer-detail {
    width: 80%;
    padding: 20px 10px;
  }
}

/*
SECTION: EXISTENZANALYSE
*/

#existenzanalyse {
  display: flex;
  justify-content: center;
  align-items: center;
}

#existenzanalyse-content {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: left;
  flex-direction: column;
  flex-grow: 1;
  background-color: #F6F6F6;
  border-radius: 16px;
}

#shape-1 {
  position: absolute;
  top: -130px;
  left: 0px;
  width: 200px;
  height: 200px;
}

#shape-2 {
  position: absolute;
  bottom: -160px;
  right: 40px;
  width: 200px;
  height: 200px;
}

@media only screen and (max-width: 1200px) {
  #shape-1 {
    display: none;
  }

  #shape-2 {
    display: none;
  }
}


/*
SECTION: THERAPEUTIN
*/

#therapeutin-content {
  height: 100%;
  margin: auto;
}

.business-card {
  position: static;
  margin: 80px auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 570px;
  max-width: 86%;
  height: 350px;
  background-color: black;
  color: white;
  transform: rotateX(0) rotateY(0);
  transform-style: preserve-3d;
  transition-duration: 0.1s;
  transition-timing-function: ease !important; 
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0px 0px 96px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.business-card.is-out {
  transform: rotateX(0) rotateY(0) !important;
  transition-duration: .7s;
}

#business-card-header {
  font-size: 2em;
  margin-bottom: 8px;
}

#eva-picture-2 {
  z-index: -1;
  width: 250px;
  max-width: 450px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.contact-link {
  color: white;
}

@media only screen and (max-width: 600px) {
  .business-card {
    background-color: black;
  }

  #eva-picture-2 {
    width: 150px;
  }
}

/*
SECTION: WEG
*/

#weg-content {
  position: relative;
  height: 100%;
  background-color: #F6F6F6;
  border-radius: 16px;
}

#shape-3 {
  position: absolute;
  top: -80px;
  right: 120px;
  width: 200px;
  height: 200px;
}

#shape-4 {
  position: absolute;
  bottom: -130px;
  left: 24px;
  width: 200px;
  height: 200px;
}

#shape-5 {
  position: absolute;
  bottom: -150px;
  right: 24px;
  width: 200px;
  height: 200px;
}

@media only screen and (max-width: 1200px) {
  #shape-3 {
    display: none;
  }

  #shape-4 {
    display: none;
  }

  #shape-5 {
    display: none;
  }
}

/*
SECTION: PRAXIS
*/

#praxis-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

#praxis {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.praxis-overview {
  margin: 0 auto 40px auto;
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  grid-template-rows: 1fr; 
  gap: 0px 120px; 
  grid-template-areas: 
    ". ."; 
}

@media only screen and (max-width: 600px) {
  .praxis-overview {
    margin: 0 auto;
    grid-template-columns: 1fr; 
    grid-template-rows: 1fr 1fr; 
    gap: 0px 0px; 
    grid-template-areas: 
    "."
    "."; 
  }
}

.praxis-block {
  border-radius: 8px;
  padding: 24px 0;
}

.praxis-image {
  width: 100%;
  border-radius: 8px;
}

.praxis-location {
  margin-top: 16px;
}