* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: 'montserrat';
    color: #fff;
}
html, body {
    height: 100%;
    perspective: 800px;
    width: 100%;
}

#cursor{
    height: 20px;
    width: 20px;
    background-color: #95c11e;
    border-radius: 50%;
    position: fixed;
    z-index: 999;
    transition: all linear 0.1s;
}
#cursor-blur{
    height: 500px;
    width: 500px;
    background-color: rgba(150, 193, 30, 0.3);
    border-radius: 50%;
    position: fixed;
    filter: blur(80px);
    z-index: 9;
    transition: all linear 0.4s;
}
#nav{
    width: 100%;
    height: 130px;
    /* background-color: rgb(197, 27, 27); */
    display: flex;
    align-items: center;
    padding: 0 120px;
    gap: 50px;
    position: fixed;
    justify-content: flex-start;
    z-index: 999;
}
#nav img{
    height: 4.5vw;
    
}
#nav h4{
    text-transform: uppercase;
    font-weight: 500;
    /* cursor: pointer; */
    font-size: 1.15vw;
}
video{
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: fixed; 
    z-index: -1;  
}

#main {
    position: relative;
    background-color: rgba(0, 0, 0, 0.39);
}

#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 h1{
    font-size: 7.5vw;
    font-weight: 900;
    position: relative;
}
#page1 h1::before{
    content: "EAT. DRINK. PLAY.";
    position: absolute;
    color: #000;
    top: -5px;
    left: -5px;
    -webkit-text-stroke: 1.5px #95c11e;
    z-index: -1;
}
#page1 h2{
    font-size: 30px;
    font-weight: 800;
    margin-top: 10px;
    margin-bottom: 20px;
}
#page1 p{
    font-size: 1.2vw;
    font-weight: 500;
    width: 40%;
}

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

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


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

}

#scroller h4{
    display: inline-block;
    font-size: 120px;
    font-weight: 900;
    text-transform: uppercase;
    font-family: 'outfit';
    margin-right: 20px;
    transition: all linear 0.3s;
    color: #000;
    /* position: relative;
    z-index: 10; */
    -webkit-text-stroke: 2px #ffffff; 
}

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

@keyframes scroll {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }    
}

#aboutus{
    height: 40vh;
    width: 100%;
    margin-top: 100px;
    display: flex;
    padding: 0 50px;
    align-items: center;
     position: relative;
    z-index: 10;
    justify-content: space-around;
}

#aboutus img{
    height: 220px;
    width: 220px;
    border-radius: 20px;
    object-fit: cover;
}

#aboutus-in{
    width: 50%;
    text-align: center;
}

#aboutus-in h3{
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 30px;
}
#aboutus-in p{
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 40px;
}

#page3 {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;    
}
.card {
    height:70vh;
    width: 24%;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    /* position: relative; */
    overflow: hidden;
    transition: all ease 0.6s;
}

.overlay {
    height: 100%;
    width: 100%;
    background-color: #6ac11e;
    padding: 30px;
    padding-top: 140px;
    opacity: 0;
    transition: all ease 0.6s;
}

.overlay h4{
    color: #000;
    font-size: 30px; 
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 20px; 
}
.overlay p{
    color: #000; 
    font-size: 18px;
    margin-bottom: 20px; 
}
.card:hover .overlay{
    opacity: 1;
}

.card:hover {
    transform: rotate3d(-1, 1, 0, 20deg);
}

