@charset "UTF-8";

@font-face {
    font-family: 'khand-regular';
    src: url('fonts/khand-regular.eot');
    src: url('fonts/khand-regular.eot?#iefix') format('embedded-opentype'), url('fonts/khand-regular.woff2') format('woff2'), url('fonts/khand-regular.woff') format('woff'), url('fonts/khand-regular.ttf') format('truetype'), url('fonts/khand-regular.svg#besom_2regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    color-scheme: light dark;
}

@media (prefers-color-scheme: light) {

    body:has(#light-mode:checked) {
        color-scheme: dark;
    }

    #light-mode+label[for=light-mode]:before {
        content: '☀️';
    }

    #light-mode:checked+label[for=light-mode]:before {
        content: '🌙';
    }
}

@media (prefers-color-scheme: dark) {

    body:has(#light-mode:checked) {
        color-scheme: light;
    }

    #light-mode+label[for=light-mode]:before {
        content: '🌙';
    }

    #light-mode:checked+label[for=light-mode]:before {
        content: '☀️';
    }
}

:root {
    --color-very-dark: rgb(38, 38, 38);
    --color-dark: rgb(70, 70, 70);
    --color-bright: rgb(225, 225, 225);
    --color-gray: rgb(130, 130, 130);
    --color-very-bright: rgb(255, 255, 255);
    --color-highlight: rgb(201, 174, 132);
    --color-header: rgba(38, 38, 38, 0.85);

}

:root {
    font-size: 16px;
    --txt-std-size: 1.23rem;
    --height-header: 4rem;
}

@media (min-width: 576px) {
    :root {
        --height-header: 5rem;
    }
}

@media (min-width: 768px) {
    :root {
        --height-header: 6rem;
    }
}

@media (min-width: 1200px) {
    :root {
        --height-header: 7rem;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'khand-regular', sans-serif;
    line-height: 1.5;
    font-weight: 400;
    text-align: left;
    color: light-dark(var(--color-very-dark), var(--color-bright));
    background-color: light-dark(var(--color-bright), var(--color-very-dark));
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-size: var(--txt-std-size);
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
P,
li,
dd {
    font-family: 'khand-regular', sans-serif;
    font-weight: 400;
    margin-top: 0;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
}


h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h3 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

h5 {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 0.3rem;
}

h6 {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 0.02rem;
}

p {
    font-size: var(--txt-std-size);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

a {
    color: inherit;
    text-decoration: none;

    &:hover {
        color: inherit;
        text-decoration: underline;
    }
}

b,
strong {
    font-weight: bolder;
}

small,
.small {
    font-size: 0.8em;
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
}

figure {
    margin: 0 0 1rem;
}

img,
svg {
    vertical-align: middle;
}

ol,
ul {
    padding-left: 2rem;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

dt {
    font-weight: normal;
}

dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}

img {
    display: block;
    height: auto;
    width: 100%;
}

img.inline {
    display: inline-block;
    width: initial;
}

@media (prefers-color-scheme: dark) {
    img.invert-dark {
        filter: invert(73%);
    }
}

button {
    border-radius: 0;
}

header {
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-header);
    height: var(--height-header);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    overflow: visible;
    padding: 0.5rem;

    @media (min-width: 576px) {
        padding: 0.7rem 1rem;
    }

    @media (min-width: 768px) {
        padding: 0.7rem 3rem;
    }

    @media (min-width: 1200px) {
        padding: 1rem 4rem;
    }

    >.nav-box,
    >div {
        flex: 1 1 0px;
    }

    .nav-box {
        z-index: 20;
    }

    #header-logo {
        max-height: calc(var(--height-header) + 1rem);
        width: auto !important;
        z-index: 40;
    }

    .a-book,
    .a-button-insta {
        padding: 0.3rem 0.5rem;
    }
}

#menu-full {
    display: none;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 30;
    background-color: var(--color-very-dark);
    background-size: cover;
    box-shadow: 5px 0 10px 0 var(--color-very-dark);
    padding: 1rem;
    justify-content: center;
    align-items: center;
    color: var(--color-bright);
    font-weight: 400;
    font-style: normal;

    @media (min-width: 992px) {
        width: 50%;
    }

    & .active,
    & a:hover {
        color: var(--color-highlight);
    }
}


#menu-full-sub {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    font-size: var(--txt-std-size);
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 4rem;

    @media (min-width: 992px) {
        padding: 0 2rem;
        justify-content: flex-end;
    }
}

