* {
    margin: 0;
    padding: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    border-width: 0;
    background: none;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
    font-family: 'DM Sans', sans-serif;
}

html {
    font-size: 16px;
}

:root {
    --c-black: #18191D;
    --c-white: #FEFEFE;
    --c-grey-d: #1D1E24;
    --c-grey-m: #1E2026;
    --c-grey-l: #26282F;
    --c-rosa: #FFCFEF;
    --c-signal: #e8413b;
    --c-violett: #4900C0;
    --swiper-theme-color: #FEFEFE !important;
    --swiper-pagination-bullet-inactive-opacity: .5 !important;
}

@font-face {
    font-family: 'DM Sans';
    src: url('/assets/fonts/DMSans-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'DM Sans';
    src: url('/assets/fonts/DMSans-Medium.ttf');
    font-weight: 500;
}

@font-face {
    font-family: 'DM Sans';
    src: url('/assets/fonts/DMSans-Bold.ttf');
    font-weight: 700;
}

a {
    transition: all .5s ease-in-out;
    display: block;
}

p {
    letter-spacing: .3px;
    font-size: 1.2rem;
}

.lead p {
    font-size: 1.25rem;
    line-height: 1.4;
}

h2 {
    font-size: 1.25rem;
    font-weight: 400;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.03rem;
    text-align: center;
}

h3.price {
    font-weight: 400;
    text-decoration: none;
}

b {
    font-weight: 700;
}

body {
    background-color: var(--c-black);
    color: var(--c-white);
    width: 100%;
}

main {
    position: relative;
}

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

section {
    position: relative;
}

.section-title {
    background-color: var(--c-white);
    color: var(--c-black);
    border-radius: 3rem;
    padding: .5rem 1rem;
    width: max-content;
    margin: 0 0 3rem 0;
}

img,
video {
    width: 100%;
    height: 100%;
}

hr {
    width: 100%;
    border-top: 1px solid;
    margin: 2rem 0;
}

button {
    cursor: pointer;
}

/** TRANSITIONS **/

.transition-main {
    transition-property: opacity, transform;
    transition-duration: 800ms;
    transition-timing-function: cubic-bezier(0, .94, .47, 1);
    transform: translateY(0);
    opacity: 1;
}

html.is-animating .transition-main {
    opacity: 0;
    transform: translateY(10rem);
}

html.is-leaving .transition-main {
    transform: translateY(-10rem);
}

.animated {
    opacity: 0;
    transition: all .5s ease-out;
}

.move {
    transform: translate(0, 0);
    opacity: 1;
}

/** NAV **/

button.mobile-open-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: .5s ease-in-out;
}

button.mobile-open-nav:hover,
button.mobile-open-nav:active,
button.mobile-open-nav:focus-visible {
    filter: drop-shadow(.5rem 1rem 1rem var(--c-violett));
}

section.nav {
    position: fixed;
    z-index: 1001;
}

.nav-container {
    position: fixed;
    background-color: var(--c-white);
    color: var(--c-black);
    border-radius: 1rem;
    z-index: 1001;
    top: -100vh;
    left: 1rem;
    right: 1rem;
    height: calc(100vh - 2rem);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: .8s cubic-bezier(.17, 1.2, .56, .99);

}

.nav ul li {
    list-style-type: none;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.5;
    width: 100%;
}

filter li {
    background: var(--c-black);
    color: var(--c-white);
    transition: .8s cubic-bezier(.17, 1.2, .56, .99);
}

.nav-open {
    top: 1rem;
}

.nav-logo {
    display: none;
}

.nav ul {
    display: flex;
    gap: .25rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

filter ul {
    flex-direction: row !important;
    flex-wrap: wrap;
}

.nav ul li:hover a {
    color: var(--c-violett);
}

.nav ul li {
    padding: .1rem .5rem;
    width: max-content;
    border-radius: 1.5rem;
}

filter {
    display: none;
}

filter ul li {
    padding: .1rem .7rem !important;
}

filter ul li:hover a {
    color: var(--c-rosa) !important;
}

filter ul li:hover {
    background: var(--c-violett);
}

@media (min-width: 720px) {

    .nav-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 0.25rem;
        padding-left: 0.5rem;
        width: 100%;
    }

    nav {
        margin-top: -0.15rem;
        display: flex;
        align-items: center;
    }

    button.mobile-open-nav,
    button.mobile-close-nav {
        display: none;
    }

    .nav ul {
        display: flex;
        gap: .25rem;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin-top: .1rem;
    }

    .nav ul li {
        list-style-type: none;
        text-align: center;
        font-size: 1rem;
        line-height: 1.5;
        width: auto;
    }

    filter {
        display: block;
    }


    filter ul {
        flex-direction: row !important;
        flex-wrap: nowrap;
    }

    .nav-container {
        top: auto;
        left: auto;
        right: auto;
        position: relative;
        height: max-content;
        padding: .25rem;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: .5rem;
    }

    section.nav {
        position: sticky;
        padding: .25rem .25rem 0 .25rem;
        top: 0;
        z-index: 101;
        box-shadow: 2px 4px 8px 0px rgba(0, 0, 0, 0.05);
    }
}

@media (min-width: 920px) {

    .nav-logo {
        justify-content: start;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
}

#cookies {
    display: none;
    background-color: var(--c-white);
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    height: max-content;
    width: calc(100% - 4rem);
    max-width: 300px;
    z-index: 1000;
    color: var(--c-black);
    padding: 2rem;
    border-radius: 1rem;
}

.c-content {
    display: flex !important;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 720px) {
    #cookies {
        bottom: 4rem;
    }
}

/** LANDING **/

section#landing,
section#gallery {
    height: 100vh;
}

#landing {
    padding: .25rem;
}

.landing-container {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    color: var(--c-black);
    display: grid;
    place-items: center;
}

.landing-container video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.landing-logo-container {
    position: relative;
    width: 100%;
    height: min-content;
    display: grid;
    place-items: center;
}

.landing-text h2 {
    font-size: 1.2rem;
}

@media (aspect-ratio <=1) {
    .vid-landscape {
        display: none;
    }

    .vid-portrait {
        display: inline-block;
    }
}

@media (aspect-ratio > 1) {
    .vid-landscape {
        display: inline-block;
    }

    .vid-portrait {
        display: none;
    }
}

@media (min-width: 720px) {

    .landing-text h2 {
        font-size: 1.6rem;
    }

    section#landing {
        height: calc(100vh - 35px - .5rem);
        padding: .25rem .25rem 0 .25rem;
    }

}

gallery {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

gallery figure {
    position: absolute;
    top: 5rem;
    left: 2rem;
    bottom: 6rem;
    right: 2rem;
}

gallery figure div {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    object-fit: contain;
    transition: 1s cubic-bezier(.37, 0, .42, 1.03);
    transform: translateY(0) rotate(0deg);
}

gallery figure div img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

gallery figure figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    transition: .5s ease-in-out;
    z-index: 1;
}

.falldown {
    transform: translateY(100vh) rotate(35deg);
}

.logo img {
    width: 60%;
}

@media (orientation: landscape) {


    .logo img {
        width: 40%;
    }
}

.button-prev,
.button-next {
    position: absolute;
    bottom: 1.55rem;
    z-index: 10;
    width: 45px;
    height: 45px;
}

.button-prev {
    left: calc(50% - 5rem);
}

.button-next {
    right: calc(50% - 5rem);
}

@media (min-width: 720px) {

    .button-prev,
    .button-next {
        top: calc(50% - 22px);
        bottom: auto;
    }

    .button-prev {
        left: 2rem;
    }

    .button-next {
        right: 2rem;
    }
}

/** ARTICLES **/

#magazine {
    padding: .25rem;
}

.magazine-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
}

.article-card,
.product-card {
    color: var(--c-black);
    border-radius: 1rem;
    width: 100%;
}

.article-card {
    background-color: var(--c-white);
    position: relative;
}

.product-card {
    background-color: var(--c-rosa);
}

.card-content {
    padding: 1.5rem;
    text-align: center;
}

