* {
    box-sizing: border-box;
}

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

/** Breakpoint: 768px+ */
@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; 
}

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

::selection {
    color: #014153;
    background-color: rgb(110, 38, 47);
}

.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;
    }
}

.button {
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    color: #014153;
    padding: 0.75rem 2rem;
    border-radius: 9999999px;
    border: none;
    background-color: rgba(94, 32, 40, 1.0);
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.25); 
}
.button:hover {
    text-decoration: underline;
    background-color: rgba(94, 32, 40, 1.0);
}

.button--primary {
    background-color: white;
}
.button--primary:hover {
    background-color: rgba(94, 32, 40, 1.0);
}

.button--transparent {
    -webkit-backdrop-filter: blur(0.5rem);
    backdrop-filter: blur(0.5rem);
    background-color: transparent;
    border: 0.125rem solid #014153;
}
.button--transparent:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.text-primary {
    color: #ED6A4E;
}

.desktop-only {
    display: none;
}

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

.header {
    padding-bottom: 2rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 75%;
    background-image: url("../Hintergrundilder/IMG_2397.JPG");
}

@media (min-width: 62em) {
    .header {
        background-image: url("../Hintergrundilder/IMG_2397.JPG");
        background-position: 20% 80%;
        width: 100%;
    }
}

.header::after {
    content: "";
    display: block;
    width: 7.5rem;
    height: 0.25rem;
    background-color: rgba(94, 32, 40, 1.0);
    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: 28rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 62em) {
    .header__logo-link {
        margin-left: 0;
        margin-right: 0;
    }
}

.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: #014153;
    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__heading {
    font-size: 2rem;
    color: white;
    margin: 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__button-container {
    display: flex;
    justify-content: center;
    padding-bottom: 1.5rem;
}

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

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

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

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

.heading--top-box::before {
    content: "";
    display: block;
    height: 0.25rem;
    width: 7.5rem;
    background-color: rgba(94, 32, 40, 1.0);
    margin-bottom: 2rem;
}

.heading--bottom-box::after {
    content: "";
    display: block;
    height: 0.25rem;
    width: 7.5rem;
    background-color: rgba(94, 32, 40, 1.0);
    margin-top: 2rem;
}

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

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

.container__impressum {
    margin-top: -1rem;
    padding-top: 3rem;
    padding-bottom: 1rem;
    background-color: rgb(225, 220, 206);
}

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

.selection__card-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 1rem;

    margin-top: -1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    margin-bottom: -1rem;
}

.selection__card {
    position:relative;

    text-align: center;
    background-color: #014153;
    flex: 0 0 22.333333rem;
    margin: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);

    will-change: transform;
    transform: scale(1);
    transition: transform 0.25s ease-in-out;
}

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

.selection__card-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 1.5rem;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(0.5rem);
    backdrop-filter: blur(0.5rem);
}

.selection__card-img {
    display: block;
    height: 27rem;
    width: 100%;
    object-fit: cover;
    object-position: 50% 0%;
}

.selection__card-img1 {
    object-position: 82% 0%;
}

.selection__card-img2 {
    object-position: 0% 80%;
}

.selection__card-img3 {
    object-position: 80% 0%;
}

.selection__card-img4 {
    object-position: 50% 0%;
}

.selection__card-img5 {
    object-position: 55% 0%;
}

.selection__card-img6 {
    object-position: 0% 20%;
}

.selection__card-img7 {
    object-position: 78% 0%;
}

.selection__card-img8 {
    object-position: 70% 0%;
}

.selection__card-img9 {
    object-position: 0% 35%;
}

.selection__card-img10 {
    object-position: 0% 25%;
}

.selection__card-img11 {
    object-position: 80% 20%;
}

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

.selection__card-date {
    color: white;
    text-transform: uppercase;
    text-align: center;
    font-size: 1rem;
    padding-bottom: 1rem;
    margin: 0;
}

