:root {
    --dark: #242423;
}

html {
	box-sizing: border-box;
    /* // scroll-behavior: smooth;
    // scroll-snap-type: y mandatory; */
}

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

html, body {
	min-height: 100vh;
}

body {
    background-color: #111;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    color: #fff;
    line-height: 1.3;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* // overflow: hidden; */
}

.logo,
h1,
h2 {
    margin: 0;
    line-height: 1;
    font-family: 'Cinzel', serif;
    font-weight: 400;
}

.stage {
	position: relative;
    /* background: white; */
	visibility: hidden;
}
.flex {
    &.items-center {
        align-items: center;
    }
}

/*  ========================================================================== 
    Nav Header
    ========================================================================== */

.header {
    position: fixed;
    left: 40px;
    top: 24px;
    z-index: 100;
    display: flex;
    
    @media all and (max-width: 768px) {
        display: block;
        left: 24px;
    }
}

.logo {
    font-size: 27px;
    letter-spacing: -1px;
}

.nav-btn,
.nav-btn__svg {
    width: 56px;
    height: 30px;
}

.nav-btn {
    display: block;
    margin: -2px 0 0 56px;
    
    @media all and (max-width: 768px) {
        margin: 18px 0 0 -6px;
    }
}

.nav-btn__svg {
    pointer-events: none;
}

/*  ========================================================================== 
    Intro
    ========================================================================== */

.intro,
.footer {
    height: 100vh;
}

.intro {
    position: relative;
    padding: 5vw;
    /* background: #C0D7D8; */
    overflow: hidden;
}

.intro__content {
    position: absolute;
    right: 8%;
    bottom: 15%;
    z-index: 3;
    
    @media all and (max-width: 768px) {
        right: auto;
    }
}

.intro__title {
    font-size: 18vw;
    overflow: hidden;
    /* letter-spacing: -2.3vw; */
    padding-right: 2.3vw;

    @media all and (max-width: 768px) {
        margin-bottom: 5vh;
    }
}

.intro__img {
    position: absolute;
    width: 35%;
    max-width: 390px;
    height: auto;
    
    @media all and (max-width: 768px) {
        width: 75vw;
    }
}

.intro__img--1 {
    z-index: 2;
    left: 10%;
    bottom: 10%;
    
    @media all and (max-width: 768px) {
        /* // top: 15vh; */
        left: 50%;
        bottom: 50vh;
    }
}

.intro__img--2 {
    z-index: 1;
    left: 25%;
    bottom: 40%;
    
    @media all and (max-width: 768px) {
        /* // top: 2vh; */
        left: 70%;
        bottom: 60vh;
    }
}

.intro__txt {
    max-width: 42vw;
    margin-left: 25vw;
    font-size: 18px;
    line-height: 1.5;
    
    @media all and (max-width: 768px) {
        max-width: 80vw;
        margin-left: 5vw;
    }
}

/*  ========================================================================== 
    Slides
    ========================================================================== */

.slide {
    display: flex;
    align-items: stretch;
    height: 100vh;
    overflow: hidden;
    
    /* &:nth-of-type(even) {
        background: #C4CDC4;
    } */
    
    @media all and (max-width: 768px) {
        display: block;
        position: relative;
    }
}

/*  Columns
    ========================================================================== */

.col {
    flex-basis: 50%;
    
    @media all and (max-width: 768px) {
        display: block;
        width: 100%;
        height: 100vh;
    }
}

.col--1 {
    position: relative;
    z-index: 1;
    
     @media all and (max-width: 768px) {
        position: relative;
        z-index: 1;
    }
}

.col--2 {
    position: relative;
    overflow: hidden;
    
    @media all and (max-width: 768px) {
        position: absolute;
        z-index: 0;
        left: 0;
        top: 0;
    }
}

/*  ========================================================================== 
    Column Content
    ========================================================================== */

.col__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    height: 100%;
    padding: 6vw 6vw 10vw;
    
    @media all and (max-width: 768px) {
        width: 80%;
    }
}

