* {
    box-sizing: border-box;
}

/* Reset */

h1, 
h2, 
h3, 
h4, 
h5, 
h6,
p,
figure,
blockquote {
    padding: 0;
    margin:0;
}

/** Breakpoint: 576px */
@media (min-width: 36em) {}

/** Breakpoint: 768 px */
@media (min-width: 48em) {}

/** Breakpoint: 992px */ 
@media (min-width: 62em) {}

/** Breakpoint: 1200px */
@media (min-width: 75em) {}

/** Breakpoint: 1400px */
@media (min-width: 87.5em) {}

html {
    font-size: 1em; /* 16px */
}

body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
}

::selection {
    color: #014153;
    background-color: #ED6A4E;
}

/* ---------- */
/* Components */
/* ---------- */

/* container */

.container {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 62em) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.container--bc-white {
    background-color: #EEE9DA;
}

/* buttons */

.button {
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    color: white;
    border: none;
    border-radius: 900000px;
    padding: 0.75rem 2rem;
    background-color: #ED6A4E;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
    font-size: 1rem;
}

.button:hover {
    cursor: pointer;
    text-decoration: underline;
    background-color: #ac452d;
}

.button--transparent {
    -webkit-backdrop-filter: blur(0.15rem);
    backdrop-filter: blur(0.15rem);
    background-color: transparent;
    border: solid 0.125rem white;
}

.button--transparent:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.button--primary {
    background-color: #014153;
}

.button--primary:hover {
    background-color: #012d39;
}

.desktop-only {
    display: none;    
}

@media (min-width: 62em) {
    .desktop-only {
        display: initial;
    }
}

.text-primary {
    color: #ED6A4E;
}

/* links */
.link {
    text-decoration: none;
    color:#ED6A4E;
}

/* headings */

.heading {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #014153;
    padding: 2rem 0;
}

.heading--centered {
    text-align: center;
}

.heading--white {
    color: white;
    text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
}

.heading--small {
    font-size: 1rem;
}

.heading--middle {
    font-size: 1.2rem;
}

.heading--top-box::before {
    content: "";
    display: block;
    height: 0.125rem;
    width: 7rem;
    background-color: #ED6A4E;
    margin-bottom: 2rem;
}

.heading--bottom-box::after {
    content: "";
    display: block;
    height: 0.125rem;
    width: 7rem;
    background-color: #ED6A4E;
    margin-top: 2rem;
}

/* form */

input.form__input[type="text"],
input.form__input[type="email"],
input.form__input[type="password"],
textarea.form__input {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.form__input-container {
    text-align: center;
    padding-bottom: 1rem;
}

.form__input {
    font-family: inherit;
    font-size: 1rem;
    padding: 0.5rem 0.5rem;
    background-color: white;
    border: 0.125rem solid rgb(200, 200, 200);
    border-radius: 0.5rem;
    width: 20rem;
    resize: none;
    width: 100%;
}

.form__input:focus {
    border: 0.125rem solid rgb(150, 150, 150);
    outline: none;
}

.form__input--textarea {
    height: 6rem;
}

/* Header Section */

.header {
    padding-bottom: 2rem;
    background-image: url("./../images/header/header-background-0.5x.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 80%;
}

@media (min-width: 62em) {
    .header {
        background-image: url("./../images/header/header-background.jpg");
    }
}

.header::after {
    content:"";
    display: block;
    width: 6.5rem;
    background-color: #ED6A4E;
    height: 0.125rem;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5);
}

@media (min-width: 62em) {
    .header::after {
        width: 12.5rem;
    }
}


.header__logo-link {
    display: block;
    width: 9rem;
    margin-left: auto;
    margin-right: auto;
}

.header__logo {
    width: 100%;
    filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.5));
}

.header__nav-ul {
    margin: 0;
    padding: 0;
    text-align: center;
}

.header__nav-li {
    display: inline-block;
    list-style-type: none;
}