.story {
    background-image: url("../Einzelshooting/IMG-8822.JPG");
    background-position: center center;
    background-size:cover;
    background-repeat: no-repeat;
    padding-bottom: 5rem;
    padding-top: 4rem;
}
@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) 100%),
            url("../Einzelshooting/IMG-8822.JPG");

        background-size: 100% 100%, 110% auto;
        background-position: center center, 100% 5%;

        /* https://developer.mozilla.org/en-US/docs/Web/CSS/background-attachment */
        background-attachment: local, fixed;
        background-repeat: no-repeat, no-repeat;
    }
}

@media (min-width: 62em) {
    .story__inner {
        padding-left: 50%;
    }
}

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

.guide {
    padding-top: 10rem;
    padding-bottom: 3rem;

    
    background-image: 
        linear-gradient(90deg, #014153, #014153),
        url("../Einzelshooting/IMG-8822.JPG"),
        url("../Hintergrundilder/IMG_2463.JPG")
        ;
    background-size:
        0% calc(100% - 10rem),
        0% calc(100% - 10rem),
        110% auto;
    background-position: 
        50% 100%,
        50% 100%,
        50% 40%;
    background-repeat: 
        no-repeat,
        no-repeat,
        no-repeat;

    background-blend-mode: 
        normal,
        normal;
}

@media (min-width: 62em) {
    .guide {
        padding-top: 0rem;

        background-size:
            calc(50% + 10rem) 100%, 
            calc(50% + 10rem) 100%,
            calc(50% - 10rem) auto;
        background-position: 
            100% 50%,
            100% 50%,
            0% 35%;
    }
}


@media (min-width: 62em) {
    .guide__container {
        padding-top: 1rem;
        padding-left: calc(50% - 7rem);
    }
}

.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);
}

.quote {
    background-color:rgb(225, 220, 206);
    color: rgba(94, 32, 40, 1.0);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.quote__figure {
    margin: 0;
    
    
}

.quote__blockquote {
    margin: 0;
    font-weight: bold;
    padding-bottom: 1.5rem;
    font-size: 2rem;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.075em;
}

.quote__figcaption {
    font-size: 1.25rem;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.075em;
}

.quote__paragraph {
    margin: 0;
}

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

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

.contact__indexonly {
    background-color: #014153;
}

.contact::selection,
.contact ::selection {
    color: rgba(94, 32, 40, 1.0);
    background-color: #014153;
}
@media (min-width: 62em) {
    .contact::after {
        content: "";
        display: block;
        background-color: #014153;
        width: 7.5rem;
        height: 0.25rem;
        margin-top: 3rem;
        margin-left: auto;
        margin-right: auto;
    }
}


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

.contact__logo_insta {
    /*opacity: 0.5;*/
    display: block;
    width: 5rem;
    margin-left: auto;
    margin-right: auto;
}

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

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

.contact__phone {
    display: inline-block;
    color: rgba(94, 32, 40, 1.0);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 1.75rem;
    text-decoration: none;
}
.contact__phone:hover {
    text-decoration: underline;
}

.contact__mail-container {
    text-align: center;
}

.contact__mail {
    display: inline-block;
    color: rgba(94, 32, 40, 1.0);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 1.75rem;
    text-decoration: none;
}
.contact__mail:hover {
    text-decoration: underline;
}

.contact__insta-container {
    text-align: center;
}

.contact__insta {
    display: center;
    color: rgba(94, 32, 40, 1.0);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 1.75rem;
    text-decoration: none;
    margin-top: 1rem;
}

.contact__info::after {
    content: "";
    display: block;
    width: 7.5rem;
    height: 0.25rem;
    background-color: #014153;
    margin: 3rem auto;
}
@media (min-width: 62em) {
    .contact__info::after {
        display: none;
    }
}


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

        padding-top: 1rem;
        padding-bottom: 1rem;

        /*background-image: linear-gradient(90deg, 
            transparent calc(50% - 0.125rem), 
            rgba(255, 255, 255, 0.5) calc(50% - 0.125rem), 
            rgba(255, 255, 255, 0.5) calc(50% + 0.125rem), 
            transparent calc(50% + 0.125rem));*/
    }
}

@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__form-submit-container {
    text-align: center;

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

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

.footer::selection,
.footer ::selection {
    color: rgba(94, 32, 40, 1.0);
    background-color: #014153;
}

.footer__text {
    margin: 0;
    text-align: center;
    color: #014153;
}

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

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