@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: "Montserrat", serif !important;
}

::selection {
    background: white;
    color: #95c11e;
}

#nav {
    height: 90px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 90px;
    gap: 40px;
    position: fixed;
    z-index: 99;

    img {
        height: 52px;
    }

    h5 {
        text-transform: uppercase;
        font-weight: 600;
        color: #fff;
    }
}

#cursor {
    height: 15px;
    width: 15px;
    border-radius: 60%;
    position: fixed;
    z-index: 99;
    background: #95c11e;
}

#cursorblur {
    height: 400px;
    width: 400px;
    border-radius: 50%;
    position: fixed;
    background: #96c11e2b;
    filter: blur(50px);
    z-index: 9;
}

video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: fixed;
    z-index: -1;
}

#main {
    position: relative;
    background: rgb(0, 0, 0, 0.50);

    #page1 {
        height: 100vh;
        width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        z-index: 10;

        h1 {
            font-size: 70px;
            font-weight: 900;
            position: relative;
            color: #fff;
        }

        h1::before {
            content: "EAT. DRINK. PLAY.";
            position: absolute;
            color: black;
            top: -3px;
            left: -3px;
            -webkit-text-stroke: 2px #95c11e;
            z-index: -1;
        }

        h2 {
            font-size: 17px;
            font-weight: 800;
            margin: 10px 0 13px;
            color: #fff;
        }

        p {
            font-size: 13px;
            font-weight: 400;
            width: 36%;
            color: #fff;
        }
    }

    #page2 {
        min-height: 100vh;
        width: 100%;
        z-index: 10;
    }
}

#scroller {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    z-index: 10;

    #scroller-in {
        display: inline-block;
        white-space: nowrap;
        animation-name: scroll;
        animation-duration: 40s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;

        h4 {
            display: inline-block;
            margin-bottom: 70px;
            font-size: 80px;
            font-weight: 900;
            margin-right: 15px;
            color: transparent;
            -webkit-text-stroke: 2px white;
            color: black;
            transition: all linear 0.5s;
            font-family: system-ui;
            text-transform: uppercase;

            &:hover {
                color: #95c11e;
                -webkit-text-stroke: 2px #95c11e;
            }
        }
    }
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

#scroller::-webkit-scrollbar {
    display: none;
}

#about-us {
    height: 40vh;
    width: 100%;
    margin-top: 90px;
    margin-bottom: 70px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 50px;

    img:nth-of-type(1) {
        height: 141px;
        width: 141px;
        object-fit: cover;
        border-radius: 15px;
    }

    img:nth-of-type(2) {
        height: 188px;
        width: 141px;
        object-fit: cover;
        border-radius: 15px;
    }

    .about-us-in {
        width: 50%;
        text-align: center;

        h3 {
            font-size: 28px;
            font-weight: 900;
            margin-bottom: 20px;
            color: #fff;
        }

        p {
            font-size: 12.5px;
            font-weight: 500;
            line-height: 2.4;
            color: #fff;
            width: 90%;
            margin: auto;
        }
    }
}

#cards-container {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    gap: 62px;

    .card {
        height: 80%;
        width: 25%;
        border-radius: 15px;
        background-size: cover;
        background-position: center;
        transition: all 0.5s;

        &:hover .overlay {
            opacity: 1;
            cursor: pointer;
        }

        &:hover {
            transform: rotate3d(1, 1, 0, 20deg) !important;
        }

        .overlay {
            width: 100%;
            height: 100%;
            border-radius: 15px;
            background-color: #95c11e;
            padding: 80px 20px 0;
            opacity: 0;
            transition: all 0.5s;

            h4 {
                font-size: 20px;
                text-transform: uppercase;
                font-weight: 800;
                color: #000;
                white-space: nowrap;
                margin-bottom: 18px;
            }

            p {
                color: #000;
                width: 91%;
                line-height: 20px;
                font-size: 11.5px !important;
            }
        }
    }

    #card1 {
        background-image: url(/assets/images/card1.jpg);
    }

    #card2 {
        background-image: url(/assets/images/card2.jpg);
    }

    #card3 {
        background-image: url(/assets/images/card3.jpg);
    }
}

#green-div {
    height: 30vh;
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right top, #95c11e, #26a536);

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

    h4 {
        width: 35%;
        line-height: 30px;
        text-align: center;
        font-size: 16.4px;
        font-weight: 900;
        color: #000;
        text-transform: uppercase;
    }
}

#page3 {
    height: 100vh;
    width: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    p {
        color: #fff;
        font-size: 16px;
        font-weight: 900;
        text-transform: uppercase;
        text-align: center;
        line-height: 35px;
        width: 60%;
    }

    img {
        position: absolute;
        height: 50px;
    }

    img:nth-of-type(1) {
        left: 15%;
        top: 28%;
    }

    img:nth-of-type(2) {
        bottom: 32%;
        right: 15%;
    }
}

#page4 {
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 30px;

    h1 {
        font-size: 73px;
        font-weight: 900;
        position: absolute;
        top: 1%;
        color: black;
        -webkit-text-stroke: 2px white;
        font-family: system-ui;
    }

    .elem {
        height: 50%;
        width: 26%;
        overflow: hidden;
        border-radius: 15px;
        position: relative;

        img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            scale: 1.1;
            transition: all ease 0.5s;
        }

        &:hover img {
            scale: 1;
        }

        h2 {
            color: #000;
            height: 100%;
            width: 100%;
            background: #95c11e;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 900;
            text-transform: uppercase;
            position: absolute;
            z-index: 10;
            transition: all ease 0.5s;
        }

        &:hover h2 {
            color: white;
            background: transparent;
        }
    }
}

#footer {
    height: 40vh;
    width: 100%;
    background: linear-gradient(to left, #26a536, #95c11e);
    position: relative;

    #firstImg {
        height: 100%;
        object-fit: cover;
        width: 16%;
        position: absolute;
    }

    #foot1 {
        display: flex;
        justify-content: space-around;
        padding-top: 60px;
        width: 90%;
        margin: auto;
        position: absolute;
        left: 0;
        right: 0;
        z-index: 10;

        .part1 {
            img {
                height: 65px;
            }
        }

        .part2 {
            h3 {
                font-weight: 900;
                font-size: 17px;
                text-transform: uppercase;
            }
        }

        .part3 {
            h3 {
                font-weight: 900;
                font-size: 17px;
                text-transform: uppercase;
            }
        }

        .part4 {
            h5 {
                font-weight: 600;
                font-size: 11px;
                text-transform: uppercase;

                span {
                    font-weight: 700;
                }
            }

            h4 {
                font-size: 12px;
                font-weight: 900;
            }
        }
    }

    #foot2 {
        width: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding-bottom: 20px;
        align-items: center;
        position: absolute;
        bottom: 0;
        z-index: 10;

        p {
            font-size: 10px;
            font-weight: 600;
        }
    }
}
