* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: white;
}

*::selection {
    background-color: #fff;
    color: #95C11E;
}

body::-webkit-scrollbar {
    display: block;
    width: 0.6vw;
    background-color: #95C11E;
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    background-color: #fff;
    border-radius: 50px;
}

html,
body {
    height: 100%;
    width: 100%;
}

#nav {
    position: fixed;
    height: 20vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4vw;
    padding: 0 10vw;
    z-index: 99;

    a {
        text-decoration: none;
        font-weight: 500;
    }

    img {
        width: 5.2vw;
    }
}

#cursor {
    height: 20px;
    width: 20px;
    background-color: #95C11E;
    border-radius: 50%;
    position: fixed;
    z-index: 999;
}

#cursor-blur {
    height: 400px;
    width: 400px;
    background-color: #b5f20e51;
    border-radius: 50%;
    position: fixed;
    filter: blur(40px);
    z-index: 9;
}

video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
    position: fixed;
}



#main {
    position: relative;
    background-color: rgba(0, 0, 0, 0.37);
}

#page1 {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    z-index: 10;
}

#page1 #arrow {
    height: 20vh;
    width: 9.85vw;
    background-color: transparent;
    border: 2px solid #95c11e;
    position: absolute;
    display: flex;
    left: -2%;
    bottom: 0%;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all ease 0.5s;
}

#page1 #arrow i {
    font-size: 2.9vw;
    font-weight: 100;
}

#page1 #arrow:hover {
    scale: 0.4;
    background-color: #95c11e;
}

#page1 h1 {
    font-size: 5vw;
    font-weight: 900;
    position: relative;
}

#page1 h1::before {
    content: "EAT. DRINK. PLAY.";
    position: absolute;
    color: black;
    top: -0.8vh;
    left: -0.4vw;
    -webkit-text-stroke: 2px #95C11E;
    z-index: -1;
}

#page1 h2 {
    font-size: 2vw;
    font-weight: 800;
    margin-top: 1vh;
    margin-bottom: 3vh;
}

#page1 p {
    font-size: 1vw;
    font-weight: 500;
    width: 40%;
}

#page2 {
    min-height: 100vh;
    width: 100%;
    z-index: 10;
}

#scroller {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    z-index: 10;
    margin: 10vh 0vw;

}

#scroller::-webkit-scrollbar {
    display: none;
}

#scroller-in {
    display: inline-block;
    white-space: nowrap;
    animation-name: scroll;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

#scroller h4 {
    display: inline-block;
    padding: 0vh 2vw;
    font-size: 3.5vw;
    font-weight: 900;
    margin-right: 0.5vw;
    color: transparent;
    transition: all linear 0.4s;
    -webkit-text-stroke: 2px #95C11E;
}

#scroller h4:hover {
    color: #95C11E;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

#about-us {
    height: 40vh;
    width: 100%;
    display: flex;
    padding: 0 7.5vw;
    align-items: center;
    justify-content: space-around;
    position: relative;
    z-index: 10;
    margin-bottom: 10vh;
}


#about-us img {
    height: 50vh;
    width: 15vw;
    border-radius: 20px;
    object-fit: cover;
}

#about-us-in {
    width: 50%;
    text-align: center;
}

#about-us-in h3 {
    font-size: 2.5vw;
    font-weight: 800;
    margin-bottom: 1.5vh;
}

#about-us-in p {
    font-size: 1.2vw;
    line-height: 26px;
}

#cards-container {
    height: 60vh;
    margin-bottom: 10vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 4vw;
    position: relative;
    z-index: 10;
}

.card {
    height: 80%;
    width: 24%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    transition: all ease 0.6s;
}

#card1 {
    background-image: url('https://c4.wallpaperflare.com/wallpaper/9/760/1018/5bd013ad768ca-wallpaper-preview.jpg');
}

#card2 {
    background-image: url(https://c4.wallpaperflare.com/wallpaper/921/228/999/golf-hd-widescreen-for-laptop-wallpaper-preview.jpg);
}

#card3 {
    background-image: url(https://assets.simpleviewinc.com/simpleview/image/upload/c_limit,h_1200,q_75,w_1200/v1/clients/muskegonmi/lovely_lady_golfer_2_22f86d53-b7ea-4c33-8f01-8ec8008ad493.jpg);
}

.overlay {
    height: 100%;
    width: 100%;
    background-color: #95C11E;
    padding-top: 15vh;
    padding: 1.5vw;
    opacity: 0;
    transition: all ease 0.6s;
}

.overlay h4 {
    color: #000;
    font-size: 3vw;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 3vh;

}

.overlay p {
    color: #000;
}