.header__nav-li--desktop-only {
    display: none;
}

@media (min-width: 62em) {
    .header__nav-li--desktop-only {
        display: inline-block;
    }
}

.header__nav-link {
    font-weight: bold;
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 1rem 1rem;
    text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}

.header__nav {
    padding-top: 2rem;
    padding-bottom: 0.5rem;
}

@media (min-width: 62em) {
    .header__nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .header__logo-link {
        margin-left: 0;
        margin-right: 0;
    }
}

.header__heading {
    font-size: 2rem;
    color: white;
    margin: 0;
    padding: 0;
    text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}

@media (min-width: 36em) {
    .header__heading {
        font-size: 3rem;
    }
}

@media (min-width: 62em) {
    .header__heading {
        padding-top: 5rem;
    }
}

.header__sub-heading {
    font-size: 1rem;
    color: white;
    margin: 0;
    padding-top: 0.5rem;
    padding-bottom: 2rem;
    text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}

@media (min-width: 36em) {
    .header__sub-heading {
        font-size: 1.25rem;
    }
}

@media (min-width: 62em) {
    .header__sub-heading {
        padding-bottom: 7.5rem;
    }
}

.header__-container {
    display: flex;
    justify-content: center;
    padding-bottom: 2rem;
}

@media (min-width: 62em) {
    .header__-container {
        display: none;
    }
}


/* ------------------------- */
/* Adventure Bookink Section */
/* ------------------------- */

.heading__pre-text {
    display: block;
    font-size: 1rem;
}

.adventures {
    padding-bottom: 4rem;
    background-color: rgb(225, 220, 206);
}

.adventures__card-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -1rem;
    margin-right: -1rem;
    margin-top: -1rem;
    margin-bottom: -1rem;
}

.adventures__card {
    background-color: rgb(255, 255, 255);
    flex: 0 0 22.333333rem;
    /* height: 40rem; */
    margin: 1rem;
    border-radius: 2rem;
    overflow: hidden;
    text-align: center;
    padding-bottom: 1.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);

    transition: transform 300ms ease-in-out;
    transform: scale(1);
}

.adventures__card:hover {
    transform: scale(1.05);
}

.adventures__card-img {
    display: block;
    width: 100%;
}

.adventures__card-heading {
    margin: 0;
    font-size: 1.25rem;
    color: #014153;
    text-transform: uppercase;
    text-align: center;
    padding-top: 1.25rem;
    padding-bottom: 1rem;
}

.adventures__card-date {
    margin: 0;
    color: #014153;
    font-size: 1.25rem;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 1rem;
}


/* --------------- */
/*  Story section  */
/* --------------- */

.story {
    background-image: url('../images/story/background-mobile.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    padding-top: 4rem;
    padding-bottom: 5rem;
 }

 @media (min-width: 62em) {
    .story {
        background-image: 
            linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 10%, transparent 90%, rgba(0, 0, 0, 0.5)),
            url('../images/story/background-desktop.jpg');
        background-size: 100% 100%, 110% auto;
        background-position: center center, 100% 50%;
        background-repeat: no-repeat, no-repeat;
        background-attachment: local, fixed;
    }

    .story__inner {
        padding-left: 50%;
    }
 }

 .story__paragraph {
    margin: 0;
    font-size: 1rem;
    color: white;
    padding-bottom: 1.5rem;
    line-height: 1.4em;
    text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
 }


/* ------------------------- */
/*      Parts Section        */
/* ------------------------- */

.parts {
    padding-bottom: 1.8rem;
}

.parts::after {
    content:"";
    display: block;
    width: 6.5rem;
    background-color: #ED6A4E;
    height: 0.125rem;
    margin-left: auto;
    margin-right: auto;
    /* box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5); */
}

.parts__paragraph {
    margin: 0 auto;
    font-size: 1rem;
    color: #014153;
    line-height: 1.4em;
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
    max-width: 40rem;
    text-align: center;
}