#nav-main {
    list-style: none;
    margin: 0;
    padding: 0;

    li {
        font-size: 2rem;
        margin: 0.5rem 0;

        a {
            text-transform: uppercase;
            display: block;

            &:hover {
                text-decoration: none;
            }
        }
    }
}

#scroll-to-top {
    position: fixed;
    bottom: 3dvh;
    right: 3dvw;
    left: auto;
    z-index: 10;
    color: light-dark(var(--color-very-dark), var(--color-bright));
    border: 1px solid var(--color-gray);
    background-color: light-dark(var(--color-very-bright), var(--color-dark));
    opacity: .3;
    width: 3rem;
    height: 3rem;
    padding: 0;
    margin: 0;

    &:hover {
        opacity: 0.8;
    }
}

main {
    position: relative;
}

/* sets top margin for first child to show content under scrollbar. */
/* main > :first-child {
    margin-top: 4rem;
    @media (min-width: 1200px) {
        margin-top: 7rem;
    }
} */

main article {
    text-align: center;
    margin: 1rem 0.5rem;
    background-color: light-dark(var(--color-very-bright), var(--color-dark));

    .figure-info>img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    >img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    >figure {
        margin: 0;
    }

    >div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem 1rem;

        >p {
            margin-bottom: 2rem;

            &:last-of-type {
                margin-bottom: 0;
            }
        }

        >ul {
            margin-bottom: 2rem;
        }
    }

    ul {
        list-style: none;
        text-align: left;

        li:before {
            margin-left: -1rem;
            content: "\203A\00a0";
            font-style: normal;
        }
    }

    &.transparent-block,
    &.big-block {
        display: block;
    }

    @media (min-width: 576px) {
        >div {
            padding: 3vh 3vw;
        }
    }

    @media (min-width: 768px) {
        >div {
            padding: 3vh 3vw;
        }
    }

    @media (min-width: 1200px) {
        >div {
            justify-content: space-evenly;
        }
    }
}

main article.big-block {
    text-align: left;
    scroll-margin: 9rem;

    >div {
        display: block;
    }

    ul {
        font-style: normal;
        padding-left: 1rem;
    }

    dt {
        font-size: 1.75rem;
    }

    dd {
        margin-bottom: 1rem;
        margin-right: 3rem;
    }
}

@media (min-width: 576px) {
    main article {
        margin: 1.5rem max(0.5rem, 4vw);
    }
}

@media (min-width: 768px) {
    main article {
        max-width: 760px;
        margin: 2rem auto;
    }
}

@media (min-width: 1200px) {
    main article {
        max-width: 1200px;
        margin: 2.5rem auto;
        display: grid;
        grid: auto / 1fr 1fr;
    }
}

footer {
    text-align: center;

    &#footer-icons {
        padding: 2.5rem 0.5rem;

        @media (min-width: 1200px) {
            padding: 5rem;
        }

        .link-icon-box {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-flow: row wrap;
            gap: 2rem;
            margin: 2rem auto;
        }
    }

    &#footer-links {
        background-color: light-dark(var(--color-very-bright), var(--color-dark));
        padding: 3rem 1rem;
    }
}

.menu-toggle {
    cursor: pointer;
    z-index: 40;
    position: relative;
    border: none;
    background-color: transparent;
    font-size: 1.8rem;
    color: var(--color-bright);

    >span {
        pointer-events: none;
        cursor: pointer;
    }

    &[aria-expanded="true"] {
        & .toggle {
            display: none;
            visibility: hidden;
        }

        & .toggled {
            display: block;
            visibility: visible;

        }

        &~#menu-full {
            display: flex;
            visibility: visible;
        }
    }
}

.accordeon {
    font-size: var(--txt-std-size);

    summary {
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 1.75rem;
        text-transform: uppercase;

        >h2 {
            margin-bottom: 0;
        }

        &:after {
            display: block;
            content: " ";
            height: 3rem;
            width: 3rem;
            background-repeat: no-repeat;
            background-position: center center;
            background-size: 1.4rem;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' class='bi bi-chevron-down svg-color' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");

            @media (prefers-color-scheme: light) {
                filter: brightness(0.1);
            }
        }
    }

    details[open] {
        >summary:after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' class='bi bi-chevron-up svg-color' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/%3E%3C/svg%3E");
        }

        >summary {
            margin-bottom: 1rem;
        }
    }

    details {
        border-top: 1px solid var(--color-gray);
        margin-top: 0.5rem;
        padding-top: 0.5rem;


        &:first-of-type {
            border-top: none;
            margin-top: 0;
            padding-top: 0;
        }
    }

    a {
        text-decoration: underline;
    }

    .subdetails {
        dt {
            font-size: 1.5rem !important;
            margin-left: 1rem;
        }

        dd {
            margin-left: 3rem;
        }
    }
}

