:root {
    --dreadlock-main: #3caa35;
    --dreadlock-main-25: #3daa353a;
    --dreadlock-second: #8CBE22;
    --dreadlock-third: #d5db42;

    --wonderland-main: #38306D;
    --wonderland-second: #8F57A2;
    --wonderland-third: #C64174;
    --wonderland-third-25: #C641743a;
    --wonderland-fourth: #f399c2;

    --scroll: translateY(-50%);

    --green: #006900;
    --cream: #F6EDD9;
    --cream-shadow: #d6bc7f;

    --main-font: "Archivo Black", Sans-serif;
    --main-text-color: white;

    --standard-shadow: 4px 4px 4px rgba(0, 0, 0, 0.144);
    --standard-shadow-white: 4px 4px 4px rgba(0, 0, 0, 0.7);
    --standard-shadow-green: 4px 4px 4px rgba(0, 0, 0, 0.7);
    --icon-shadow: 2px 4px 2px rgba(0, 0, 0, 0.7);
    --drop-shadow-rip-image: 0px 4px 8px rgba(0, 0, 0, 0.5);

    --nav-bar-scale: scale(1.15);
    --nav-bar-height-desktop: 5rem;
    --nav-bar-height-mobile: 4rem;
    --banner-height: 2rem;

    --image-overlay-transition-in: opacity .5s ease;
    --image-overlay-transition-out: opacity .3s ease;

    --news-post-max-height: 100px;

    --widget-width: 1500px;

    --screen-width: 1024px;
}

@media only screen and (max-width: 1550px) {
    :root {
        --widget-width: 1250px;
    }
}

@media only screen and (max-width: 1300px) {
    :root {
        --widget-width: 1000px;
    }
}

@media only screen and (max-width: 1050px) {
    :root {
        --widget-width: 750px;
    }
}

@media only screen and (max-width: 800px) {
    :root {
        --widget-width: 500px;
    }
}

@media only screen and (max-width: 550px) {
    :root {
        --widget-width: 250px;
    }
}

@font-face {
    font-family: 'Archivo black';
    src: url('/fonts/ArchivoBlack-Regular.woff') format('woff'),
         url('/fonts/ArchivoBlack-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Edo';
    src: url('/fonts/edo.woff2') format('woff2'),
         url('/fonts/edo.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Abel';
    src: url('/fonts/Abel-Regular.woff') format('woff'),
         url('/fonts/Abel-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* GENERAL */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

:focus {
    outline: none;
}

a {
    text-decoration: none;
}

p,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
    cursor: default;
}

table {
    border-collapse: collapse;
    table-layout: auto;
    width: auto;
    display: inline;
}

.table__header-dreadlock {
    background-color: var(--dreadlock-main);
}

.table__header-wonderland {
    background-color: var(--wonderland-third);
}

.table__header-dreadlock,
.table__header-wonderland {
    color: white;
}

th, td {
    border: 1px solid grey;
    font-family: 'Abel';
    font-size: 1.2rem;
    text-align: left;
    padding: 5px 20px;
}

.opening-hours-header:not(:first-child) {
    margin-top: 50px;
}

.other-page {
    padding-bottom: 150px;
}

.button {
    text-decoration: none;
    display: inline-block;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    cursor: pointer !important;
}

.fit-content {
    width: fit-content !important;
}

.no-scroll {
    overflow: hidden !important;
}

.scroll {
    overflow-x: hidden;
    overflow-y: scroll;
}

.patterned::after {
    content: '';
    position: absolute;
    background-image: url('/media/images/backgrounds/background-pattern.webp');
    opacity: 0.03;
    height: 500%;
    width: 100%;
    z-index: -1;
    transform: var(--scroll);
}

#overlay {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    transition: var(--image-overlay-transition-in);
}

/* display */
.display-block {
    display: block;
}

.display-flex {
    display: flex;
}

.display-none {
    display: none;
}


/* HEADER */
/* navigation */
header {
    width: 100%;
    height: var(--nav-bar-height-desktop);
    position: fixed;
    z-index: 3;
}

.header-filled__green {
    background-color: var(--green);
    transition: background-color .2s linear;
}

.menu__container {
    display: grid;
    grid-template-columns: 100%;
    height: inherit;
}

.burger-menu__container {
    display: none;
}

.logo__container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo__container a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    height: calc(var(--nav-bar-height-desktop) - 10px);
    width: auto;
}

.nav-bar__container {
    width: 100%;
    position: absolute;
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    top: 0;
    height: var(--nav-bar-height-desktop);
    transform: none;
}

.nav-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: inherit;
}

.nav-bar__left {
    grid-column: 1;
    justify-content: right;
}

.nav-bar__right {
    grid-column: 3;
}

.nav-bar__element {
    height: auto;
    padding: 0 10px;
    line-height: 0;
}

.nav-bar__element-button {
    font-size: var(--standard-font-size);
    font-weight: normal;
    text-transform: uppercase;
    position: relative;
    line-height: 14px;
    transition: transform 0.15s ease-out, top 0.15s linear, text-shadow 0.15s linear, color 0.07s linear;
    transform-origin: center;
}

