/*
  Author: Neon Systems
  Creation date: 11/2022
*/


/* -- Setting defaults -- */

:root {
    --BG-color: #fff;
    --PRIMARY-color: #34b1b7;
    --SECONDARY-color: #d7b56d;
    --blue-color: #4fc1c9;
    --h1-shadow:#00ffc3;
}

@font-face {
    font-family: "Maiandra GD";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/Maiandra-GD.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Maiandra GD";
    font-style: italic;
    font-weight: 400;
    src: url("../fonts/Maiandra-GD-Italic.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Great Vibes";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/GreatVibes.otf") format("opentype");
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Maiandra GD', sans-serif;
    transition: 0.05s;
}

html {
    font-size: 1.1vw;
    color: var(--PRIMARY-color);
}

::selection {
    color: var(--SECONDARY-color);
    background: var(--blue-color);
}

h1 {
    font-weight: 400;
    padding: 1rem 5rem;
    line-height: 1.9em;
    font-size: 3rem;
    font-family: 'Great Vibes';
    text-align: center;
    color: var(--SECONDARY-color);
}

h1 em {
    font-style: normal;
    font-weight: 700;
    font-size: 1.5em;
}

h2 {
    font-weight: 500;
    padding: 1rem 0.1rem;
    font-size: 2.1rem;
    z-index: 2;
}

h2 i {
    font-size: 3rem;
    color: var(--SECONDARY-color);
}

p {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

p.statements {
 padding-bottom: 0.5rem;
}

a {
    color: var(--SECONDARY-color);
    text-decoration: none
}

ul {
    padding: 0.5rem;
}

li {
    /* margin: 0.3rem 0rem 0.3rem 2rem; */
}

section p a {
    text-shadow: 0 0 0.9rem #dfdfdf;
}

section p a:hover {
    color: #f1c971;
}

section ul {
    list-style: none;
    padding-left: 2rem;
}

section li {
    position: relative;
    margin: 1.5rem 0rem 1.5rem 0.8rem;
    line-height: 1.5rem;
    letter-spacing: 0.03rem;
}

section b {
    font-size: 1.1em;
}

section li::before {
    content: '';
    position: absolute;
    left: -1.6rem;
    top: 0.25rem;
    width: 1rem;
    height: 1rem;
    background: url('../media/spirale.svg') no-repeat;
}


/* General */

body {
}

header {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
}

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

#logo {
    width: 52rem;
    object-fit: contain;
}


/* Navigation */

nav {
    background: linear-gradient(180deg, #ffffff 40%, #ffffff00 100%);
    z-index: 99;
    position: sticky;
    top: 0;
    display: flex;
    margin-top: 0.6rem;
    justify-content: center;
}

nav a {
    color: var(--PRIMARY-color);
    text-decoration: none;
}

nav a:hover {
    color: #4fcaad;
}
nav ul {
    display: flex;
    list-style: none;
    padding-bottom: 0.8rem;
    padding-bottom: 1rem;
    padding-top: 0.1rem;
}

nav ul li {
    margin: 0 2rem;
    font-size: 1.5rem;
}


/* Buddha */

i {
    font-size: 1.7rem;
    font-family: "Great Vibes";
    font-style: normal;
}


/* Willkommen */

#willkommen {
    margin-top: 4rem;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Sections */

section {
    font-size: 1.1rem;
    padding: 3rem 9rem;
    color: white;
}


/* Cards */

.card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: linear-gradient(0deg, #ffffff 0%, #34b1b7 15%, #34b1b7 85%, #ffffff 100%);
    margin: 3rem 0;
    padding: 3rem 0;
}

.card-reverse {
    flex-direction: row-reverse;
}

.card-txt {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    padding: 0;
    max-width: 50%;
    border-radius: 2rem;
}

.card-txt-right {
    transform: translateX(-2rem);
}

.card-txt-right .content-wrap {
    padding: 0 2rem 2rem 5rem;;
}

.card-txt-left {
    transform: translateX(2rem);
}

.card-txt-left .content-wrap {
    padding: 2rem 3.5rem 2rem 3rem;
}

.card p {
    line-height: 1.9rem;
    font-size: 1.2rem;
    letter-spacing: 0.03rem;
    margin: 0.8rem 0;
}

.card em {
    font-size: 0.9em;
}

.card i {
    font-size: 1.5em;
}

.card section {
    font-size: 1.2rem;
}

.card-image-text {
    max-width: 61%;
}


/* Card images */
.card-img {
    object-fit: cover;
    width: 49%;
    border: 0.15rem solid;
    border-color: var(--SECONDARY-color);
    border-radius: 0.9rem;
    box-shadow: 2px 2px 6px #777777;
    z-index: 1;
}


/* Finetuning */

/* #meine-passion-img {
    width: 48%;
} */

#meine-werte-img {
    width: 47%;
}

#meine-geschichte {
    background: linear-gradient(0deg, #ffffff 0%, #34b1b7 10%, #34b1b7 90%, #ffffff 100%);
    background: url(../media/meine-geschichte.jpg) center center;
    background-size: 100%;
    padding: 0;
    margin: 0;
}

#meine-geschichte-txt {
    max-width: 80%;
    padding-right: 16.5rem;
}