.toggle {
    display: block;
    visibility: visible;
}

.toggled {
    display: none;
    visibility: hidden;
}

.d-b {
    display: block;
}

.d-ib {
    display: inline-block;
}

.txt-r {
    text-align: right;
}

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

.txt-l {
    text-align: left;
}

.mb1 {
    margin-bottom: 1rem;
}

.icon-64 {
    width: 64px;
    height: 64px;
}

.icon-32 {
    width: 32px;
    height: 32px;
}

.cont-two-rows {
    width: 100%;
    display: grid;
    grid: auto / 1fr 1fr;
    gap: 2rem;

    @media (max-width: 768px) {
        grid: auto / 1fr;
        gap: 1rem;
    }
}

.m-0 {
    margin: 0;
}

.a-book,
.a-button-insta,
.a-button {
    border: 2px solid transparent;
    background-color: transparent;
    padding: 0.5rem 1rem;
    display: inline-block;
    text-transform: uppercase;
}

.a-button:before,
.a-book:before {
    content: "\203A\00a0\00a0";
}

.a-book {
    color: var(--color-highlight);
    border-color: var(--color-highlight);

    &:hover {
        color: var(--color-highlight);
    }
}

.a-button {
    color: light-dark(var(--color-bright), var(--color-very-dark));
    background-color: light-dark(var(--color-very-dark), var(--color-bright));
    border-color: light-dark(var(--color-very-dark), var(--color-bright));

    &:hover {
        color: light-dark(var(--color-bright), var(--color-very-dark));
    }
}

.a-button.col-gold,
.a-button-insta.col-gold {
    color: var(--color-highlight);

    &:hover {
        color: var(--color-highlight);
    }
}

.a-button-insta {
    @media (max-width: 550px) {
        display: none;
        visibility: hidden;
    }

    @media (max-width: 840px) {
        & .hide-text {
            display: none;
            visibility: hidden;
        }
    }
}

.h-floating {
    margin: 1rem 0.5rem;

    @media (min-width: 576px) {
        margin: 2.5rem max(0.5rem, 4vw) 0 max(0.5rem, 4vw);
    }

    @media (min-width: 768px) {
        max-width: 760px;
        margin: 3rem auto 0 auto;
    }

    @media (min-width: 1200px) {
        max-width: 1200px;
        margin: 3.5rem auto 0 auto;
    }
}

.h-floating+article {
    margin-top: 0.5rem;
}

.figure-hero {
    margin-bottom: 2rem;
    display: flex;
    max-height: calc(100vh);
    overflow: hidden;

    img {
        width: 100%;
        object-fit: cover;
    }
}

.splide {
    padding: 0;
    max-width: 100%;
    visibility: visible;
    position: relative;

    &.splide-hero {
        padding: 0;
    }

    .splide__hero {
        position: relative;
        padding-left: 0;
        padding-right: 0;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
        z-index: 10;

        display: flex;
        max-height: calc(100vh - var(--height-header));
        overflow: hidden;

        img {
            object-fit: cover;
            width: 100%;
        }
    }

    .splide__slide {
        >div {
            height: 100%;
        }
    }

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

    .last {
        margin-top: auto;
        padding-top: 0;
    }

    .splide__pagination {
        display: flex !important;
        gap: 1rem;
        position: relative;
        bottom: 3rem;

        .splide__pagination__page {
            height: 1.25rem;
            width: 1.25rem;
            background-color: var(--color-very-bright);
            border: 0px;
            border-radius: 50%;
            cursor: pointer;

            &:hover {
                background-color: var(--color-dark);
            }

            &.is-active {
                background-color: var(--color-very-dark);
            }
        }
    }

    .splide__arrow {
        background-color: transparent;
        border: 0;
        color: var(--color-bright);
        cursor: pointer;
        position: absolute;
        top: 0;
        width: 6rem;
        z-index: 1;
        height: calc(100vh - var(--height-header));
        opacity: 0.4;
        background-image: none;
        padding-bottom: 2rem;
        padding-top: 2rem;
        max-height: 100%;

        >svg {
            margin-left: 2rem;
            filter: drop-shadow(0 0 4px rgb(0 0 0));

            >path {
                fill: currentColor !important;
            }
        }

        &:hover {
            opacity: 1;
        }

    }

    .splide__arrow--prev {
        transform: scaleX(-1);
    }

    .splide__arrow--next {
        right: 0;
    }
}