.nav-bar__element-button:hover {
    transform: var(--nav-bar-scale);
    top: -1px;
}

.logo__container {
    height: var(--nav-bar-height-desktop);
}

.logo__container a {
    z-index: 3;
}

.language-selector__container {
    position: relative;
    cursor: pointer;
}

.drop-down__arrow {
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(113deg) brightness(108%) contrast(108%);
    transition: filter .03s linear, transform .2s linear;
    cursor: pointer;
}

.language-selector__button {
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.button-dreadlock__header:hover {
    color: var(--dreadlock-main);
    text-shadow: var(--standard-shadow);
}

.button-wonderland__header:hover {
    color: var(--wonderland-third);
    text-shadow: var(--standard-shadow);
}

.language-button-clicked {
    top: -1px;
    color: var(--dreadlock-main) !important;
    text-shadow: var(--standard-shadow);
    transform: var(--nav-bar-scale);
}

.drop-down-arrow-clicked {
    filter: invert(49%) sepia(97%) saturate(344%) hue-rotate(68deg) brightness(91%) contrast(95%) drop-shadow(var(--standard-shadow));
    transform: rotate(-180deg);
}

.language-selector__button:hover .drop-down__arrow {
    filter: invert(49%) sepia(97%) saturate(344%) hue-rotate(68deg) brightness(91%) contrast(95%) drop-shadow(var(--standard-shadow));
    transition: filter .15s linear, color .07s linear, transform .2s linear;
}

.language-selector__options-container {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    margin-top: 5px;
    background-color: var(--green);
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    overflow: hidden;
    max-height: 0;
    transition: max-height .3s ease-out, box-shadow .3s ease-out;
    box-shadow: none;
}

.language-container-expanded {
    max-height: 200px !important;
    box-shadow: 0 4px 0px rgba(0, 0, 0, 0.2);
}

.language-selector__option {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    color: var(--main-text-color);
    cursor: pointer;
    transition: transform 0.15s ease-out, top 0.15s linear, text-shadow 0.15s linear, color 0.07s linear;
    line-height: 1.3rem;
}

.language-selector__option:hover {
    color: var(--dreadlock-main);
    transform: var(--nav-bar-scale);
    text-shadow: var(--standard-shadow);
    top: -1px;
}

.active-nav:hover {
    transform: scale(1);
    top: 0;
    color: white;
    cursor: default !important;
}

.active-nav::after {
    content: '';
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    bottom: -3px;
}

@media only screen and (max-width: 1100px) {
    header {
        height: var(--nav-bar-height-mobile);
    }

    .header-filled {
        background-color: var(--green);
        transition: background-color .01s linear .2s;
    }

    .header-empty {
        background-color: transparent;
        transition: background-color .2s linear;
    }

    .header-empty-quick {
        background-color: transparent;
        transition: none;
    }

    .menu__container {
        display: grid;
        grid-template-rows: var(--nav-bar-height-mobile) var(--banner-height) auto;
        grid-template-columns: 50% 50%;
        width: 100%;
        height: auto;
        pointer-events: none;
    }
    
    .logo__container {
        position: relative;
        grid-row: 1 / 2;
        grid-column: 1 / 2;
        display: flex;
        justify-content: flex-start;
        left: 10px;
        align-items: center;
        height: var(--nav-bar-height-mobile);
        pointer-events: all;
        z-index: 4;
    }

    .logo {
        height: calc(var(--nav-bar-height-mobile) - 10px);
    }

    .logo__container > a > svg {
        height: var(--nav-bar-height-mobile);
        width: auto;
    }
    
    .burger-menu__container {
        position: relative;
        grid-row: 1 / 2;
        grid-column: 2 / 3;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        right: 20px;
        height: var(--nav-bar-height-mobile);
        z-index: 6;
        pointer-events: all;
    }

    #burger-menu {
        visibility: hidden;
    }

    .burger-menu__label {
        position: relative;
        display: flex;
        width: 25px;
        height: 16px;
        cursor: pointer;
        align-items: center;
    }

    .burger-menu__line {
        position: absolute;
        width: 25px;
        height: 1px;
        background: white;
    }

    .burger-menu__line-out {
        transition: background-color .01s linear;
    }

    .burger-menu__line-in {
        transition: background-color .1s ease-in .2s;
    }

    .burger-menu__line::before,
    .burger-menu__line::after {
        content: '';
        position: absolute;
        visibility: visible;
        width: 25px;
        height: 1px;
        background: inherit;
        transition: transform 0.3s ease, top 0.3s ease, background-color 0.5s ease-in;
    }

    .burger-menu__line::before {
        top: -8px;
    }

    .burger-menu__line::after {
        top: 8px;
    }

    #burger-menu:checked + .burger-menu__label .burger-menu__line {
        background-color: transparent;
    }
    
    #burger-menu:checked + .burger-menu__label .burger-menu__line::before {
        top: 0;
        transform: rotate(45deg);
        background-color: var(--main-text-color);
        transition: transform 0.3s ease, top 0.3s ease;
    }
    
    #burger-menu:checked + .burger-menu__label .burger-menu__line::after {
        top: 0;
        transform: rotate(-45deg);
        background-color: var(--main-text-color);
        transition: transform 0.3s ease, top 0.3s ease;
    }
    
    .time-banner__container {
        grid-row: 2 / 3;
        grid-column: 1 / 3;
        width: 100%;
        height: var(--banner-height);
    }
    
    .nav-bar__container {
        position: relative;
        top: calc(var(--banner-height) * -1 - 1px);
        grid-row: 3 / 4;
        grid-column: 1 / 3; 
        width: 100%;
        height: 100%;
        will-change: transform;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: var(--green);
        border-bottom-right-radius: 25px;
        border-bottom-left-radius: 25px;
        overflow: hidden;
        padding-bottom: 6px;
        text-align: center;
        overflow-y: auto;
        max-height: calc(100vh - var(--nav-bar-height-mobile) - 6px);
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
        pointer-events: all;
        z-index: 3;
    }

    .transform-out {
        transform: translateY(-150%);
        transition: transform .25s linear;
    }

    .transform-out-quick {
        transform: translateY(-150%);
        transition: none;
    }

    .transform-in {
        transform: none;
        transition: transform .35s ease-out;
    }
    
    .nav-bar {
        width: 50%; 
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 100%;
    }

    .nav-bar__element {
        padding: 5px 0;
    }

    .language-selector__button {
        cursor: pointer;
    }

    .language-selector__container {
        cursor: context-menu;
    }

    .language-selector__options-container {
        position: relative;
        max-height: 0;
        padding: 0;
        margin-top: 0;
        width: 100vw;
        background-color: rgb(42, 110, 37);
        width: 100vw;
        max-height: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-shadow: none;
    }

    .language-selector__options-container:before {
        content: ' ';
        display: block;
        position: absolute;
        left: 0; top: 0;
        width: 100%; height: 100%;
        z-index: 1;
        margin-top: 0;
        box-shadow: inset 0 -4px 4px #00000050, inset 0 4px 4px #00000050;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
        pointer-events: none;
    }

    .language-selector__button {
        width: fit-content;
        text-align: center;
        margin: auto;
    }

    .language-selector__option {
        width: fit-content;
        padding: 3px 0;
        color: rgb(218, 218, 218);
    }
}