.card:hover .overlay {
    opacity: 1;
}

.card:hover {
    transform: rotate3d(-1, 1, 0, 15deg);
}

#green-div {
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to left bottom, #119f3a, #ace022);
}

#green-div h4 {
    width: 45%;
    line-height: 50px;
    color: #000;
    text-align: center;
    font-weight: 800;
    font-size: 1.8vw;
    text-transform: uppercase;
}

#green-div img {
    height: 100%;
    object-fit: cover;
    width: 14%;
}

#page3 {
    height: 100vh;
    width: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
}

#page3>p {
    font-size: 1.8vw;
    font-weight: 700;
    width: 60%;
    line-height: 4.8rem;
    text-align: center;
}

#page3 img {
    position: absolute;
    height: 8vh;
}

#page3 #colon1 {
    left: 15%;
    top: 25%;
}

#page3 #colon2 {
    bottom: 30%;
    right: 15%;
}

#page4 {
    height: 30vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5vw;
    position: relative;
}

.elem {
    height: 70%;
    width: 26%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.elem h2 {
    height: 100%;
    width: 100%;
    background-color: #95c11e;
    display: flex;
    color: #000;
    font-weight: 800;
    align-items: center;
    justify-content: center;
    transition: all ease 0.5s;
    font-size: 2vw;
    position: absolute;
    z-index: 10;
}

.elem img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all ease 0.5s;
    scale: 1.1;
}

.elem:hover h2 {
    color: #fff;
    background-color: transparent;
}

.elem:hover img {
    scale: 1;
}

#page4 h1 {
    font-size: 7vw;
    position: absolute;
    top: -24%;
    font-weight: 900;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #000;
    -webkit-text-stroke: 2px #fff;
}

#footer {
    height: 40vh;
    width: 100%;
    background: linear-gradient(to left bottom, #119f3a 0%, #a3d421 80%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6.5vw;
    padding: 0 100px;
}

#footer>img {
    position: absolute;
    left: 0;
    height: 100%;
    z-index: 0;
}

#f1 img {
    height: 100px;
}

#f1,
#f2,
#f3,
#f4 {
    width: fit-content;
    position: relative;
    z-index: 99;
    /* background-color: red; */
}

#f2 h3 {
    font-size: 1.6vw;
    white-space: nowrap;
    text-transform: uppercase;
    color: #000;
    font-weight: 900;
    margin-bottom: 8px;
}

#f3 h3 {
    font-size: 1.6vw;
    white-space: nowrap;
    text-transform: uppercase;
    color: #000;
    font-weight: 800;
    margin-bottom: 8px;
}

#f4 h4 {
    font-size: 1vw;
    white-space: nowrap;
    text-transform: uppercase;
    color: #000;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 8px;
}

@media screen and (max-width: 1101px) {
    #nav {

        padding: 0vh 5vw;

        a {
            font-size: 2.5vw;
        }

        img {
            width: 8.5vw;
        }
    }

    #page1 #arrow {
        height: 10vh;
        width: 20vw;
    }

#scroller{
    margin: 2vh 0vw;
}

    #scroller-in h4 {
        font-size: 6.5vw;
    }

    #about-us {
        height: 30vh;
        padding: 0vh 1.2vw;
        margin-bottom: 3vh;

        img {
            height: 25vh;
            width: 40vw;
        }
    }

    #about-us-in {
        h3 {
            font-size: 3.5vw;
        }

        p {
            line-height: 2vh;
            padding: 0vh 1vw;
        }
    }

    #cards-container {
        height: 40vh;
        margin-bottom: 0%;
        .card {
            height: 60%;
            width: 20%;
        }
    }

    #green-div {
        height: 10vh;

        h4 {
            line-height: 20px;
        }

        img {
            width: 20%;
        }
    }

    #page3 {
        height: 30vh;

        p {
            font-size: 3vw;
            line-height: 2rem;
        }

        img {
            height: 4vh;
        }

        #colon1{
            top: 5%;
            left: 8%;
        }

        #colon2{
            bottom: 5%;
            right: 10%;
        }
    }

    #page4 {
        height: 28vh;

        h1 {
            top: -0.1%;
        }

        .elem {
            height: 40%;
            width: 20%;
            margin: 0vh 4vw;

            h2 {
                padding: 0vw 2.5vw;
                font-size: 2.5vw;
            }
        }

    }

    #footer {
        height: 15vh;
        justify-content: center;

        h3 {
            font-size: 2vw;
        }

        h4 {
            font-size: 2vw;
            line-height: 1rem;
        }

        img {
            width: 10vw;
        }
    }
}