.gallery-block {
    background-color: light-dark(var(--color-very-bright), var(--color-dark));
    padding: 2rem;
    display: grid;
    grid: auto / 1fr;
    gap: 2rem;
    justify-content: space-between;

    @media (min-width: 576px) {
        grid: auto / 1fr 1fr;
    }

    @media (min-width: 768px) {
        grid: auto / 1fr 1fr 1fr;
    }

    @media (min-width: 1200px) {
        grid: auto / 1fr 1fr 1fr 1fr;
    }

    >button {
        border: none;
        background-color: transparent;
    }

    .img-gallery {
        aspect-ratio: 1;
        width: 100%;
        object-fit: cover;
        cursor: pointer;
        transition: scale 200ms;

        &:hover {
            scale: 1.05;
        }
    }
}

.img-gallery-full {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1010;
    background-color: rgba(0, 0, 0, .3);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    visibility: hidden;
    color: light-dark(var(--color-bright), var(--color-very-dark));

    &.show {
        display: flex;
        visibility: visible;
    }

    >.img-gallery-box {
        position: relative;
        max-width: 95dvw;
        max-height: 95dvh;
        z-index: 1011;

        @media (min-width: 768px) {
            max-width: 90dvw;
            max-height: 90dvh;
        }
    }

    .closebtn {
        z-index: 1013;
        position: absolute;
        box-shadow: 5px 0 15px 0 #262626;
        right: -1rem;
        top: -1rem;
        display: block;
        content: " ";
        height: 3rem;
        width: 3rem;
        border: none;
        cursor: pointer;
        background-color: light-dark(var(--color-very-bright), var(--color-dark));

        >* {
            pointer-events: none;
        }
    }

    .nextbtn,
    .prevbtn {
        z-index: 1012;
        position: absolute;
        border: none;
        top: 0;
        display: block;
        content: " ";
        height: 100%;
        width: 4rem;
        opacity: 0.3;
        cursor: pointer;
        background-color: transparent;
        color: var(--color-bright);

        @media (min-width: 768px) {
            width: 8rem;
        }

        >svg {
            pointer-events: none;
        }


        &:hover {
            opacity: 1;
        }
    }

    .nextbtn {
        right: 0;
    }

    .prevbtn {
        left: 0;
    }

    .img-fullimage {
        z-index: 1011;
        width: 100%;
        height: auto;
        border: 0.75rem solid light-dark(var(--color-very-bright), var(--color-very-dark));
        max-height: 100%;
        object-fit: contain;

        @media (min-width: 768px) {
            border-width: 1.5rem;
        }
    }

    & .pagination {
        display: flex;
        gap: 1rem;
        z-index: 1012;
        position: absolute;
        bottom: 0.5rem;
        left: 0;
        width: 100%;
        list-style: none;
        padding: 0;
        margin: 0;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0 1.5rem 1.5rem 1.5rem;

        @media (orientation: portrait) {
            bottom: -4rem;
        }

        @media (max-width: 768px) {
            display: none;
            visibility: hidden;
        }

        li::before {
            content: none;
        }

        & .page {
            padding: 0;
            margin: 0;
            height: 0.8rem;
            width: 0.8rem;
            border: 0px;
            border-radius: 50%;
            cursor: pointer;
            background-color: var(--color-very-bright);
            /* box-shadow: 0 0 15px 0 #262626; */

            @media (min-width: 768px) {
                height: 1.5rem;
                width: 1.5rem;
            }

            &:hover {
                background-color: var(--color-dark);
            }

            &.active {
                background-color: var(--color-very-dark);
            }
        }
    }
}

.svg-color path {
    fill: currentColor !important;
}

.svg-inline {
    & path {
        fill: currentColor !important;
    }

    height: 1em;
    width: 1em;
    vertical-align: text-bottom;
}

#light-mode-div {
    display: inline-block;
}

input#light-mode[type="checkbox"] {
    display: none;
}

label[for=light-mode] {
    font-size: var(--txt-std-size);
    user-select: none;
    cursor: pointer;
    filter: grayscale(1) contrast(10%);
}

.hide-me {
    display: none;
    visibility: hidden;
}

.text-imprint {
    text-align: center;
    padding-bottom: 2rem;
}

.text-disclaimer {
    p {
        font-size: 0.8em;
    }

    @media (min-width: 1200px) {
        display: grid !important;
        grid: auto / 1fr 1fr;
        grid-gap: 2rem;
        justify-items: stretch;
        align-items: start;
    }
}