/* banner */
.time-banner__container {
    width: 100%;
    height: var(--banner-height);
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: height .6s ease-out;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.time-banner__text-wrapper {
    position: relative;
    left: 100%;
    height: 1.5rem;
    display: inline-block;
    width: 100%;
    animation: scroll-text 30s linear infinite;
    will-change: transform;
    transform: translateZ(0);
    cursor: context-menu;
}

@keyframes scroll-text {
    0% {
        left: 102%;
    }

    100% {
        left: -100%;
    }
}

@media only screen and (max-width: 1800px) {
    .time-banner__text-wrapper {
        animation-duration: 27s;
    }
}

@media only screen and (max-width: 1600px) {
    .time-banner__text-wrapper {
        animation-duration: 23s;
    }
}

@media only screen and (max-width: 1200px) {
    .time-banner__text-wrapper {
        animation-duration: 19s;
    }
}

@media only screen and (max-width: 1000px) {
    .time-banner__text-wrapper {
        animation-duration: 15s;
    }
}

@media only screen and (max-width: 800px) {
    .time-banner__text-wrapper {
        animation-duration: 12.5s;
    }
}

@media only screen and (max-width: 600px) {
    .time-banner__text-wrapper {
        animation-duration: 10s;
    }
}

@media only screen and (max-width: 400px) {
    .time-banner__text-wrapper {
        animation-duration: 7s;
    }
}



/* BODY */
/* button */

.button-massive__container {
    margin-top: 1rem;
}

.button-massive__container > .button-socials__body {
    margin-bottom: .5rem;
} 

.button-massive__body {
    padding: 0 20px;
    font-size: 1.2rem;
    line-height: 3rem;
    background: none;
    overflow: hidden;
    position: relative;
    z-index: 1;
    text-shadow: var(--standard-shadow);
    box-shadow: var(--standard-shadow);
    transition: text-shadow .1s ease-out .15s, box-shadow .2s linear, color .1s linear;
    border-radius: 3px;
}

.button-massive__body:hover {
    text-shadow: none;
    color: var(--main-text-color);
    transition: text-shadow .1s ease-out .05s, color .1s linear;
}

.button-massive__body:hover .button-massive__body-background {
    transform: translateY(-75%) translateX(-25%);
}

.button-massive__body:focus .button-massive__body-background {
    transform: translateY(50%) translateX(-25%);
}

.button-dreadlock__body {
    color: var(--dreadlock-main);
    border: 1px solid var(--dreadlock-main);
}

.button-wonderland__body {
    color: var(--wonderland-third);
    border: 1px solid var(--wonderland-third);
}

.button-socials__body {
    margin-right: 15px;
    padding-left: 38px;
}

.button-massive__body-background {
    width: 200%;
    height: 200%;
    position: absolute;
    left: 0;
    transform: translateY(50%) translateX(-25%);
    z-index: -1;
    border-radius: 100%;
    transition: transform 1s cubic-bezier(0.3, 1, 0.3, 1);
}

.button-dreadlock__body-background {
    background-color: var(--dreadlock-main);
}

.button-wonderland__body-background {
    background-color: var(--wonderland-third);
}

@media only screen and (max-width: 900px) {
    .button-massive__body {
        font-size: 1rem;
        padding: 0 15px;
        line-height: 2.8rem;
    }

    .button-socials__body {
        padding-left: 38px;
    }

    .socials-icon {
        height: 1rem;
    }
}

@media only screen and (max-width: 800px) {
    .button-massive__body {
        font-size: .9rem;
        padding: 0 15px;
        line-height: 2.5rem;
    }

    .button-socials__body {
        padding-left: 38px
    }

    .socials-icon {
        height: .9rem;
    }
}

@media only screen and (max-width: 600px) {
    .button-socials__container .button:first-child {
        margin-right: 100%;
    }
}

/* section */
/* home page */
.block-section {
    height: calc(100vh + 1px);
    width: 100%;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    scroll-snap-align: start;
}

@media only screen and (max-width: 768px) {
    .block-section {
        height: 100vh;
    }
}

.block-section__container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 15px;
    width: calc(100vw - 30px);
    position: relative;
    left: -100%;
    transition: left 600ms ease-out 0s;
    z-index: 2;
}

