﻿:root {
    --primary-color: #d6c6ae99;
    --secondary-color: #161616;
    --header-font: Argesta;
    --content-font: Manrope;
    --transition: 0.2s ease-in-out all;
    --default-border: 1px solid rgba(255,255,255,0.3);
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    font-weight: initial;
    padding: 0;
    margin: 0;
}

html, body {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: Manrope, sans-serif;
    font-optical-sizing: auto;
    min-height: 100dvh;
    line-height: 1.5;
    background: var(--primary-color);
}

/* layout */

#navigation {
    position: fixed;
    z-index: 3;
    top: 0;
    bottom: 0;
    right: 0;
    width: 25vw;
    display: flex;
    align-items: center;
    padding-left: 4vw;
    opacity: 0;
    transform: translateY(-8px);
    filter: blur(10px);
    transition: opacity 1.4s ease, transform 1.4s cubic-bezier(.19, .8, .25, 1), filter 1.6s ease;
}

    #navigation.is-visible {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

.hero {
    position: relative;
    display: block;
    width: 100vw;
    overflow: hidden;
}

.heroImage {
    position: fixed;
    display: block;
    background-position: center;
    background-size: cover;
    width: 100vw;
    height: 100dvh;
    opacity: 0;
    transform: scale(1.08);
    filter: blur(20px);
    transition: opacity 2.4s ease, transform 8s cubic-bezier(.19,.8,.25,1), filter 3.2s ease;
    animation: heroFloat 18s ease-in-out infinite alternate;
}

    .heroImage::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 240px;
        pointer-events: none;
        background: linear-gradient( to bottom, rgba(243,238,230,0) 0%, rgba(243,238,230,0.12) 20%, rgba(243,238,230,0.45) 55%, #f3eee6 100% );
    }

    .heroImage.is-visible {
        opacity: 1;
        transform: scale(1.00);
        filter: blur(0);
    }


#reservation {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 0 16px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255,255,255,0.72);
    background: transparent;
    border: none;
    overflow: hidden;
    transition: color 0.45s ease, opacity 0.45s ease, letter-spacing 0.45s ease;
    opacity: 0.88;
    cursor: pointer;
    margin-top: 5vh;
}

    #reservation::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient( 90deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.18) 20%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0.18) 80%, rgba(255,255,255,0.02) 100% );
        opacity: 0.45;
        transform: scaleX(0.92);
        transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
    }

    #reservation::before {
        content: "";
        position: absolute;
        bottom: -1px;
        left: -35%;
        width: 30%;
        height: 3px;
        background: radial-gradient( ellipse at center, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.35) 45%, rgba(255,255,255,0) 100% );
        filter: blur(4px);
        opacity: 0;
        transition: left 1.2s cubic-bezier(.19,.8,.25,1), opacity 0.6s ease;
    }

    #reservation:hover {
        color: rgba(255,255,255,0.96);
        letter-spacing: 0.34em;
        opacity: 1;
    }

        #reservation:hover::after {
            opacity: 0.75;
            transform: scaleX(1);
            filter: blur(0.2px);
        }

        #reservation:hover::before {
            left: 105%;
            opacity: 1;
        }

.heroContent {
    position: absolute;
    bottom: 15vh;
    left: 20vw;
    right: 30vw;
}

#content {
    position: relative;
    z-index: 2;
    display: block;
    padding: 10vh 0;
    margin-top: 100dvh;
}

    #content p {
        color: #ffffffdd;
        font-size: 1.05rem;
        letter-spacing: 2px;
    }


.sectionImage {
    width: 90vw;
    height: 62vh;
    margin-left: -20vw;
    margin-right: -50vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 14%, black 86%, transparent 100%), linear-gradient(180deg, transparent 0%, black 18%, black 82%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 14%, black 86%, transparent 100%), linear-gradient(180deg, transparent 0%, black 18%, black 82%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
}

    .sectionImage::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.52) 85%), rgba(8, 14, 18, 0.16);
        pointer-events: none;
    }

    .sectionImage.detailed {
        /* kitchen / chef / craftsmanship */
        opacity: 0.88;
        filter: brightness(0.85) contrast(1.38) saturate(0.82);
        transform: scale(1.01);
    }

    .sectionImage.atmosphere {
        /* dining room / silence / memory */
        opacity: 0.68;
        filter: brightness(0.58) contrast(1.02) saturate(0.62) blur(0.5px);
    }

    .sectionImage.food {
        /* emotional fragments of dishes */
        opacity: 0.74;
        filter: brightness(0.66) contrast(1.24) saturate(0.78) blur(0.2px);
    }

    .sectionImage.people {
        /* guests / silhouettes / presence */
        opacity: 0.58;
        filter: brightness(0.54) contrast(0.96) saturate(0.52) blur(1.2px);
    }

/* text */

.heroContent h1 {
    font-family: var(--header-font);
    color: #ffffffdd;
    max-width: 40vw;
    font-size: 4rem;
    line-height: 1;
}

.heroContent h2 {
    color: #ffffffaa;
    max-width: 30vw;
    font-size: 1.15rem;
    letter-spacing: 2px;
}

.word-fade .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(14px);
    filter: blur(10px);
    transition: opacity var(--duration) ease, transform var(--duration) ease, filter var(--duration) ease;
    transition-delay: var(--delay);
}

.word-fade.is-visible .word {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reservation-title {
    text-transform: uppercase;
}

/* links */

nav {
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
}

    nav a {
        letter-spacing: 1px;
        padding: 8px 0;
        transition: var(--transition);
    }


        nav a:hover {
            letter-spacing: 5px;
            color: #ffffff;
        }

.home-node {
    color: #ffffff;
    margin-top: 5vh;
    letter-spacing: 5px;
    font-size: 1.1rem;
}

.secondary {
    font-size: 0.9rem;
    opacity: 0.75;
    filter: blur(1px);
}

    .secondary:hover {
        filter: blur(0);
    }


a {
    text-decoration: none;
    color: var(--secondary-color);
}

h1 {
    margin-bottom: 32px;
}

.link-header {
    opacity: 0.4;
    font-size: 0.7rem;
    margin-bottom: 3px;
    display: block;
}

#logo {
    display: block;
    position: fixed;
    min-width: 15vw;
    aspect-ratio: 1 / 1;
    top: 6vh;
    left: 7vw;
    opacity: 0;
    transform: translateY(-8px);
    filter: blur(10px);
    transition: opacity 1.4s ease, transform 1.4s cubic-bezier(.19,.8,.25,1), filter 1.6s ease;
    z-index: 3;
}

    #logo.is-visible {
        opacity: 0.45;
        transform: translateY(0);
        filter: blur(0);
    }

    #logo svg path, #logo svg polygon {
        fill: #ffffffaa;
    }

    #logo svg line {
        stroke: #ffffffaa;
    }

/* journal */
.journalArticle {
    position: relative;
    z-index: 2;
    opacity: 0;
    padding-left: 20vw;
    padding-right: 45vw;
    transform: translateY(40px);
    transition: opacity 1.8s ease, transform 1.8s cubic-bezier(.19, .8, .25, 1);
    display: flex;
    gap: 5vh;
    flex-direction: column;
}

    .journalArticle::before {
        content: "";
        position: absolute;
        inset: -35vh 0 0 0;
        z-index: -1;
        background: linear-gradient( to bottom, rgba(214,198,174,0) 0%, rgba(214,198,174,0.35) 22%, rgba(214,198,174,0.75) 45%, rgba(214,198,174,1) 68%, rgba(214,198,174,1) 100% );
        pointer-events: none;
    }

    .journalArticle.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

.journalMeta {
    display: flex;
    gap: 18px;
    margin-bottom: 34px;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.42);
}





@media (max-width: 760px) {
    .journalArticleInner {
        width: 84vw;
    }

    .journalMeta {
        flex-direction: column;
        gap: 8px;
    }

    .journalPull {
        margin: 90px auto;
    }

    .journalText {
        line-height: 1.85;
    }
}

/* animations */
@keyframes heroFloat {

    0% {
        transform: scale(1.08) translate3d(0px, 0px, 0px);
    }

    100% {
        transform: scale(1.13) translate3d(-12px, -6px, 0px);
    }
}
