﻿:root {
    --space: 1rem;
    --border: 4px;
    --page-width: 80ch;
    --font-family: 'Helvetica', sans-serif;
    --color-link: black;
    --color-active: royalblue;
    --ease: cubic-bezier(0.23, 1, 0.32, 1);
    --duration: 350ms;
    --section-offset: 0;
}

.shopgetStartButton {
    padding: 10px;
    background-color: #dcdcdc;
    border-radius: 10px;
    margin-top: 28px;
    display: block;
    width: 100px;
    text-align: center;
    color: black !important;
}

.hero {
    background: linear-gradient(#0006, #0006), url(/Content/images/shpacbg.webp);
    /*   background-image: url(https://source.unsplash.com/2600x1200?city); */
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;
    width: 100%;
    /*   background-color: #eee; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-inner {
    /*   text-align: center; */
    padding: 0 1.5rem;
    display: block;
    text-align: center;
}

.hero-headline {
    margin: 0;
    color: #fff;
    font-weight: 400;
}

/*h2 {
    margin: 0;
    color: #fff;
    font-weight: 400;
    font-size: 1.2rem;
}
*/






/** {
    margin: 0;
}

html, body {*/
/*   width: 100vw; */
/*height: 100%;
    background-color: yellow;
    font-family: Arial;
}*/

.wrapper {
    min-height: 100%;
    height: 100%;
    scroll-snap-type: y mandatory;
    overflow-y: hidden;
    scroll-behavior: smooth;
}

.nav {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    border-left: 2px solid whitesmoke;
    left: 8%;
    mix-blend-mode: difference;
    z-index: 9999;
}

.nav-link {
    width: 100px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin: 10px 0 !important;
    color: whitesmoke !important;
    font-size: 0.8em !important;
    font-weight: bold !important;
    cursor: pointer !important;
    text-decoration: none !important;
    /*   border: solid 1px red; */
}

    .nav-link span:first-child {
        width: 5px !important;
        height: 2px !important;
        background-color: whitesmoke !important;
        margin-right: 4px !important;
    }

    .nav-link span:last-child {
        overflow: hidden !important;
        font-weight: bold !important;
        margin-left: 4px !important;
    }

.section {
    display: flex !important;
    height: 100% !important;
    background-color: whitesmoke;
    /*   border: 1px solid black; */
    justify-content: center;
    align-items: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

    .section span {
        font-size: 4em;
        color: whitesmoke;
        mix-blend-mode: difference;
    }

    .section:nth-child(even) {
        background-color: #1b1b1b;
    }











.nav-sections {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: white;
    box-shadow: inset lightgray 0 -1px 0, rgba(0, 0, 0, 0.15) 0 3px 10px 0;
    z-index: 100;
}

    .nav-sections .menu {
        justify-content: center;
        position: relative;
        display: flex;
        flex-wrap: nowrap;
        overflow: scroll;
        overscroll-behavior: none;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin: 0 auto;
        max-width: var(--page-width);
        transform: translateZ(0);
        transition: transform var(--ease) var(--duration);
    }

        .nav-sections .menu::-webkit-scrollbar {
            display: none;
        }

    .nav-sections .menu-item {
        margin-right: 10px;
        margin-left: 10px;
    }

@media screen and (max-width: 600px) {

    .nav-sections .menu-item {
        margin-right: 1px;
        margin-left: 1px;
    }

    .nav-sections .menu-item-link {
        padding:10px !important;
    }
}

.nav-sections .menu-item-link {
    display: block;
    padding: calc(var(--space) * 1.5) var(--space);
    text-decoration: none;
    white-space: nowrap;
    color: var(--color-link);
    transition: color var(--ease) var(--duration);
}

    .nav-sections .menu-item-link.active {
        color: var(--color-active);
    }

.active-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background-color: var(--color-active);
    transition: width var(--ease) var(--duration), transform var(--ease) var(--duration);
}