.card-title {
    margin: 1rem 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-title p {
    font-size: 1.1rem;
}

.card-footer,
.card-infos {
    display: flex;
    gap: .5rem;
}

.card-footer {
    justify-content: space-between;
}

.card-info,
.card-link {
    padding: .25rem .5rem;
    border: 1px solid var(--c-black);
    border-radius: 3rem;
    font-size: .75rem;
    transition: .5s ease-in-out;
}

.card-link:hover {
    background-color: var(--c-violett);
    color: var(--c-white);
}

.card-footer-full {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.card-footer-full .card-info,
.card-footer-full .card-link {
    background-color: var(--c-white);
}


.card-image img {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.card-image-full img {
    border-radius: 1rem;
    object-fit: cover;
    display: block;
}

.load-more {
    display: flex;
    justify-content: center;
}

.load-more button {
    width: max-content;
}

.load-more-button-container {
    display: grid;
    place-items: center;
    padding: 4rem 2rem 2rem 2rem;
}

@media (min-width: 600px) {
    .magazine-container {
        display: block;
        column-count: 2;
        column-gap: .25rem;
    }

    .card-container {
        break-inside: avoid;
        margin-bottom: .25rem;
    }
}

@media (min-width: 720px) {
    #magazine {
        margin-bottom: 2rem;
    }
}

@media (min-width: 800px) {
    .magazine-container {
        column-count: 3;
    }
}

@media (min-width: 1100px) {
    .magazine-container {
        column-count: 4;
    }
}

@media (min-width: 1600px) {
    .magazine-container {
        column-count: 5;
    }
}

/** ABOUT, PARTNER, SHOPS, CONTACT **/

#about,
#partner,
#shops,
#contact,
footer {
    padding: .25rem .25rem 0 .25rem;
}

.about-container,
.contact-container,
.footer-container {
    border-radius: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--c-white);
    padding: 3rem 1rem;
}

.about-container {
    background-color: var(--c-grey-l);
}

.contact-container {
    background-color: var(--c-grey-m);
}

.about-logo img {
    width: 70%;
    max-width: 960px;
}

.about-content>*,
.partner-content>*,
.contact-content>* {
    margin-bottom: 1.5rem;
}

.about-content>a {
    width: 100%;
    max-width: 600px;
}

.about-content .link-button {
    max-width: 640px;
}

.swiper {
    width: calc(100vw - 3rem);
}

.oneslide {
    max-height: 100vh;
}

.multipleslides {
    height: 60vh;
}

.multipleslides figure {
    width: 100%;
    height: 100%;
}

.multipleslides .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .5rem;
}

.swiper-button-next-custom,
.swiper-button-prev-custom {
    display: none;
}

.swiper-pagination {
    position: relative !important;
}


.swiper-pagination-bullet-active {
    background: var(--c-black) !important;
}


.link-button {
    width: 100%;
    padding: .5rem 1.2rem;
    color: inherit;
    border: 1px solid;
    font-size: 1.5rem;
    border-radius: 2rem;
    text-align: center;
    transition: .5s ease-in-out;
    margin-bottom: .5rem;
}

.link-button:hover,
.link-button:focus-visible,
.footer-link:hover,
.footer-link:focus-visible {
    background-color: var(--c-violett);
    box-shadow: .25rem .25rem 1rem var(--c-black);
}

.link-button:active,
.footer-link:active {
    background-color: var(--c-violett);
    box-shadow: inset .25rem .25rem 1rem var(--c-black);
}

.partner {
    color: var(--c-black);
    background-color: var(--c-white);
    padding: 2rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vw;
    width: 90vw;
    margin-bottom: .5rem;
    border-radius: .5rem;
    transition: 1s ease-in-out;
    transform: rotateY(0deg);
    cursor: pointer;
}

.partner-content {
    transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
}

.partner-content a {
    text-decoration: underline;
    transition: .5s ease-in-out;
}

.partner-content a:hover {
    color: var(--c-violett);
}

.active {
    transform: rotateY(180deg);
}

.partner-title {
    position: relative;
    height: 21.25rem;
    width: 21.25rem;
}

.partner-name {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    top: 1.5rem;
    display: grid;
    place-items: center;
    z-index: 2;
}

.partner-title img {
    border-radius: .5rem;
    object-fit: cover;
    display: block;
    height: 21.25rem;
    width: 21.25rem;
    opacity: .3;
}

.shops-container {
    border-top: 1px solid var(--c-white);
    width: 100%;
}