#meine-geschichte-txt p {
    color: #004C63;
    text-shadow: 0 0 0.4rem #fff;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

#meine-geschichte-txt .content-wrap {
    padding-left: 2.3rem;
    padding-right: 2.3rem;
}

#meine-geschichte-img {
    float: right;
    margin-left: 1.2rem;
}

#meine-geschichte-intro {
    width: 69rem;
}

#meine-geschichte-intro-img {
    float: left;
    shape-outside: circle(50%);
    width: 16rem;
    margin-right: 1rem;
}

#meine-geschichte-intro-txt {
    padding-left: 3rem;
    padding-bottom: 2.5rem;
}

#meine-geschichte-intro-txt h2 {
    font-family: "Great Vibes";
    color: var(--SECONDARY-color);
    font-size: 2.3rem;
}

#meine-geschichte-intro-txt p {
    font-family: "Maiandra GD";
    font-size: 1.3rem;
    color: #4fcaad;
    line-height: 2rem;
}

.denn-p {
    padding-right: 1rem;
}


/* Profilfotos */

#profilfoto {
    width: 20rem;
}

#profilfoto3-wrap {
    height: 14rem;
    align-items: center;
    display: flex;
}

#profilfoto3 {
    width: 14rem;
    position: absolute;
    left: 6.5rem;
}

#kontakt-foto {
    position: absolute;
    width: 10rem;
    right: 10rem;
    top: 35rem;
}


/* Kontakt-Button */

.kontakt-button {
    display: flex;
    align-items: center;
    color: var(--SECONDARY-color);
    background-color: white;
    font-size: 1.5rem;
    text-align: center;
    padding: .6rem 1rem;
    border: .2rem solid var(--SECONDARY-color);
    border-radius: .5rem;
    transition: 0.5s;
    max-width: 7.55rem;
    margin: 1.5rem auto;
}

.kontakt-button:hover {
    scale: 1.1;
    transition: 0.5s;
}

#brief {
    width: 2rem;
    padding-left: 0.5rem;
}


/* Kontakt Formular */

#kontakt {
    padding: 0.5rem;
    background-color: #EBEBEB;
    background: var(--PRIMARY-color);
    background: radial-gradient(circle, #95ffd7 0%, #78d1cd 57%);
    border-radius: 1rem;
    width: 75rem;
    height: 34rem;
    justify-content: space-evenly;
}

#kontakt, input, button, textarea {
    border: 0.19rem solid var(--SECONDARY-color);
}

input, button {
    padding: 0.3rem;
    width: 14rem;
    color: var(--PRIMARY-color);
    font-size: 0.9rem;
    border-radius: 0.5rem;
}

#kontakt textarea {
    padding: 0.3rem;
    transition: 0s;
    color: var(--PRIMARY-color);
    font-size: 0.9rem;
    border-radius: 0.9rem;
    margin-right: 5rem;
}

#nachricht {
}

#kontakt fieldset, legend {
    border: none;
}

fieldset label, fieldset legend {
    color: var(--SECONDARY-color);
    font-family: "Great Vibes";
    font-size: 1.6rem;
}

fieldset label {
    padding-bottom: 1.4rem;
    color: white;
}

fieldset label:last-child {
    padding-bottom: 10rem;
}

fieldset legend {
    font-size: 2.2rem;
    color: white;
    padding-top: 9rem;
}

#kontakt button[type=submit] {
    margin-top: 1rem;
    color: var(--SECONDARY-color);
    font-family: "Great Vibes";
    font-size: 1.8rem;
    background-color: white;
    cursor: pointer;
    transition: 0.2s;
    margin-right: 5rem;
    margin-bottom: 0.5rem;
}

#kontakt button[type=submit]:hover {
    scale: 1.1;
    transition: 0.2s;
}


/* Zitate */

#buddha-wrap {
    width: 100%;
    background: url(../media/efeu.png) top/cover no-repeat;
    height: 22rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

#buddha {
    width: fit-content;
    padding: 1rem;
    color: white;
}

#coelho {
    padding: 1rem 0;
    text-align: center;
}

#buddha-2 {
    text-align: center;
}

#buddha-2 i, #coelho i {
    font-size: 2.3em;
    color: #4fcaad;
}

#buddha-2 em, #coelho em {
    color: #d7b56d;
}

.white p {
    font-size: 2rem;
    text-align: center;
    color: var(--SECONDARY-color);
}


/* Kalender */

.calender-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    color: white;
    width: 100%;
    padding-top: 4rem;
}

.calender-txt {
    width: 33%;
    padding-right: 7rem;
}

.calender {
    /* width: 1000px;
    height: 660px; */
}

.calender-txt p {
    padding-bottom: 0.7rem;
}

#calender-heading {
    padding-bottom: 2rem;
    font-family: "Great Vibes";
    font-size: 2.5rem;
    line-height: 2.7rem;
}

#cal {
    border-radius: 0.5rem;
    box-shadow: 0rem 0rem 7px #fff;
    height: 100%;
    width: 20rem;
    background-color: white;
    color: var(--PRIMARY-color);
}

#cal-logo {
    border-bottom: 1px solid #f1f1f1;
    width: 70%;
    margin: 0 auto;
    padding: 1rem 0;
}

#cal-contain {
    padding: 0 2.5rem;
}

#cal-avatar img {
    width: 3rem;
    transform: scaleX(-1);
    padding: 1rem 0;
}

#cal-name {
    font-size: 0.85rem;
}

#cal-titel {
    color: var(--SECONDARY-color);
    font-size: 1.2rem;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
}

#cal-types p {
    color: #9e9e9e;
    line-height: 1em;
    font-size: 0.85rem;
}

.cal-tel {
    padding-top: 1rem;
    padding-bottom: 0.8rem;
    width: 4rem;
    text-align: center;
}

.cal-button {
    max-width: 10rem;
    font-size: 1.33rem;
    color: #fff;
    background-color: var(--SECONDARY-color);
}


/* Footer */

footer {
    margin-top: 2rem;
}

footer section {
    padding-top: 3.1rem;
    height: 5rem;
    background: var(--PRIMARY-color);
    background: radial-gradient(circle, #2ecbbd 0%, #46e3fc 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}

.footer-logo-wrap {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 23rem;
}
.footer-img {
    height: 3rem;
    transition: 0.5s;
}

.footer-img:hover {
    height: 4.5rem;
    transition: 0.5s;
}

#impressum-footer {
    margin-top: 1rem;
}

#impressum-footer a {
    color: white;
    text-decoration: none;
}


/* Impressum */

#impressum-wrap {
    line-height: 1.5rem;
    display: flex;
    flex-direction: column;
    width: 40rem;
}

#impressum-wrap p {
    padding-bottom: 0.7rem;
}


/* Tailwind on a budget */

.txt-align-center {
    text-align: center;
}

.txt-gold {
    color: var(--SECONDARY-color);
}

.txt-justify {
    text-align: justify;
}

.flex {
    display: flex;
}

.flex-align-center {
    align-items: center;
}

.flex-justify {
    justify-content: center;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    html {
        font-size: 2vw;
    }

    nav ul li {
        margin: 0 1.6rem;
    }

    #willkommen {
        flex-direction: column-reverse;
        font-size: 5rem;
    }

    .card {
        flex-direction: column;
    }

    .card-img {
        width: 72% !important;
    }

    .card-txt {
        max-width: 80% !important;
    }

    .content-wrap {
        padding-top: 2rem !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .denn-p {
        padding-right: unset;
    }

    .card-txt-left {
        transform: unset;
    }

    .card-txt-right {
        transform: unset;
    }

    /* Angebot */
    #profilfoto3 {
        position: unset;
    }

    #profilfoto3-wrap {
        height: 23rem;
        flex-direction: column;
    }

    #angebot-intro {
        align-items: center;
        flex-direction: column;
    }

    .calender-txt {
        width: 50%;
        padding-right: 1rem;
    }

    /* Geschichte */
    #meine-geschichte-intro {
        width: 42rem;
        padding-left: 0;
        padding-right: 0;
    }

    #meine-geschichte {
        background: linear-gradient(0deg, #ffffff 0%, #34b1b7 10%, #34b1b7 90%, #ffffff 100%);
    }

    #meine-geschichte h1 {
        color: var(--SECONDARY-color) !important;
        /* padding-top: 3rem; */
    }

    #meine-geschichte-txt {
        padding-right: 0;
    }

    #meine-geschichte-txt > .content-wrap {
        background-color: unset !important;
    }

    #meine-geschichte-txt p {
        color: white;
        text-shadow: none;
    }

    #meine-geschichte-txt p:last-child {
        padding-bottom: 5rem;
    }

    /* Kontakt */
    #kontakt {
        flex-direction: column;
        height: 55rem;
        width: 95%;
    }

    #kontakt-foto {
        right: 3.5rem;
    }

    fieldset label:last-child {
        padding-bottom: 0;
    }

    fieldset legend {
        padding-top: 0;
    }

    #kontakt textarea {
        margin-right: 0;
    }

    #kontakt button[type=submit] {
        margin-right: 0;
    }
}