.col__content--1 {
    /* background: #07a5a5; */
    
    @media all and (max-width: 768px) {
        background: rgba(#D8C0C0, 0.9);
    }
}

.col__content--2 {
    /* background: #cd106b; */
    
    @media all and (max-width: 768px) {
        background: rgba(#CDD5E0, 0.9);
    }
}

.col__content--3 {
    /* background: #cd7810; */
    
    @media all and (max-width: 768px) {
        background: rgba(#F3D3B0, 0.9);
    }
}

.col__content--4 {
    /* background: #146ac6; */
    
    @media all and (max-width: 768px) {
        background: rgba(#F8E9E6, 0.9);
    }
}

.col__content--5 {
    /* background: #D1E2EC; */
    
    @media all and (max-width: 768px) {
        background: rgba(#D1E2EC, 0.9);
    }
}

.col__content--6 {
    /* background: #D7CEC5; */
    
    @media all and (max-width: 768px) {
        background: rgba(#D7CEC5, 0.9);
    }
}

/*  Column Content
    ========================================================================== */

.col__content-title {
    margin: 0 0 2vw;
    font-size: 11vw;
    letter-spacing: -0.8vw;
    
    @media all and (max-width: 768px) {
        margin: 0 0 6vw;
        font-size: 18vw;
    }
}

.col__content-wrap {
    display: flex;
    justify-content: flex-end;
    
    @media all and (max-width: 768px) {
        flex-direction: column;
    }
}

.col__content-txt {
    max-width: 22vw;
    order: 2;
    margin-left: 32px;
    
    @media all and (max-width: 768px) {
        order: 1;
        max-width: 40vw;
        margin: 0 0 10vw 10vw;
    }
}

.slide-link {
    position: relative;
    order: 1;
    display: flex;
    justify-content: flex-end;
    width: 75px;
    height: 53px;
    
    > * {
        pointer-events: none;
    }
    
    @media all and (max-width: 768px) {
        order: 2;
        align-self: flex-end;
    }
}

.slide-link__circ {
    width: 53px;
    height: 53px;
    border-radius: 50%;
    border: 1px solid #d9d93c;
}

.slide-link__line {
    position: absolute;
    top: 25px;
    left: 0;
    width: 64px;
    height: 3px;
    background: #d9d93c;
}

.line {
    overflow: hidden;
    
    &:nth-of-type(even) {
        margin-top: -1vw;
    }
}

.line__inner {
    display: block;
}

.slide__scroll-link {
    position: absolute;
    right: -113px;
    bottom: 3.5vw;
    display: block;
    width: 140px;
    height: 140px;
    background: var(--dark);
    overflow: hidden;
    
    @media all and (max-width: 768px) {
        display: none;
    }
}

.slide__scroll-line {
    position: absolute;
    left: 26px;
    bottom: 0;
    width: 1px;
    height: 100%;
}

.slide--0 {
    .slide__scroll-line {
        background: #C0D7D8;
    }
}

.slide--1 {
    .slide__scroll-line {
        background: #D8C0C0;
    }
}

.slide--2 {
    .slide__scroll-line {
        background: #CDD5E0;
    }
}

.slide--3 {
    .slide__scroll-line {
        background: #F3D3B0;
    }
}

.slide--4 {
    .slide__scroll-line {
        background: #F8E9E6;
    }
}

.slide--5 {
    .slide__scroll-line {
        background: #D1E2EC;
    }
}

.slide--6 {
    .slide__scroll-line {
        background: #D7CEC5;
    }
}

/*  ========================================================================== 
    Column Image
    ========================================================================== */

.col__image-wrap {
    position: absolute;
    left: 0;
    /* // top: 50%;
    // transform: translateY(-50%); */
    width: 100%;
    height: 160vh;
}

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

/*  ========================================================================== 
    Footer
    ========================================================================== */

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer__link {
    font-size: 5vw;
    color: white;
    text-decoration: none;
    font-family: 'Cinzel', serif;
}

.footer__link-top {
    position: absolute;
    left: 50%;
    bottom: 100px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: var(--dark);
    font-size: 18px;
    color: white;
    text-decoration: none;
    font-family: 'Cinzel', serif;
}

.footer__link-top-line {
    position: absolute;
    top: -50px;
    left: 50%;
    width: 1px;
    height: 50px;
    background: var(--dark);
}

.footer__copyright {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
}

/* ----------- Text & Media --------------- */
.grid-wrap {
    padding-top: min(calc(60vw / 4),calc(2560px * 0.6 / 4));
    padding-bottom: min(calc(60vw / 4),calc(2560px * 0.6 / 4));
}
.main-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: bold;
    font-size: min(calc(19vw / 4),calc(2560px * 0.2 / 4));
    letter-spacing: 0.04em;
    line-height: 1;
    padding-top: min(calc(24vw / 4),calc(2560px * 0.24 / 4));
}
.secondary-heading {
    font-size: min(calc(11vw / 4),calc(2560px * 0.11 / 4));
    padding-top: 3vw;
}
.body-text {
    font-size: min(calc(6vw / 4),calc(2560px * 0.06 / 4));
}
.col-right {
    padding-top: min(calc(80vw / 4),calc(2560px * 0.8 / 4));
}
.media-outside {
    width: calc(100% + 15vw);
    aspect-ratio: 1 / 1;
    &.left {
        left: calc(15vw * -1);
        position: relative;
    }
}
.wrap-tilt {
    z-index: 10;
    &:before,
    &:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100px;
        left: 0;
        background: #111;
        transform: skewY(-2deg);
    }
    &:before {top: -30px;}
    &:after {bottom: -30px;}
}

.info-parallex {
    height: auto;
    .col__image-wrap {z-index: 1;}
    .text-media {
        z-index: 2;
    }
}
.gradient-full {
    background: linear-gradient(to bottom, rgba(17,17,17,0) 0%,rgba(17,17,17,1) 37%,rgba(17,17,17,1) 67%,rgba(17,17,17,1) 76%);
}
.tilt-heading,
.tilt-text {
    background-image: linear-gradient(90deg, #ffb0c4, #c084fc, #fbbf24);
    background-size: 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.parallax-fade {
    will-change: opacity;
}

.parallax-inner {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}
#smooth-wrapper {
  transition: background 0.3s linear;
}

.text-full {
    background: linear-gradient(to bottom, rgba(17,17,17,0) 0%,rgba(17,17,17,1) 37%,rgba(17,17,17,1) 67%,rgba(17,17,17,1) 76%);
    h1, p {
        background: linear-gradient(90deg, #13969b, #ffffff, #4f1db3);
        background-size: 200% auto;
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
    }
}

.video-scroll-section {
    position: relative;
    height: 100vh; 
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.scroll-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-section-block {

}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
}

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

/* Hide controls normally */
.video-wrapper video::-webkit-media-controls {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show controls on hover */
.video-wrapper:hover video::-webkit-media-controls {
  opacity: 1;
}

.parallex .col__image-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .parallex .col__image-wrap video {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }