/*
Theme Name: topo2
Theme URI: http:topo2.test
Author: Hong Zhou
Description: Theme for topo2
Version: 0.0.1
*/

@font-face {
    font-family: 'EB Garamond';
    src: url('./assets/fonts/EBGaramond-Italic.woff2') format('woff2'),
        url('./assets/fonts/EBGaramond-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'EB Garamond';
    src: url('./assets/fonts/EBGaramond-Regular.woff2') format('woff2'),
        url('./assets/fonts/EBGaramond-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Univers LT Std';
    src: url('./assets/fonts/UniversLTStd.woff2') format('woff2'),
        url('./assets/fonts/UniversLTStd.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

/****************/
/***** ROOT *****/
/****************/
:root {
    /* color */
    --primary-black: #000;
    --primary-off-white: #f6f6f6;
    --primary-yellow: #fcfabb;
    --primary-pink: #f9d9fc;
    --primary-purple: #e6abfb;
    --primary-pink-transparent: #f9d9fcbd;

    /* fonts */
    --fm-sans-serif: 'Univers LT Std', sans-serif;
    --fm-serif: 'EB Garamond', serif;

    /* font size */
    --fs-h1: 0.75rem;
}

/******************************/
/***** GENERAL PROPERTIES *****/
/******************************/

.transparent {
    opacity: 0;
}

a {
    text-decoration: none;
    color: unset;
}

main,
header {
    max-width: 1300px;
    margin: auto;
}

/* main {
    position: relative;
    top: 0;
    left: 0;
    height: fit-content;
    overflow: hidden;
} */

/*****************************/
/***** Background Stains *****/
/*****************************/
/* Background gradient stains */
.stains__container {
    /* position: absolute; */
    position: fixed;
    top: 1vh;
    left: 0;
    width: 100%;
    /* overflow: hidden; */
    z-index: -1;
}

.stain1 {
    position: relative;
    left: -15%;

    opacity: 0.6;
    z-index: 1;
}

.stain1__img {
    width: 100%;
    height: auto;
}

.stain2 {
    position: relative;
    transform: scale(-1);
    right: -5%;

    opacity: 0.6;
    z-index: 1;
}

.stains2--middle {
    right: 10vw;
}

.stain2__img {
    width: 80%;
    height: auto;
}

.stains2__img--100 {
    width: 100%;
}

.stains2--position-middle {
    top: 150vh;
}

.stain3 {
    position: relative;
    transform: rotate(90deg);

    top: 18vh;
    opacity: 0.6;
    z-index: 1;
}

.stain3__img {
    width: 100%;
    height: auto;
}

.stain4 {
    position: relative;
    transform: rotate(90deg);

    top: -23vh;
    opacity: 0.6;
    z-index: 1;
}

.stain4__img {
    width: 100%;
    height: auto;
}

.stains__container--mobile {
    display: none;
}

.absolute {
    position: fixed;
    max-width: 100dvw;
    overflow: hidden;
    top: 0 !important;
    bottom: 0;
    inset: 0;
    justify-content: center;
    display: inline-flex;
    flex-direction: row;
    pointer-events: none;
    z-index: -1;
}

.absolute--fixed {
    position: fixed;
}

.justify-center {
    justify-content: center;
}

.bg-shape1 {
    width: 40vw;
    height: 40vw;
    min-width: 400px;
    min-height: 400px;
    border-radius: 9999px;
    position: relative;
    animation: one 10s infinite;
}

.scroll-container:last-of-type .bg-shape1 {
    height: 70vw;
}

.bg-shape2 {
    width: 30vw;
    height: 30vw;
    min-width: 300px;
    min-height: 300px;
    border-radius: 9999px;
    position: relative;
    animation: one 10s infinite;
}

@keyframes one {
    0% {
        transform: translate(0px, 0px);
    }
    25% {
        transform: translate(-20px, 140px);
    }
    50% {
        transform: translate(40px, 300px);
    }
    75% {
        transform: translate(100px, 200px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

@keyframes two {
    0% {
        transform: translate(0px, 0px);
    }
    25% {
        transform: translate(100px, 20px);
    }
    50% {
        transform: translate(200px, 100px);
    }
    75% {
        transform: translate(100px, 200px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

.opacity-50 {
    opacity: 0.3;
}

.bg-blur {
    filter: blur(120px);
}

.bg-primary {
    background-color: rgb(30, 0, 255);
}

.bg-teal {
    background-color: rgb(255, 72, 173);
}

.bg-purple {
    background-color: rgb(140, 0, 215);
}

/* Eco system overview magnetic objects*/
.box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

    /* width: fit-content;
    height: fit-content; */
    padding: 0.5rem;
    /* background: #ff6464; */
    font-size: 1.5rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.5s;
}

/****************/
/**** FONTS *****/
/****************/

.h1__subtitle {
    font-family: var(--fm-sans-serif);
    text-transform: uppercase;
    font-size: var(--fs-h1);
    font-weight: 400 !important;
}

.h1__subtitle--transparent {
    color: #d1d1d1;
}

.h2__title {
    font-size: 2rem;
    font-weight: 400;
    max-width: 85%;
    font-family: var(--fm-sans-serif);
    text-transform: lowercase;
    line-height: 99%;
    letter-spacing: -0.1rem;
}

.h2__title--long {
    max-width: 80%;
}

.h2__title--full-width {
    max-width: 100%;
}

.h3__title {
    font-size: 10px;
    font-family: var(--fm-sans-serif);
    text-transform: uppercase;
    font-weight: 400;
    line-height: 12px;
}

.p__icon-text {
    margin-top: 0.4rem;
    font-family: var(--fm-serif);
    font-style: italic;
    text-transform: uppercase;
    font-size: 0.875rem;
}
.p__text {
    font-family: var(--fm-sans-serif);
    font-size: 0.813rem;
}

.p__text-serif {
    font-family: var(--fm-serif);
    line-height: 150%;
}

.p__text--uppercase {
    text-transform: uppercase;
    font-size: 0.825rem;
}

.p__text--underlined {
    font-size: 1.25rem;
    text-decoration: underline;
}

.p__text--new-line {
    font-size: 1.25rem;
    white-space: pre-line;
    text-transform: capitalize;
}

.p__release-date {
    max-width: 40%;
    font-family: var(--fm-sans-serif);
}

.p__snack {
    font-family: var(--fm-sans-serif) !important;
}

.p__snack--big {
    font-size: 1.25rem;
    font-family: var(--fm-sans-serif);
}
/****************/
/** NAVIGATION **/
/****************/
.nav {
    position: relative;
    display: grid;
    grid: auto-flow/ 1fr 1fr;
    padding: 1.5rem;
    gap: 0.5rem;

    z-index: 120;
}

.nav__logo-wrapper {
    display: flex;
    width: fit-content;
    height: 9rem;
}

.nav__logo {
    width: auto;
    height: 100%;
    display: block;
    object-fit: contain;
}

.nav__container {
    display: grid;
    grid: auto-flow/ 1fr 1fr 1fr;
    gap: 1rem;
}

.nav__row li {
    list-style-type: none;
}

.nav__row li a {
    text-decoration: none;
    font-family: var(--fm-sans-serif);
    color: var(--primary-black);
    text-transform: uppercase;
    font-size: 0.75rem;
}

/************************/
/**** scroll to top *****/
/************************/
.scroll-top__button {
    display: none;
}
/****************/
/*** LAY-OUTS ***/
/****************/

/* Three column lay-out */
.lay-out-container__three-column {
    padding: 0.875rem;
    width: 100%;
    z-index: auto;
}

.lay-out-container__three-column--front-page {
    display: grid;
    grid-template-columns: 3fr 2fr 1fr;
    gap: 1rem;
    padding: 0.875rem;
}

.lay-out-container__three-column--release {
    display: grid;
    grid-template-columns: 3fr 2fr 1fr;
    gap: 1rem;
    padding: 0.875rem;
}

.article__container__catalogue-page {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-wrap: wrap;
    gap: 1rem;
}

.article__container__news-page {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-wrap: wrap;
    gap: 1rem;
}

.lay-out-container__three-column--even {
    grid-template-columns: 1fr 1fr 1fr;
}

.lay-out-container_two-column {
    position: relative;
    display: grid;
    grid-template-columns: 4fr 2fr;
    gap: 1rem;
    padding: 0.875rem;

    z-index: auto;
}

.lay-out-container_two-column--even {
    grid-template-columns: 1fr;
}

.lay-out__container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    /* max-width: 100vw;
    overflow-x: hidden; */
}

.information-devider {
    display: flex;
    flex-direction: column;
    height: 1rem;
}

.information-devider__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.information-devider__container--two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.information-devider__text-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
}

.information-devider__line {
    width: 100%;
    height: 2px;
    background-color: var(--primary-black);
}

/****************/
/***** NEWS *****/
/****************/
.article__news {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;

    margin-bottom: 3rem;
}

.article__news--news-page {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;

    margin-bottom: 3rem;
}

.article__related {
    display: flex;
    flex-direction: column;

    margin-bottom: 3rem;
}

.article__news--related {
    margin-bottom: 0;
}

.article__news--chapter {
    gap: 0;
    text-transform: lowercase;
}
.icon__wrapper {
    height: 50px;
    width: fit-content;
    mix-blend-mode: multiply;
}

.icon {
    width: auto;
    height: 100%;
}

.images__detail-article-wrapper {
    display: flex;
    flex-direction: row;
    max-width: 70%;
    max-height: 10vh;
    gap: 1rem;

    margin: 2rem 0;
}

.image__wrapper {
    width: 100%;
    height: fit-content;
    filter: brightness(100%);
}

.image__wrapper:hover {
    filter: brightness(110%);
}

.image__wrapper--about {
    width: 50%;
}

.image__wrapper--about-detail-page {
    position: relative;
    max-width: 5rem;
    left: 0%;
    width: 25%;
}

.image__wrapper img {
    height: auto;
    width: 100%;
    object-fit: contain;
}

.image__wrapper--fit-content {
    height: 100%;
    width: fit-content;
}

.image__wrapper--fit-content img {
    height: 100%;
}

.container__square-block-text {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.container__square-block-text a,
.container__square-block-text a p {
    text-decoration: none;
    color: var(--primary-black);
    font-size: 0.625rem !important;
    margin-top: 1.1px;
}

.black__block {
    width: 7px;
    height: 7px;
    border-radius: 1px;
    background-color: var(--primary-black);
    margin-right: 3px;
    margin-top: -1.1px;
}
.news-article__content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
}

.news-article__content img {
    width: 100%;
    height: 100%;
}

.news-article__content p {
    font-family: var(--fm-serif);
    line-height: 150%;
    font-size: 1rem;
}

.news-article__content p strong {
    font-size: 1.25rem;
    font-family: var(--fm-sans-serif);
    font-weight: normal;
}

/*********************/
/***** CATALOGUE *****/
/*********************/
.article__catalogue {
    display: flex;
    flex-direction: column;
    margin-bottom: 3.75rem;
    gap: 0.6rem;
}

.article__catalogue--catalogue-page {
    display: flex;
    flex-direction: column;
    margin-bottom: 3.75rem;
    gap: 0.3rem;
}

/*****************/
/***** ABOUT *****/
/*****************/
.article__about {
    margin-bottom: 0.5rem;
}

.article__about p {
    font-family: var(--fm-sans-serif);
    font-size: 0.625rem;
}

.article__about--mobile {
    display: none;
    font-family: var(--fm-sans-serif);
}

/* About page WYSIWYG Styling */
.purple-highlight {
    background-color: var(--primary-purple);
    padding: 0.2rem;
    margin: 0.3rem 0;
    font-family: var(--fm-sans-serif);
}
.purple-content {
    background-color: var(--primary-purple);
    padding: 0.2rem;
    margin: 0.3rem 0;
    font-family: var(--fm-sans-serif);
}

.visible-content {
    display: none;
}

/*******************/
/***** RELEASE *****/
/*******************/

/* Article release */
.article__release {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.button__available-here {
    padding: 0.4rem 0.4rem 0.2rem;
    border-radius: 5px;
    background-color: var(--primary-black);
    text-transform: uppercase;
    text-decoration: none;
    color: var(--primary-yellow);
    width: fit-content;
    font-family: var(--fm-sans-serif);
}

.music-player {
    mix-blend-mode: multiply;
}

.article__release figure {
    margin: 2rem 0;
}

.article__release figure figcaption {
    font-family: var(--fm-sans-serif);
    text-transform: lowercase;
}

/* Article Content image/music player */
.article__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.transparent__background {
    width: 100%;
    height: fit-content;
    background: #f1f1f1;

    mix-blend-mode: multiply;
}

.image__wrapper--transparent-background {
    padding: 3.25rem;
}

img.mix-blend-mode__normal {
    mix-blend-mode: normal;
}

/* Article Credits */
.article__credits {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.article__credits p {
    font-family: var(--fm-sans-serif);
    font-size: 0.75rem;
}

/* Article Refs */
.article__refs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article__refs figure figcaption {
    font-family: var(--fm-sans-serif);
}

/* Article about detail */
.purple__marking {
    background-color: var(--primary-purple);
    padding: 0.2rem;
    margin: 0.3rem 0;
    font-family: var(--fm-sans-serif);
}

.article__about-detail p {
    font-family: var(--fm-sans-serif);
}

.article__about-detail p strong {
    font-size: 1.25rem;
    font-family: var(--fm-sans-serif);
}

.article__news.article__news--related.article__news--chapter a {
    text-transform: lowercase;
}

.article__news.article__news--related.article__news--chapter a:hover,
.article__news.article__news--related.article__news--chapter a:active,
.article__news.article__news--related.article__news--chapter a:focus {
    text-decoration: underline !important;
}
.id-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

article.article__about-detail:not(:first-of-type) .id-section {
    padding-top: 2rem;
}
/**********************/
/***** ECO SYSTEM *****/
/**********************/
.main__ecosystem-overview {
    max-width: unset;
    position: absolute;
    /* height: 100%; */
    width: 100%;
    /* left: calc(1rem + 2vw); */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ecosystem-container__page {
    max-width: 1300px;
    position: relative;
    height: 100%;
    width: 100%;
}

.ecosystem__width-container {
    width: 100%;
    top: 25vh;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.overlay-ecosystem {
    height: 80dvh;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    left: 0;
    right: 0;
    pointer-events: none;
    opacity: 0;
    z-index: 10;
    transition: 0.3s ease-in;
    transform: translateY(50%);
}

.overlay-ecosystem.show {
    opacity: 1;
    z-index: 10;
    transition: 0.3s ease-in;
    transform: translateY(0%);
}

.ecosystem-single__content {
    width: 100%;
    position: relative;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
    background-color: var(--primary-pink-transparent);
    height: fit-content;
    pointer-events: all;
    min-height: 150%;
}

.ecosystem_text {
    display: inline-grid;
    width: 100%;

    grid-template-columns: 1fr;
}

details[open] > summary {
    background-color: var(--primary-purple);
}

summary.purple__marking {
    list-style-type: none;
    font-size: 0.813rem;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    background-color: unset;
    cursor: pointer;
    white-space: normal;
}

.ecosystem_text span.purple__marking {
    font-size: 0.813rem;
}

.purple__marking p a {
    text-decoration: underline;
}

details summary::-webkit-details-marker {
    display: none;
}

.sort-options div {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.sort-option.active {
    text-decoration: underline !important;
}
.ecosystem-sorter__content .ecosystem__sorter-title,
.sort-options label,
.sort-option {
    text-transform: uppercase;
    font-family: var(--fm-sans-serif);
    font-size: 0.75rem;
}

.sort-options {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.island-1 {
    position: absolute;
    top: 0vh;
    left: 2vw;
    display: inline-block;
    max-width: 25%; /* Adjust the max-width to control the image size */
}

.island-2 {
    position: absolute;
    top: 19vh;
    left: 16vw;
    display: inline-block;
    max-width: 40%; /* Adjust the max-width to control the image size */
    width: 25%;
}

.island-3 {
    position: absolute;
    top: 0vh;
    left: 40%;
    display: inline-block;
    max-width: 60%; /* Adjust the max-width to control the image size */
    width: 20%;
    /* mix-blend-mode: hard-light; */
}

.island-4 {
    position: absolute;
    top: 0vh;
    right: 10%;
    display: inline-block;
    max-width: 60%; /* Adjust the max-width to control the image size */
    width: 20%;
    /* mix-blend-mode: hard-light; */
}

.island-5 {
    position: absolute;
    top: 17vh;
    right: 5%;
    display: inline-block;
    max-width: 60%; /* Adjust the max-width to control the image size */
    width: 35%;
    /* mix-blend-mode: color-burn; */
}

.island-6 {
    position: absolute;
    top: 36vh;
    left: 11vw;
    display: inline-block;
    max-width: 25%; /* Adjust the max-width to control the image size */
    width: 10%;
}

.island-7 {
    position: absolute;
    top: 50vh;
    left: 0vw;
    display: inline-block;
    max-width: 25%; /* Adjust the max-width to control the image size */
    width: 22%;
    mix-blend-mode: color-burn;
}

.island-8 {
    position: absolute;
    top: 43vh;
    left: 20vw;
    display: inline-block;
    max-width: 30%; /* Adjust the max-width to control the image size */
    width: 38%;
}

.island__image-wrapper {
    position: relative;
}

.island__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.overlay p {
    color: var(--primary-black);

    text-align: center;
    text-transform: uppercase;

    font-family: var(--fm-serif);
    font-style: italic;
    text-decoration: none;
    font-size: 0.875rem;

    white-space: pre-wrap;

    transition: background-color 0.3s;
}

.island-information.show {
    opacity: 1;
    z-index: 10;
    transition: 0.1s ease-in-out;
    transform: translateY(100%);
}

.island-information {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    z-index: -5;
    background-color: var(--primary-pink-transparent);
    width: 100vw;
    height: fit-content;
    padding: 13rem 2rem 4rem;

    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: 0.1s ease-in;
    transform: translateY(0%);
}

.p__text--island-information {
    font-size: 0.813rem;
    line-height: normal;
    letter-spacing: -0.325px;
}

.p__text--island-information p {
    width: 50%;
}

.island-sort {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.cross {
    position: absolute;
    right: 2%;
    background: none;
    cursor: pointer;
    border: none;
}

.island-information__main-container {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-width: 20vw;
    max-height: 60vh;
    gap: 0rem 1rem;
}

.island-information__main-container li {
    list-style-type: none;
}

.island-information__main-container li ul li {
    font-family: var(--fm-sans-serif);
}

.information-line {
    background-color: var(--primary-black);
    height: 1px;
    width: 150px;
    margin: 0.3rem 0;
}

/******************/
/***** FOOTER *****/
/******************/
.footer {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;

    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.footer__empty-div {
    position: relative;
    width: 100%;
    height: 200px;
}

.footer__image {
    position: absolute;
    bottom: 0;
    /* transform: translateY(-100%); */
    max-width: 100%;
    backface-visibility: hidden;
    z-index: -1010;
    object-fit: cover !important;
}

/* Special declarations */
.information-devider--mobile {
    display: none;
}
.nav__mountain-edge {
    display: none;
}

.image__wrapper--mobile {
    display: none;
}

.text__mobile-only {
    display: none;
}

/** 404-page **/
.page-404 {
    height: 50dvh;
}

/****** iFrames *******/
iframe {
    width: 100%;
}

@media (max-width: 53.813rem) {
    .nav__logo {
        max-width: calc(5rem + 30vw);
        /* height: auto; */
    }

    .overlay-ecosystem {
        top: -20dvh;
        position: absolute;
    }
}

/************************************************************/
/***** If the screen is smaller than 28.125rem base on 16px *****/
/************************************************************/
@media (max-width: 34.688rem) {
    /*******************/
    /***** General *****/
    /*******************/

    main {
        margin-top: 20vh;
    }

    body.hidden {
        overflow: hidden;
    }

    /******** Scroll Top ************/
    .scroll-top__button {
        position: fixed;
        display: unset;
        right: 2vh;
        bottom: 2vw;
        z-index: 120;

        padding: 0.5rem;
        border-radius: 0.2rem;
        background-color: var(--primary-off-white);
    }
    .scroll-top__button a {
        position: relative;
        font-family: var(--fm-sans-serif);
    }
    /*******************/
    /***** LAY-OUT *****/
    /*******************/
    .lay-out-container__three-column {
        grid-template-columns: 1fr;
    }

    .lay-out-container__three-column--front-page {
        grid-template-columns: 1fr;
    }

    .lay-out-container__three-column--release {
        grid-template-columns: 1fr;
    }

    .lay-out-container_two-column {
        display: flex;
        flex-direction: column-reverse;
    }

    .lay-out-container__two-column--news {
        flex-direction: column;
    }

    /*** FONT ***/
    .h2__title {
        max-width: 100%;
    }
    .text__mobile-only {
        display: block;
    }

    /**********************/
    /***** NAVIGATION *****/
    /**********************/
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        grid-template-columns: 8fr 1fr;
        padding: 0.5rem;
        width: 100%;
    }
    .nav__logo {
        z-index: 99;
        max-width: unset;
        /* width: 100%; */
        max-width: 100%;
    }

    .information-devider--mobile {
        display: block;
        margin-bottom: 1rem;
    }
    .nav__container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        grid: auto-flow/ 1fr;
        justify-content: center;
        align-items: center;
        background: url('assets/img/img_stain1.png'),
            lightgray 50% / cover no-repeat;
        mix-blend-mode: multiply;
        background-size: 500%;
        background-position: 30% 0%;
        height: 100vh;
        /* width: 100vw; */
        text-align: left;
        place-content: center;
        gap: 2rem;
        padding: 20dvh 1rem 8rem;

        transition: 0.5s ease-in-out;
        opacity: 0;
        transform: translateX(100%);
    }

    .nav__container.show {
        transition: 0.5s ease-in-out;
        opacity: 1;
        transform: translateX(0%);
        background-position: 75% 20%;
    }

    .nav__container li a {
        font-size: 1.8rem;
    }

    .nav__container li a {
        text-transform: lowercase;
    }

    .hamburger-menu {
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 30px;
        width: 30px;
        cursor: pointer;
        z-index: 99;
    }

    .line {
        height: 7px;
        width: 100%;
        background-color: var(--primary-black);
        margin: 2.5px 0;
        transition: transform 0.2s ease-in-out;
    }

    .line:first-child {
        transform-origin: top left;
    }

    .line:nth-last-of-type(2) {
        opacity: 1;
        transition: ease-in 0.3s;
    }

    .line:last-child {
        transform-origin: bottom left;
    }

    .hamburger-menu.open .line:first-child {
        transform: rotate(45deg);
        background-color: var(--primary-black);
    }

    .hamburger-menu.open .line:nth-of-type(2) {
        opacity: 0;
        width: 0px;
        transition: ease-out 0.2s;
        background-color: var(--primary-black);
    }

    .hamburger-menu.open .line:last-child {
        transform: rotate(-45deg);
        background-color: var(--primary-black);
    }

    /* homepage */
    .article__news:not(:first-of-type) {
        display: none;
    }

    .article__news--related {
        display: block;
    }

    .article__catalogue:not(:first-of-type) {
        display: none;
    }

    .information-devider__container {
        gap: unset;
    }

    .article__container__catalogue-page {
        grid-template-columns: 1fr;
    }

    .information-devider__container--two {
        gap: unset;
    }
    .article__container__news-page {
        grid-template-columns: 1fr;
    }

    .article__about {
        display: none;
    }

    .article__about--mobile {
        display: block;
    }

    .nav__row {
        z-index: 2;
    }

    .information-devider--desktop {
        display: none;
    }

    /******************/
    /***** STAINS *****/
    /******************/

    .stain1__homepage--mobile {
        width: 300%;
        left: -130%;
    }

    .stain2__homepage--mobile {
        display: none;
    }

    .stains2--position-middle {
        top: 0;
    }

    .stain2__release--mobile {
        width: 850%;
        left: -530%;
    }

    .stain2__catalogue--mobile {
        /* position: absolute; */
        position: fixed;
        width: 800%;
        left: -400%;
    }

    .stains__container--catalogue-mobile {
        height: 500%;
    }

    .stains__container--detail-page-mobile {
        height: 200%;
    }

    .stain2__detail-page--mobile {
        top: 20%;
        width: 250%;
        left: -100%;
    }

    .stain3__news--mobile {
        /* position: absolute; */

        position: fixed;
        top: 0;
        width: 300%;
        left: -130%;
        transform: rotate(0deg);
    }

    .stain4__ecosystem--mobile {
        width: 300%;
        left: -150%;
        transform: rotate(200deg);
    }

    /* Mountain edge */
    .nav__mountain-edge {
        display: block;
        position: fixed;
        bottom: 0;
        max-width: 100vw;
        max-height: 50vh;
        width: fit-content;
        height: auto;
        mix-blend-mode: multiply;
    }
    .nav__mountain-edge-image {
        pointer-events: none;
        width: 250vw;
        height: 100%;
        object-fit: contain;
    }

    /* Images */
    .image__wrapper--mobile {
        display: block;
    }

    .image__wrapper--desktop {
        display: none;
    }

    .text__desktop-only {
        display: none;
    }

    /*************************/
    /***** ISLANDS ***********/
    /*************************/
    .p__text--island-information {
        max-width: 75vw;
    }
    .overlay a {
        font-size: 1.3rem;
    }
    .island-1 {
        position: absolute;
        top: 0vh;
        left: 5vw;
        display: inline-block;
        max-width: 30%; /* Adjust the max-width to control the image size */
    }

    .island-2 {
        position: absolute;
        top: 23vh;
        left: 6vw;
        display: inline-block;
        max-width: 40%; /* Adjust the max-width to control the image size */
        width: 45%;
    }

    .island-3 {
        position: absolute;
        top: 0vh;
        right: 2vw;
        display: inline-block;
        max-width: 50%; /* Adjust the max-width to control the image size */
        width: 45%;
        mix-blend-mode: hard-light;
    }

    .island-4 {
        position: absolute;
        top: 19vh;
        right: 5vw;
        display: inline-block;
        max-width: 35%; /* Adjust the max-width to control the image size */
        width: 45%;
        mix-blend-mode: hard-light;
    }

    .island-5 {
        position: absolute;
        top: 35vh;
        left: 40vw;
        display: inline-block;
        max-width: 50%; /* Adjust the max-width to control the image size */
        width: 45%;
        mix-blend-mode: color-burn;
    }

    .island-6 {
        position: absolute;
        top: 43vh;
        left: 5vw;
        display: inline-block;
        max-width: 25%; /* Adjust the max-width to control the image size */
        width: 55%;
    }

    .island-7 {
        position: absolute;
        top: 56vh;
        bottom: initial;
        left: 2vw;
        display: inline-block;
        max-width: 45%; /* Adjust the max-width to control the image size */
        width: 55%;
        mix-blend-mode: color-burn;
    }

    .island-8 {
        position: absolute;
        top: 60vh;
        bottom: initial;
        left: 55vw;
        display: inline-block;
        max-width: 40%; /* Adjust the max-width to control the image size */
        width: 90%;
    }

    .island-information__main-container {
        display: grid;
        grid-template-columns: 1fr;

        max-width: unset;
    }
}

@media (min-width: 1600px) {
    .footer__empty-div {
        height: 300px;
    }
}