.block-section__container-visible {
    left: 0;
}

.block-section__container-hidden {
    left: -100%;
}

.block-section > img {
    width: 100%;
    filter: blur(4px);
}

.block-section__background {
    position: absolute;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.block-section__background-image img {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh; 
    object-fit: cover;
}

.block-section__background > img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.block-section__background-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.block-section__background-image-overlay::before {
    content: '';
    height: 100%;
    width: 100%;
    background-color: #2E2E2E;
    filter: opacity(0.5);
    z-index: 1;
    display: block;
    position: absolute;
    top: 0;
}

.address {
    padding-left: 10px;
}

.darkened-background::after {
    content: '';
    width: 100%;
    height: 100%;
}

/* flow page */

.flow-section {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.flow-section:first-child {
    height: 60vh;
    margin: 0;
}

.about-us__facts {
    height: auto;
    display: flex;
    justify-content: center;
    margin: auto;
    padding: 100px 0 120px 0;
}

.about-us__facts-container {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(3, 33.3%);
    justify-content: center;
    border-top: 1px solid var(--cream);
    border-bottom: 1px solid var(--cream);
}

.about-us__fact {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    transition: none;
}

.about-us__fact-svg {
    filter: invert(58%) sepia(18%) saturate(1747%) hue-rotate(69deg) brightness(92%) contrast(87%);
}

.flow-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
}

.flow-section__image-container {
    position: relative;
    width: 100%;
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-section__background-image, .flow-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.op-05 {
    filter: opacity(0.9);
}

.flow-section__image {
    border-radius: 10px;
}

.flow-section__title {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.flow-section__title h1 {
    width: 100%;
    text-align: center;
    position: relative;
    top: 50%;
}

.divided-two {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    height: 60vh;
    width: 90%;
    margin: 150px;
}

.flow-section__text {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.text-left {
    padding-right: 100px;
}

.text-right {
    padding-left: 100px;
}

.flow-section__text-header {
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
}

.flow-section__text p {
    text-transform: none;
}

.flow-section__full-width-container {
    max-width: 60%;
    padding: 150px 0;
}

.flow-section:last-child {
    opacity: 1;
}

.flow-section__full-width-container.news-section {
    max-width: 80%;
}

@media only screen and (max-width: 1300px) and (min-width: 1100px) {
    .divided-two {
        margin: 150px max(calc((100vw - 1000px) / 2), 50px);
    }
}

@media only screen and (max-width: 1100px) {
    .about-us__facts-container {
        display: flex;
        border: none;
        overflow: hidden;
        align-items: center;
        height: 80px;
        border-top: 1px solid var(--cream);
        border-bottom: 1px solid var(--cream);
    }

    .about-us__fact {
        width: 90%;
        position: absolute;
    }

    .divided-two {
        height: auto;
        margin: 150px 50px;
        grid-template-columns: 100%;
    }

    .flow-section__text {
        padding: 0; /* ? */
        margin-top: 30px;
    }

    .flow-section__image-container {
        aspect-ratio: 1;
    }

    .text-left {
        grid-row: 2;
    }

    .flow-section__image,
    .flow-section__image-container {
        max-height: 400px
    }

    .about-us__fact {
        transition: transform 0.2s cubic-bezier(0.7, 0, 0.3, 1);
    }

    .about-us__fact:nth-child(1) {
        transform: translateX(0);
    }
    
    .about-us__fact:nth-child(2) {
        transform: translateX(110%);
    }
    
    .about-us__fact:nth-child(3) {
        transform: translateX(-110%);
    }
}

@media only screen and (max-width: 950px) {
    .flow-section__full-width-container {
        max-width: 80%;
        padding: 150px 50px;
    }

    .flow-section__full-width-container.news-section {
        padding: 150px 0;
    }
}

@media only screen and (max-width: 710px) {
    .flow-section__full-width-container {
        max-width: 90%;
    }
}

@media only screen and (max-width: 450px) {
    .flow-section__full-width-container {
        max-width: 100%;
    }

    .flow-section__full-width-container.news-section {
        max-width: 90%;
    }
}

/* font */
.text {
    word-wrap: break-word;
    text-transform: uppercase;
}

.text-main {
    color: var(--main-text-color);
}

.text-black {
    color: black;
}

.text-dreadlock {
    color: var(--dreadlock-main);
}

.text-wonderland {
    color: var(--wonderland-third);
}

.text-green {
    color: var(--green);
}

.text-cream {
    color: var(--cream);
}

.font-main {
    font-family: var(--main-font);
}

.font-abel {
    font-family: "Abel", sans-serif;
}

.font-edo {
    font-family: 'Edo', sans-serif;
}

.text-bold {
    font-weight: bold;
}

.shadowed-text {
    text-shadow: var(--standard-shadow);
}

.shadowed-text-white {
    text-shadow: var(--standard-shadow-white);
}

.centered-text {
    text-align: center;
}

.text-bold {
    font-weight: bold;
}

.h1 {
    font-size: 6rem;
}

.page-header {
    font-size: 5rem;
}

.page-header__shadow-purple {
    text-shadow:  0 0 2px black, 2px 2px var(--wonderland-second), -2px 2px var(--wonderland-second), 
    2px -2px var(--wonderland-second), -2px -2px var(--wonderland-second), -1px 1px var(--wonderland-second), -2px 2px var(--wonderland-second),
    -3px 3px var(--wonderland-second), -4px 4px var(--wonderland-second), -5px 5px var(--wonderland-second),
    -6px 6px var(--wonderland-second), -7px 7px var(--wonderland-second), -8px 8px var(--wonderland-second);
  width: 100%;
}

.page-header__shadow-purple-small {
    text-shadow:  0 0 2px black, 2px 2px var(--wonderland-second), -2px 2px var(--wonderland-second), 
    2px -2px var(--wonderland-second), -2px -2px var(--wonderland-second), -1px 1px var(--wonderland-second), -2px 2px var(--wonderland-second),
    -3px 3px var(--wonderland-second);
  width: 100%;
}

.page-header__shadow-green {
    text-shadow:  0 0 2px black, 2px 2px var(--green), -2px 2px var(--green), 
    2px -2px var(--green), -2px -2px var(--green), -1px 1px var(--green), -2px 2px var(--green),
    -3px 3px var(--green), -4px 4px var(--green), -5px 5px var(--green),
    -6px 6px var(--green), -7px 7px var(--green), -8px 8px var(--green);
  width: 100%;
}

.page-header__shadow-green-small {
    text-shadow:  0 0 1px black, 1px 1px var(--green), -1px 1px var(--green), 
    1px -1px var(--green), -1px -1px var(--green), -1px 1px var(--green), -2px 2px var(--green),
    -3px 3px var(--green);
  width: 100%;
}

.page-header__shadow-cream {
    text-shadow:  0 0 2px black, 2px 2px var(--cream-shadow), -2px 2px var(--cream-shadow), 
    2px -2px var(--cream-shadow), -2px -2px var(--cream-shadow), -1px 1px var(--cream-shadow), -2px 2px var(--cream-shadow),
    -3px 3px var(--cream-shadow), -4px 4px var(--cream-shadow), -5px 5px var(--cream-shadow),
    -6px 6px var(--cream-shadow), -7px 7px var(--cream-shadow), -8px 8px var(--cream-shadow);
  width: 100%;
}

.page-header__shadow-cream-small {
    text-shadow:  0 0 1px black, 1px 1px var(--cream-shadow), -1px 1px var(--cream-shadow), 
    1px -1px var(--cream-shadow), -1px -1px var(--cream-shadow), -1px 1px var(--cream-shadow), -2px 2px var(--cream-shadow),
    -3px 3px var(--cream-shadow);
  width: 100%;
}

@media only screen and (max-width: 630px) {
    .page-header__shadow-green.flow-section__text-header {
        text-shadow:  0 0 1px black, 1px 1px var(--green), -1px 1px var(--green), 
        1px -1px var(--green), -1px -1px var(--green), -1px 1px var(--green), -2px 2px var(--green),
        -3px 3px var(--green);
        width: 100%;
    }

    .page-header__shadow-cream.flow-section__text-header {
        text-shadow:  0 0 1px black, 1px 1px var(--cream-shadow), -1px 1px var(--cream-shadow), 
        1px -1px var(--cream-shadow), -1px -1px var(--cream-shadow), -1px 1px var(--cream-shadow), -2px 2px var(--cream-shadow),
        -3px 3px var(--cream-shadow);
        width: 100%;
    }
}

.underline__cream,
.underline__green {
    display: inline-block;
}

.underline__green::after,
.underline__cream::after {
    content: '';
    width: 100%;
    height: 1px;
    display: block;
}

.underline__green::after {
    background-color: var(--green);
}

.underline__cream::after {
    background-color: var(--cream);
}

.h2 {
    font-size: 3.5rem;
}

.h2-flow {
    font-size: 3.5rem;
}

.subtitle {
    font-size: 1.5rem;
}

.article__subtitle {
    font-size: 2rem;
}

.h3 {
    font-size: 1.4rem;
}

.normal-text {
    font-size: 1.1rem;
}

.normal-text-flow {
    font-size: 1.2rem;
}

.text-fact {
    font-size: 1rem;
}

.header-text {
    font-size: 1.1rem;
}

@media only screen and (max-width: 630px) {
    .h2-flow {
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 500px) {
    .page-header {
        font-size: 3.5rem;
    }

    .h2-flow {
        font-size: 2rem;
    }
}

/* add-ons */
#burger-menu__overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(41, 41, 41, 0.438);
    z-index: 2;
    backdrop-filter: blur(4px);
    pointer-events: auto;
}

.click-movement__container {
    position: fixed;
    bottom: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
    user-select: none;
    outline: none;
    z-index: 2;
}

.click-movement__parent {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 25px;
    cursor: pointer;
    box-shadow: var(--standard-shadow);
    text-shadow: var(--standard-shadow);
    transition: box-shadow .15s linear; 
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px); 
}

.svg {
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(113deg) brightness(108%) contrast(108%) drop-shadow(var(--icon-shadow));
    transition: filter .2s linear;
}

.icon {
    color: var(--main-text-color);
}

.socials-icon__container {
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
    left: 15px;
}

.button span {
    cursor: pointer;
}

.socials-icon {
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(113deg) brightness(108%) contrast(108%) drop-shadow(var(--standard-shadow));
    height: 1.2rem;
    transition: filter .1s ease-out .15s;
}

.button-massive__body:hover .socials-icon {
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(113deg) brightness(108%) contrast(108%);
    transition: filter .1s ease-out;
}

/* clip */
.clip-container {
    position: absolute;
    transform-style: preserve-3d;
    width: 100%;
    left: 0%;
    right: 0%;
    overflow: hidden;
    top: auto;
    z-index: 2;
}

.clip {
    width: 3500px;
    height: 50px;
    transition: color .2s linear;
}

.clip__is-top {
    top: -2px
}

.clip__is-bottom {
    bottom: -2px;
}

.clip-green {
    color: var(--green);
}

.clip-cream {
    color: var(--cream);
}

/* background */
.background__green {
    background-color: var(--green);
}

.background__cream {
    background-color: var(--cream);
}

/* image */
.pos-bottom {
    object-position: bottom;
}

.masked {
    -webkit-mask: 
        url('/media/images/utils/wave-mask.svg') bottom / auto 50px repeat-x, linear-gradient(white, white) no-repeat top / 100% calc(100% - 50px);
    mask: 
        url('/media/images/utils/wave-mask.svg') bottom / auto 50px repeat-x, linear-gradient(white, white) no-repeat top / 100% calc(100% - 50px);
}

.gallery__image-container {
    display: grid;
}

.gallery__image-container.old {
    grid-template-areas: 
        "a a a c c d d"
        "a a a c c d d"
        "b b b c c d d"
        "b b b e e h h"
        "g f f e e h h"
        "g f f e e i i";
}

@media only screen and (max-width: 900px) {
    .gallery__image-container.old {
        grid-template-areas:
            "a a a c c"
            "a a a c c"
            "b b b c c"
            "b b b d d"
            "e e g d d"
            "e e g d d"
            "e e f f f"
            "h h i i i";
    }
}

@media only screen and (max-width: 600px) {
    .gallery__image-container.old {
        grid-template-areas: 
            "a a"
            "b b"
            "c d"
            "c d"
            "e g"
            "e g"
            "f f"
            "h h"
            "i i";
    }
}

.a {
    grid-area: a;
}

.b {
    grid-area: b;
}

.c {
    grid-area: c;
}

.d {
    grid-area: d;
}

.e {
    grid-area: e;
}

.f {
    grid-area: f;
}

.g {
    grid-area: g;
}

.h {
    grid-area: h;
}

.i {
    grid-area: i;
}

.gallery__image-wrapper {
    margin: 5px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    display: block;
}

.gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    transition: transform .2s ease-out;
}

.gallery__image-wrapper:hover .gallery__image {
    transform: scale(1.1);
}

.gallery__image-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #00000079;
    z-index: 1;
    opacity: 0;
    transition: opacity .2s ease-out;
}

.gallery__image-wrapper::after {
    content: '\ed1b';
    font-family: "icofont";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    height: 35px;
    font-size: 35px;
    opacity: 1;
    transform: translate(-50%, -50%);
    transition: opacity .2s ease-out;
    color: white;
    opacity: 0;
}

.gallery__image-wrapper:hover::before,
.gallery__image-wrapper:hover::after {
    opacity: 1;
}

#image__zoom-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
    opacity: 0;
    pointer-events: none;
    transition: var(--image-overlay-transition-in);
}

.image__zoom-wrapper {
    background-color: white;
    padding: 5px;
    border-radius: 10px;
}

.image__zoom-wrapper img {
    max-width: 80vw;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
}

.image__zoom-sluiten-wrapper {
    display: flex;
    justify-content: flex-end;
}

.image__zoom-sluiten {
    margin-right: 10px;
    cursor: pointer;
    transition: color .2s ease;
}

.image__zoom-sluiten:hover {
    color: var(--dreadlock-main)
}

.image__zoom-sluiten::after {
    content: "\eee4";
    font-family: "icofont";
}

.darkened-3::after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 30%);
    display: block;
    z-index: 1;
}

.darkened-4::after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.4) 30%);
    display: block;
    z-index: 1;
}

.darkened-5::after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 30%);
    display: block;
    z-index: 1;
}

/* slider */
.about-us__facts-pointer-container {
    position: absolute;
    bottom: 20%;
    display: none;
    width: 90%;
    justify-content: center;
    gap: 8px;
}

.about-us__facts-pointer {
    width: 10px;
    height: 10px;
    background: var(--cream);
    border-radius: 25px;
    border: 2px solid var(--cream);
}

.about-us__facts-pointer:hover {
    cursor: pointer;
}

.active-pointer {
    background: var(--green);
}

@media only screen and (max-width: 1100px) {
    .about-us__facts-pointer-container {
        display: flex;
    }
}

/* scrollbar */
::-webkit-scrollbar {
    width: 10px;
    position: absolute;
}

::-webkit-scrollbar-track {
    background: #1E1E1E;
}

::-webkit-scrollbar-thumb {
    background-color: #2E2E2E;
    border-radius: 10px;
    border: 2px solid #1E1E1E;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* footer */
.footer__logo-container .logo {
    height: calc(var(--nav-bar-height-desktop) * 2);
}

.footer__container {
    display: grid;
    grid-template-columns: 20% 20% 20% 40%;
    padding: 100px 60px 30px;
}

.footer__container .button-massive__container {
    margin-top: 0;
}

.footer__title {
    margin-bottom: 10px;
}

.footer__sitemap-links {
    display: flex;
    flex-direction: column;
    max-height: 150px;
    flex-wrap: wrap;
    gap: 0 30px;
    max-width: 220px;
}

.footer__socials-wrapper {
    display: flex;
    justify-content: center;
}

.footer__container .button-socials__body {
    padding-left: 23px;
}

.footer__container .socials-icon__container {
    left: 0;
}

.footer__copyright {
    padding-bottom: 20px;
    margin-left: 60px;
}

.footer__button-dreadlock:hover,
.footer__button-wonderland:hover {
    transform: scale(1.1);
    transition: transform .1s ease-out;
    text-decoration: underline;
}

@media only screen and (max-width: 960px) {
    .footer__container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px 0;
    }

    .footer__address-container {
        grid-row: 2 / 2;
        grid-column: 1 / 2;
    }

    .footer__sitemap-container {
        grid-row: 2 span;
        position: relative;
        padding-top: 83px;
    }

    .footer__sitemap-container::after {
        content: '';
        width: 1px;
        height: 100%;
        background-color: var(--cream);
        display: block;
        top: 0;
        left: -25%;
        position: absolute;
    }

    .footer__socials-wrapper {
        grid-row: 2 span;
        margin-top: 83px;
    }

    .one-page {
        padding: 100px 50px;
    }
}

