
:root {
--DarkGray: hsl(0, 0%, 63%);
--Black: hsl(0, 0%, 0%);
--White: hsl(0, 0%, 100%);
--VeryDarkGray: hsl(0, 0%, 27%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "League Spartan";
    width: 100%;
    height: 100dvh
}


#header-text, #paragraph-text {
    transition: opacity 500ms ease-in-out;
    opacity: 1;
}

.desktop {
    display: none;
}
.hamburger-menu {
    position: absolute;
    left: 30px;
    top: 30px;
    z-index: 5;
}

#hamburger-close {
    display: none;
}

.room-logo {
    position: absolute;
    left: 40vw;;
    top: 30px;
    z-index: 3;
    width: 80px
}

nav {
    position: fixed;
    background-color: var(--White);
    width: 100%;
    top: -100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 4;
    transition: top 500ms ease;
    
}

nav ul {
    display: flex;
    margin-left: 20px;
}

nav ul li {  
    list-style: none;
    padding-right: 25px;    
}

nav ul li a{
    text-decoration: none;
    color: var(--Black);
    font-size: 16px;
}


nav ul li a:hover{
    
    color: var(--VeryDarkGray);
}

.overlay {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: black;
    opacity: 0.6;
    z-index:2;
    display: none;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
}
.flex-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
}

.scroller {
    display: flex;
    width: 100vw;
    position: relative;
   
}
.scroll-window {
    display: flex;
    width: 100vw;
    scroll-snap-type: x mandatory;
    overflow-x: scroll;
}

.scroll-window img {
    flex-shrink: 0;
    width: 100vw;
    scroll-snap-align: start;
}

::-webkit-scrollbar {
    display: none;
}

.scroll-arrows1 {
    display: flex;
    justify-content: space-around;
    background-color: black;
    width: 70px;
    height: 40px;
    background-color: black;
    align-items: center;
    position: absolute;
    bottom: 0;
    right: 0;
}
.scroll-arrows1 a {
    padding: 5px;
    display: flex;
}

.text-box {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: auto;
    line-height: 1.5;;
    padding: 50px;
    overflow: hidden;
}

h1 {
    font-size: 30px;
}

p {
    color: var(--DarkGray);
}

.shop-button {
    display: flex;
    margin-top: 50px;
    align-items: center;
    cursor: pointer;
}

.shop-button h3{
    font-size: 20px;
    letter-spacing: 10px;
    font-weight: 300;
}

.shop-button img {
    height: 20px;
    padding-bottom: 3px;
    margin-left: 30px;
}

@media (min-width: 700px) {

    .mobile {
        display: none;
    }
    .desktop {
        display: block;
    }

    .room-logo {
        position: absolute;
        left: 80px;
        top: 60px;
        z-index: 3;
        width: 120px
    }

    nav {
        position: fixed;
        background: none;
        width: 100%;
        height: 150px;
        top: 0;  
        left: 0;
        z-index: 1000;    
        justify-content: flex-start; 
    }
    
    nav ul {
        display: flex;
        margin-left: 300px;
    }
    
    nav ul li {  
        list-style: none;
        padding-right: 25px;    
    }
    
    nav ul li a{
        text-decoration: none;
        color: var(--White);
        font-size: 30px;
    }



    .grid-container {
        grid-template-columns: 1;
        grid-template-rows: 66vh 34vh;
    }
     .container-one { 
        max-width: 100vw;
        display: grid;
        grid-template-columns: 55% 45%;
        grid-template-rows: 1fr;
    }
    .scroller {
        grid-column: 1 / 2;
        width: 100%;
        height: 66vh
    }
    .scroll-window {
        grid-column: 1 / 2;
        width: 100%;
    }
    .scroll-window img {
        flex-shrink: 0;
        width: 100%;
    }
    .text-one {
        grid-column: 2 / 3;
        padding: 6vw;
        position: relative;
    }
    .text-box {
        width: 100%;
    }
    h1 {
        font-size: 50px;
        font-weight: 600;
        margin-bottom: 50px;
    }
    h2 {
        font-size: 35px;
        font-weight: 400;
        margin-bottom: 50px;
    }
    .text-box p {
        font-size: 17px;
        padding-right: 60px
    }

    .scroll-arrows2 {
        display: flex;
        justify-content: space-around;
        background-color: black;
        width: 140px;
        height: 60px;
        background-color: black;
        position: absolute;
        align-items: center;
        bottom: 0;
        left: 0;
    }
    .scroll-arrows2 a {
        padding: 5px;
        display: flex;
        height: 50px
    }
    
    .container-two { 
        max-width: 100vw;
        height: auto;
        display: grid;
        grid-template-columns: 30% 40% 30%;
        grid-template-rows: 1fr;
    }

    .dark-image {
        grid-column: 1 / 2;
        height: 100%;
        overflow-x: hidden;
        max-width: 100%;
    }

    .text-two {
        grid-column: 2 / 3 ;
        height: auto;
    }
    .light-image {
        grid-column: 3 / 4;
        height: 100%;
        max-height: 34vh;
        max-width: 100%;  
    }     
}

@media (min-width: 1700px) {
    h1 {
        font-size: 55px;
        font-weight: 600;
        margin-bottom: 50px;
    }
    h2 {
        font-size: 40px;
        font-weight: 400;
        margin-bottom: 50px;
    }
    .text-box p {
        font-size: 20px;
        padding-right: 60px
    }
}