@font-face {
    font-family: "WC Mano Negra Bta Bold";
    src: url("fonts/WCManoNegraBoldBta.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Chawp";
    src: url("fonts/chawp.otf");
    font-style: normal;
}

@font-face {
    font-family: "KG Fall For You";
    src: url("fonts/KGFallForYou.ttf");
}

:root {
    --font-deco: "WC Mano Negra Bta Bold";
    --font-title: "Chawp";
    --font-subtitle: "KG Fall For You";
    --font-text: "Calibri";
    --clr-red: #fa3e2b;
    --clr-reddeco: #fa3e2b;
    --clr-redbg: #f87e63;
    --clr-blueDark: #9bf6ff;
    --clr-blueLight: #9bf6ff;
    --clr-bluebg: #caf0f8;
    --clr-yellow: #fdffb6;
    --clr-orange: #fee266;
}

*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 18px;
}

img {
    /* max-width: 100%; */
}

@media only screen and (max-width: 1250px) {
    html {
        font-size: 14px;
    }
}

@media only screen and (max-width: 1070px) {
    html {
        font-size: 12px;
    }
}

.font-title {
    font-family: var(--font-title);
    font-weight: normal;
    font-size: 1.6rem;
}

.font-subtitle  {
    font-family: var(--font-subtitle);
    font-weight: normal;
    letter-spacing: 2px;
    font-size: 1.4rem;
}

.font-text {
    font-family: var(--font-text);
    line-height: 22px;
}

.font-deco {
    font-family: var(--font-deco);
    font-size: 1.4rem;
}

.red {
    color: var(--clr-red);
}

.yellow {
    color: var(--clr-yellow);
}

.blue {
    color: var(--clr-blueLight);
}

.blush-blue {
    background: url(//s2.svgbox.net/pen-brushes.svg?ic=brush-1&color=9bf6ff);
    width: fit-content;
}

.todo {
    background-color: red;
    color: white;
    padding: 4px;
    font-weight: bold;
}

.seperator {
    margin-left: 50%;
    width: 200px;
    transform: translateX(-50%);
    margin-top: 60px;
    margin-bottom: 60px;
}

.seperator img {
    width: 100%;
}

.linkto {
    text-decoration: none;
    color: black;
}

/* header */

header {
    background-image: url("img/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    display: flex;
    align-items: center;
    padding: 20px;
}

@media only screen and (max-width: 600px) {
    header {
        flex-direction: column;
        gap: 20px;
    }
}

header .logo img {
    width: 140px;
}

header .logo {
    position: relative;
}

header .logo .author {
    position: absolute;
    left: 100px;
    bottom: -14px;
    font-size: 14px;
    width: max-content;
}

header .filler {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

header .filler .banner {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .filler .banner span {
    margin-inline: 20px;
}

header .filler .banner .homelink {
    text-decoration: none;
    color: white;
}

header .filler .navbar {
    flex: 1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

@media only screen and (max-width: 900px) {
    header .filler .navbar {
        flex-direction: column;
        gap: 10px;
    }
}

header .filler .navbar a {
    text-decoration: none;
}

header .icon img {
    width: 140px;
}

/* footer */

footer {
    background-image: url("img/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    display: flex;
    align-items: center;
    padding: 20px;
    margin-top: 40px;
}

@media only screen and (max-width: 600px) {
    footer {
        flex-direction: column;
        gap: 20px;
    }
}

footer .filler {
    flex: 1;
    text-align: center;
    font-size: 2rem;
}

footer .icon img {
    width: 80px;
}

footer a {
    text-decoration: none;
    color: rgb(172, 172, 172);
}

/* sections */

section {
    padding: 20px;
}

section .title {
    margin: 40px;
    font-size: 3rem;
}

@media only screen and (max-width: 600px) {
    section .title {
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 500px) {
    section .title {
        font-size: 2rem;
    }
}

/* hero */

#hero .container {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
}

@media only screen and (max-width: 1000px) {
    #hero .container {
        flex-direction: column;
        align-items: center;
    }
}

#hero .container .image img {
    width: min(400px, 80vw);
}

#hero .container .content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#hero .container .content .cols {
    display: flex;
    gap: 20px;
}

@media only screen and (max-width: 600px) {
    #hero .container .content .cols {
        flex-direction: column;
        align-items: center;
    }
}

#hero .container .content .cols .text {
    flex: 1;
}

#hero .container .content .cols .icon {
    flex: 1;
    text-align: center;
}

#hero .container .content .cols .icon img {
    width: 200px;
}

#hero .container .content .cols {
    position: relative;
}

#hero .container .content .wave {
    position: absolute;
    right: 0px;
    bottom: -40px;
}

#hero .container .content .wave img {
    width: 200px;
}

@media only screen and (max-width: 600px) {
    #hero .container .content .wave {
        bottom: -15px;
    }
    
    #hero .container .content .wave img {
        width: 100px;
    }
}

/* about */

#about .container {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
}

@media only screen and (max-width: 1000px) {
    #about .container {
        flex-direction: column;
        align-items: center;
    }
}

#about .container .image img {
    width: min(400px, 80vw);
}

#about .container .content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

#about .container .content .text {
    text-align: justify;
}

#about .quote {
    display: flex;
    flex-direction: column;
    gap: 10px
}

#about .quote .elements {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-inline: 40px;
    justify-content: space-between;
}

#about .quote .element {
    background: #ececec;
    padding: 8px;
    border-radius: 4px;
    font-family: var(--font-text);
    line-height: 22px;
    color: #575757;
    /* font-size: 14px; */
}

#about .quote img {
    width: 40px;
}

#about .quote .quote_start {

}

#about .quote .quote_end {
    align-self: flex-end;
}

@media only screen and (max-width: 900px) {
    #about .quote {
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 0px;
    }
    
    #about .quote .elements {
        padding-inline: 0px;
    }

    #about .quote img {
        width: 20px;
    }
}

.tab {
    margin-left: 20px;
}

/* offers */

#offers {
    padding: 20px;
}

#offers .subtitle {
    margin-top: 20px;
    margin-bottom: 20px;
}


#offers .arrow-list {
    width: 40px;
    margin-right: 20px;
}

#offers .container {
    display: flex;
    gap: 40px;
    position: relative;
}

@media only screen and (max-width: 1000px) {
    #offers .container {
        flex-direction: column;
        align-items: center;
    }

    #offers .container.package {
        flex-direction: row;
    }
}

@media only screen and (max-width: 600px) {
    #offers .container.package {
        flex-direction: column;
    }
}

#offers .container.space {
    padding-top: 40px;
    align-items: center;
}

#offers .tipp1 {
    position: absolute;
    right: 20px;
    top: -100px;
    z-index: -10;
}

#offers .tipp1 img {
    width: 500px;
}

@media only screen and (max-width: 1000px) {
    #offers .tipp1 {
        top: -80px;
    }
    
    #offers .tipp1 img {
        width: 300px;
    }
}

@media only screen and (max-width: 600px) {
    #offers .tipp1 {
        top: -95px;
    }

    #offers .tipp1 img {
        width: 220px;
    }
}

#offers .tipp2 {
    margin-left: 50%;
    width: 400px;
    transform: translateX(-50%);
    margin-top: 40px;
}

#offers .tipp2 img {
    width: 100%;
}

@media only screen and (max-width: 1000px) {    
    #offers .tipp2 {
        width: 300px;
    }
}

@media only screen and (max-width: 600px) {
    #offers .tipp2 {
        width: 180px;
    }
}

#offers .container .col.module {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#offers .container .col.module .info img {
    width: 50px;
}

#offers .container .col.module.center {
    align-items: center;
}

#offers .container .col.module .module-subtitle {
    text-align: center;
}

#offers .check-offer {
    width: 60px;
}

#offers .check-offer img {
    width: 60px;
}

#offers .container .col.module .question {
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 10px;
}

#offers ul {
    margin-left: 40px;
}

#offers .container .col.images {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#offers .container .col.images img {
    width: 200px;
}

#offers .container .col.images img.arrows {
    width: 40px;
}

#offers .new {
    width: 60px;
}

#offers .smiley {
    width: 60px;
}

#offers .man {
    width: 200px;
}

#offers .girl {
    width: 150px;
}

#offers .boystrong {
    width: 200px;
}

#offers .suncurvy {
    width: 200px;
}

#offers .waveyellow {
    width: 200px;
}

#offers .team {
    width: 200px;
}

@media only screen and (max-width: 600px) {
    #offers .strong {
        width: 80vw;
    }
}


/* summary */

#summary .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

#summary .container .card {
    width: 400px;
    cursor: pointer;
    transition: 300ms;
}

@media only screen and (max-width: 1000px) {
    #summary .container .card {
        width: 300px;
    }
}

#summary .container .card:hover {
    transform: scale(1.05);
}

#summary .container .card img {
    width: 100%;
}

/* contact */

#contact .container {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
}

@media only screen and (max-width: 1000px) {
    #contact .container {
        flex-direction: column;
        align-items: center;
    }
}

#contact .container .content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
}

#contactform {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media only screen and (max-width: 1000px) {
    #contactform {
        width: 90vw;
    }
}

#contactform .options {
    padding-left: 20px;
}

#contactform input[type=text],
#contactform input[type=email],
#contactform input[type=tel],
#contactform input[type=submit],
#contactform textarea {
    width: 100%;
    padding: 10px;
    font-family: var(--font-text);
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

#contactform input[type=submit] {
    border: none;
    cursor: pointer;
    background-color: var(--clr-redbg);
    color: white;
}

#contactform ul {
    margin-left: 40px;
}

#contact .image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#contact .image .profi {
    width: min(400px, 80vw);
}

#contact .image a {
    text-decoration: none;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#contact .email {
    width: 30px;
}

#contact .whatsapp {
    width: 30px;
}

#contact .instagram {
    width: 30px;
}

/* feedback */

#feedback .quote {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

#feedback .quote .elements {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-inline: 40px;
}

#feedback .quote .element {
    background: #ececec;
    padding: 8px;
    border-radius: 4px;
    font-family: var(--font-text);
    line-height: 22px;
    color: #575757;
    font-size: 14px;
}

#feedback .quote img {
    width: 40px;
}

#feedback .quote .quote_end {
    align-self: flex-end;
}

@media only screen and (max-width: 900px) {
    #feedback .quote {
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 0px;
    }
    
    #feedback .quote .elements {
        padding-inline: 0px;
    }

    #feedback .quote img {
        width: 20px;
    }
}

#impressum {

}

#impressum .subtitle {
    margin-top: 40px;
    margin-bottom: 20px;
}

#impressum .subsubtitle {
    margin-top: 20px;
    margin-bottom: 10px;
}

#impressum .subsubsubtitle {
    margin-top: 20px;
    margin-bottom: 0px;
    font-weight: bold;
}

/* cta */

#cta {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}