@media only screen and (max-width: 740px) {
    .footer__container {
        grid-template-columns: 1fr 1fr;
    }

    .footer__socials-wrapper {
        grid-row: 2;
        grid-column: 2;
        margin: 0;
        justify-content: flex-start;
    }

    .footer__sitemap-container {
        grid-row: 1;
        grid-column: 2;
        padding: 0;
    }

    .footer__sitemap-container::after {
        height: 200%;
    }
}

@media only screen and (max-width: 580px) {
    .footer__sitemap-container::after {
        left: -20%;
    }
}

@media only screen and (max-width: 510px) {
    .footer__container {
        gap: 40px 20px;
    }

    .footer__sitemap-container::after {
        display: none;
    }

    .footer__sitemap-links {
        max-height: fit-content;
    }

    .one-page {
        padding: 50px 50px;
    }
}
/* socials widget */
.j-image {
    border-radius: 10px !important;
}

.referral,
.referral a,
.referral a:after {
    height: 0 !important;
    font-size: 0;
}

/* products */
.product__wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product__image {
    padding: 30px;
    flex-grow: 1;
}

.product__image img {
    width: 100%;
    max-width: 239px;
    max-height: 239px;
    object-fit: contain;
    aspect-ratio: 1;
    filter: drop-shadow(2px 4px 6px rgba(25, 25, 25, 0.7));
}