.parts__items-outer {
    overflow: hidden;
}

.parts__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /*
    We use px as a unit here to prevent rounding issues
    as this causses a white space to appear within the
    outer border 
    */
    border: 0.125rem solid #ED6A4E;
    margin-top: -0.28rem;
    margin-bottom: -0.28rem;
    margin-left: -0.28rem;
    margin-right: -0.28rem;
}

.parts__item {
    display: block;
    flex: 1 0 20rem;
    padding: 1.5rem;
    text-decoration: none;
    /*
    We use px as a unit here to prevent rounding issues
    as this causses a white space to appear within the
    outer border 
    */
    border: 0.125rem solid #ED6A4E;
}

.parts__item:hover {
    background-color: rgb(222, 222, 222);
    cursor: pointer;
}

.parts__item-icon-container {
    width: 5rem;
    height: 5rem;
    border-radius: 22222222px;
    background-color: #ED6A4E;
    margin-left: auto;
    margin-right: auto;
    /* display: flex;
    justify-content: center; */
    padding-top:1rem;
    padding-bottom: 1rem;
}

.parts__item-icon {
    display: block;
    width: 5rem;
    height: 3rem;
    margin-left: auto;
    margin-right: auto;
    /* width: 50%; */
    /* height: 100%; */
    fill: white;
    border-radius: 9999999px;
    /* background-color: #ED6A4E; */
    /* clip-path: circle(40%); */
    /* padding: 3rem; */
}

.parts__item-heading {
    margin: 0;
    font-size: 1rem;
    padding-top: 1.5rem;
    color: #014153;
    text-align: center;
}

/* --------------------- */
/*     guide section     */
/* --------------------- */

.guide {
    padding-top: 10rem;
    padding-bottom: 3rem;
    background-image:
        /* linear-gradient(90deg, rgba(1, 65, 83,0.9), rgba(1, 65, 83, 0.9)), 
        url("../images/guide/pexels-arnie-chou-927414-edited.jpg"),
        url("../images/guide/pexels-minmin-kp-2554603.jpg"); */
        linear-gradient(90deg, rgba(1, 65, 83,0.9), rgba(1, 65, 83, 0.9)), 
        url("../images/guide/pexels-kevin-menajang-982673.jpg"),
        url("../images/guide/pexels-aron-visuals-1694621.jpg");
    background-size:
        100% calc(100% - 10rem),
        100% calc(100% - 10rem),
        100% auto;
    background-position:
        50% 100%, 
        50% 100%, 
        50% calc(5rem - 60vw);
    background-repeat:no-repeat, no-repeat, no-repeat;
    background-blend-mode:
        multiply,
        normal;
}

@media (min-width: 62em) {
    .guide {
        padding-top: 0;
        background-size:
            calc(50% + 10rem) auto,
            calc(50% + 10rem) 100%, 
            calc(50% - 10rem) auto;  
        background-position: 
            100% 50%,
            100% 50%,
            0% 20%;
    }

    .guide-container {
        padding-left: calc(50% - 7rem);
        padding-top: 2rem;
    }
}

.guide__paragraph {
    margin: 0;
    font-size: 1rem;
    color: white;
    padding-bottom: 1.5rem;
    line-height: 1.4em;
    text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
}

/* ---------------------- */
/*     skills section     */
/* ---------------------- */

.skills {
    background-color: rgb(225, 220, 206);
    padding-bottom: 3rem;
}

.skills__card-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: -1rem;
    margin-right: -1rem;
    margin-bottom: -1rem;
    margin-left: -1rem;
}

.skills__card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    flex: 0 0 20.3333rem;
    margin: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
}

.skills__card:hover {
    transform: scale(1.05);
}