.shop {
    padding: 2rem .5rem;
    border-bottom: 1px solid var(--c-white);
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.shop-link {
    width: 100%;
    display: grid;
    place-items: center;
}


@media (min-width: 600px) {
    .about-content {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
    }

    p,
    h3 {
        max-width: 640px;
        width: 100%;
    }

    .swiper,
    hr,
    blockquote,
    .article-container figure,
    .products-container,
    .partner-container,
    .shops-container {
        max-width: 1080px;
    }

    .swiper-button-next-custom,
    .swiper-button-prev-custom {
        display: block;
        position: absolute;
        top: calc(50% - 1.4rem);
        z-index: 12;
    }

    .swiper-button-next-custom {
        right: .5rem;
    }

    .swiper-button-prev-custom {
        left: .5rem;
    }

    .swiper-button-next-custom img,
    .swiper-button-prev-custom img {
        width: 45px;
        height: 45px;
    }

    .partner-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .partner {
        height: 21.25rem;
        width: 21.25rem;
        margin-bottom: 0;
    }
}

@media (min-width: 720px) {

    .about-container,
    .contact-container,
    .footer-container {
        padding: 5rem 1rem;
    }

    .shop {
        display: grid;
        grid-template-columns: 1fr 1fr 142px;
        gap: 1rem;
    }

    .shop * {
        text-align: left;
    }
}

@media (min-width: 920px) {

    .about-container,
    .contact-container,
    .footer-container {
        padding: 7rem 1rem;
    }
}

/** FOOTER **/

.footer-container {
    background-color: var(--c-grey-d);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 5rem;
}

.footer-logo {
    width: 7rem;
    margin-bottom: 2rem;
}

.footer-nav,
.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-link {
    padding: .5rem 1rem;
    border: 1px solid;
    border-radius: 2rem;
}

@media (min-width: 720px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 8rem;
        width: 100%;
        max-width: 1320px;
    }

    .footer-nav,
    .footer-contact {
        justify-content: flex-start;
    }
}

/** ARTICLE **/

section.article {
    padding: .25rem;
}

.article-container {
    border-radius: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1rem 3rem 1rem;
    color: var(--c-black);
    background-color: var(--c-white);
}

.article-container>* {
    margin-bottom: 1rem;
}

/* .article-container img {
    border-radius: .5rem;
} */

.article-container h1 {
    text-align: center;
    font-size: 2.2rem;
    line-height: 1.1;
    margin: 2.5rem 0;
    letter-spacing: -.05rem;
}

.article-container a {
    text-decoration: underline;
    font-style: normal;
}

.article-container a:hover {
    color: var(--c-violett);
}

.article-subtitle {
    padding: .5rem 1rem;
    color: var(--c-white);
    background-color: var(--c-black);
    border-radius: 3rem;
    margin: 3rem 0;
    width: max-content;
    align-self: center;
}

.article-links {
    width: 100%;
    text-align: center;
    font-size: 1.25rem;
}

.article-links a {
    text-decoration: underline;
    transition: .5s ease-in-out;
}

.article-links a:hover {
    color: var(--c-violett);
}

.featured-products {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .25rem;
}

blockquote {
    font-size: 1.8rem;
    padding: 3rem 1rem;
    border-top: 1px solid;
    border-bottom: 1px solid;
    text-align: center;
}

blockquote footer {
    font-size: 1rem;
    margin-top: 1rem;
}

.article-meta-container {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 1080px;
}

.article-author,
.article-tags {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.article-meta {
    padding: .25rem .75rem;
    border: 1px solid;
    border-radius: 2rem;
    width: max-content;
}

section.article figure {
    width: 100%;
}

figure iframe {
    width: 100%;
    height: 60vh;
}

.article-container figure figcaption {
    width: 100%;
    text-align: center;
    margin-top: .25rem;
    margin-bottom: .5rem;
}


@media (min-width: 720px) {

    .article-container h1 {
        text-align: center;
        font-size: 3.8rem;
        line-height: 1.1;
        margin: 2.5rem 0;
        letter-spacing: -.2rem;
        max-width: 720px;
    }

    .article-container figure {

        position: relative;
    }

    .article-container figure.xl {
        max-width: 2400px;
    }

    .article-container figure img {
        width: 100%;
        height: 100%;
        max-height: 90vh;
        object-fit: contain;
        object-position: center;
    }

    .article-container figure figcaption {
        margin-top: .75rem;
        margin-bottom: 2rem;
    }


    .article-container>* {
        margin-bottom: 2.5rem;
    }

    .article-links a {
        font-size: 2rem;
    }

    .products-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .products-container .product-card {
        max-width: 21.25rem;
    }

    .article-author,
    .article-tags {
        flex-direction: row;
    }

    .article-tags {
        justify-content: flex-end;
    }
}

.product-card * {
    text-decoration: none !important;
}

/** IMPRINT & ERROR **/

.imprint p,
.privacy p {
    margin-bottom: 1rem;
}

.imprint a,
.privacy a {
    text-decoration: underline;
}

@media (min-width: 720px) {
    .imprint-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        max-width: 1044px;
    }

}

#error {
    min-height: 100vh;
}

#error h2 {
    font-size: 2.4rem;
    text-align: center;
}

#error>div {
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    padding: 2rem;
}

#error .link-button {
    width: auto;
}