.product__content-title {
    font-size: 1.1rem;
}

/* news */
.news,
.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: calc(100vw * 0.8 * 0.025);
}

.news__post,
.product__container {
    border-radius: 25px;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.25);
    background-color: rgba(0, 0, 0, 0.1);
    height: 100%;
    overflow: hidden;
}

.news__post-image {
    width: 100%;
    overflow: hidden;
    flex: 0 0 35%;
}

.news__post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news__post-content,
.product__content {
    padding: 15px;
    flex: 1;
}

.news__post-datum {
    opacity: 0.5;
    cursor: pointer;
    -webkit-text-stroke: 1px var(--green);
}

.news__post-header {
    margin: 15px 0 10px;
    cursor: pointer;
}

.news__post-body-paragraph {
    cursor: pointer;
}

.news__post-button {
    cursor: pointer;
    margin-top: 10px;
    text-wrap: nowrap
}

.news__header {
    grid-column: 1 / -1;
}

.products__sub-header {
    font-size: 2rem;
}

.products__sub-header:not(:first-child) {
    margin-top: 30px;
}

.products__sub-header {
    margin-bottom: 15px;
    padding-left: 10px;
}

@media only screen and (max-width: 630px) {
    .products__sub-header {
        font-size: 1.5rem;
    }
}

.news__header:not(:first-child) {
    margin-top: 50px;
}

#milkshakes .products__header {
    margin-top: 0;
}

.list-inside {
    list-style-position: inside;
    text-indent: -1.4em;
    padding-left: 1.4em;
}

.article__subtitle {
    margin-bottom: .8rem;
}

.article__subtitle:not(:first-child) {
    margin-top: 2rem;
}

.article__paragraph {
    margin-top: .5rem;
}

.article__closing {
    margin-top: 2rem;
}

.article__closing p:not(:first-child) {
    margin-top: 1rem;
}

.article__link {
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.multi-price {
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 1100px) {
    .news,
    .products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 770px) {
    .news,
    .products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 510px) {
    .news,
    .products {
        grid-template-columns: 1fr;
    }

    .product__container {
        border-radius: 12px;
    }

    .article__link,
    .product__wrapper {
        flex-direction: row;
    }

    .product__image {
        flex-grow: 0;
        padding: 10px;
        display: flex;
        align-items: center;
    }

    .product__image img {
        max-height: 100px;
        max-width: 100px;
    }

    .product__content {
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        min-width: 60%;
        align-items: center;
    }

    .products-section {
        width: 100%;
    }

    .multi-price {
        width: 75%;
        justify-content: space-evenly;
    }
}

/* lazy loading */
.lazy-image {
    opacity: 0;
    transition: opacity 1s ease-out, transform .2s ease-out;
}

.loaded {
    opacity: 1;
}

.lazy-header,
.lazy-paragraph,
.lazy-card {
    opacity: 0;
    transition: transform .8s ease, opacity .8s ease;
    ;
}

.lazy-card {
    transform: translateY(35px);
}

.loaded-header,
.loaded-paragraph,
.loaded-card {
    transform: translateY(0);
    opacity: 1;
}

/* widget */
.widget-container {
    display: flex;
    justify-content: center;
}

.widget {
    width: var(--widget-width);
    clip-path: inset( -100% 0 -100% -100%);
}

/* full page */
.active .block-section__container {
    left: 0;
}

#fp-nav ul li .fp-tooltip.fp-right {
    font-family: Abel, Sans-serif;
}

.collapsable-content:not(:last-of-type) {
    border-bottom: 2px solid var(--green);
}

.collapsable-header {
    margin-top: .5rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.collapsable-header::after {
    content: "+";
    position: absolute;
    right: -30px;
    transition: transform .35s ease, text-shadow .35s ease;
    text-shadow:  0 0 1px black, 1px 1px var(--green), -1px 1px var(--green), 
    1px -1px var(--green), -1px -1px var(--green), -1px 1px var(--green), -2px 2px var(--green),
    -3px 3px var(--green);
    transform: translateY(-40%);
    top: 50%;
}

.collapsable-header.expanded::after {
    transform: translateY(-40%) rotate(-45deg);
    text-shadow:  0 0 1px black, 1px 1px var(--green), -1px 1px var(--green), 
    1px -1px var(--green), -1px -1px var(--green), -1px -1px var(--green), -2px -1px var(--green),
    -3px 0px var(--green), -4px 0px var(--green);
}

.collapsable-content {
    --max-height: 0;
    --transition-speed: 0.0003s;
    --height: 0;
    max-height: 0;
    overflow-y: hidden;
    transition: max-height calc(var(--height) * var(--transition-speed)) linear;
}

.collapsable-content.expanded {
    max-height: none;
}

.collapsable-content .products {
    padding: 10px;
}

.products:last-child {
    margin-bottom: 50px;
}