.skills__item-icon-container {
    display: inline-block;
    background-color: #ED6A4E;
    border-radius: 9999999px;
    color: #014153;
    /* margin-left: auto;
    margin-right: auto; */
    /* display: flex;
    justify-content: center; */
    padding: 1rem;
    font-size: 4rem;
}

.skills__item-icon {
    display: block;
    width: 1em;
    height: 1em;
    margin-left: auto;
    margin-right: auto;
    /* width: 50%; */
    /* height: 100%; */
    fill: #014153;
    border-radius: 9999999px;
    /* background-color: #ED6A4E; */
    /* clip-path: circle(40%); */
    /* padding: 3rem; */
}

.skills__list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.skills__list-element {
    margin: 0;
    padding: 0;
    padding-bottom: 0.7rem;
}

.skills__list-element::before {
    content: "";
    display: inline-block;
    width: 0.25rem;
    height: 0.25rem;
    background-color: currentColor;
    border-radius: 9999999px;
    margin-right: 0.5em;
    /* margin-bottom: 0.125em; */

    position: relative;
    top: -0.16em
}

/* --------------------- */
/*     quote section     */
/* --------------------- */

.quote {
    background-color: #014153;
    color: #ED6A4E;
    padding-top: 4rem;
    padding-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.075em;
}

.quote__paragraph::before {
    content: "„";
}

.quote__paragraph::after {
    content: "“";
}

.quote__paragraph {
    font-size: 2rem;
    font-weight: bold;
    padding-bottom: 2rem;
}


/* ----------------------- */
/*     contact section     */
/* ----------------------- */

.contact {
    background-color: #ED6A4E;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.contact::selection,
.contact ::selection {
    color:#ED6A4E;
    background-color: #014153;
}

@media (min-width: 62em) {
    .contact:after {
        content: "";
        display: block;
        height: 0.125rem;
        width: 7.5rem;
        background-color: #014153;
        margin-left: auto;
        margin-right: auto;
        margin-top: 3rem;
    }
}

@media (min-width: 62em) {
    .contact__row {
        display:flex;
        flex-direction: row;

        padding-top: 1rem;
        padding-bottom: 1rem;
        background-image: linear-gradient(90deg, 
            transparent calc(50% - 0.12rem), 
            rgba(255, 255, 255, 0.5) calc(50% - 0.12rem), 
            rgba(255, 255, 255, 0.5) calc(50% + 0.12rem), 
            transparent calc(50% + 0.12rem));
    }
}

@media (min-width: 62em) {
    .contact__info {
        flex: 0 0 50%;
    }
}

.contact__form {
    max-width: 25rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 62em) {
    .contact__form {
        flex: 0 0 50%;
        padding-left: 2rem;
        padding-right: 2rem;
        max-width: initial;
        margin-left: initial;
        margin-right: initial;
    }
}

.contact__info:after {
    content: "";
    display: block;
    height: 0.125rem;
    width: 5rem;
    background-color: #014153;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 62em) {
    .contact__info:after {
        display: none;
    }
}

.contact__logo {
    display: block;
    width: 18rem;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.5;
}

.contact__cta {
    margin: 0;
    padding-top: 2rem;
    padding-bottom: 1rem;
    font-weight: normal;
    font-size: 1.5rem;
    color: white;
    text-align: center;
}

.contact__phone-container {
    display: block;
    text-align: center;
}

.contact__phone {
    display: inline-block;
    color: #014153;
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-size: 1.75rem;
}

.contact__form-submit-container {
    text-align: center;
}

@media (min-width: 62em) {
    .contact__form-submit-container {
        text-align: right;
    }
}

/* -------------- */
/*     footer     */
/* -------------- */

.footer {
    background-color: #ED6A4E;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.footer::selection,
.footer ::selection {
    color:#ED6A4E;
    background-color: #014153;
}

.footer__paragraph {
    color: #014153;
    text-align: center;
}

.footer__link {
    text-decoration: none;
    color:#014153;
}

.footer__link:hover {
    text-decoration: underline;
}