*{
    margin: 0;
    padding: 0;
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    box-sizing: border-box;
    color: #fff;
}

html, body{
    height: 100%;
    width: 100%;
}

#cursor{
    height: 25px;
    width: 25px;
    background-color: #bbff00;
    border-radius: 50%;
    position: fixed;
    z-index: 99;
}

#nav {
    height: 145px;
    width: 100%;
    font-size: medium;
    /* background-color: red; */
    display: flex;
    align-items: center;
    padding: 0 150px;
    gap: 50px;
    justify-content: flex-start;
    position: fixed;
    z-index: 99;
}


#nav img {
    height: 155px;

}

#nav h4 {
    text-transform: uppercase;
    font-size: 30px;

}
video{
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
    position: fixed;
    
}

#main{
    position: relative;
    background-color: rgba(0, 0, 0, 0.393);

}

#page1{
    height: 100vh;
    width: 100vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#page1 h1::before{
    content: "EAT. DRINK. PLAY";
    position: absolute;
    color: black;
    top: -6px;
    left: -6px;
    -webkit-text-stroke: 2px #bbff00;
    z-index: -1;
}

#page1 h1{
    font-size: 100px;
    font-weight: 900;
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}

#page2 h2{
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
}

#page1 p{
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    width: 50%;
}

#page2{
    min-height: 100vh;
    width: 100%;
}

#scroller{
    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    
}

#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;
    font-size: 140px;
    font-weight: 900;
    font-family: "Mulish", sans-serif;
    margin-right: 10px;
    color: transparent;
    -webkit-text-stroke: 2px #bbff00;
}

@keyframes scroll {
    from{
        transform: translateX(0);
    }

    to{
        transform: translateX(-100%); ;
    }
}

#scroller h4:hover{
    color: #bbff00;
    transition: color 0.3s ease-in-out;
}

#about-us{
    height: 40vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 50px;
}

#about-us img{
    height: 220px;
    width: 220px;
    border-radius: 20px;
    object-fit: cover;
}

#about-us-in{
    width: 50%;
    text-align: center;
}

#about-us-in h3{
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 10px;
}

#about-us-in p{
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
}

#cards-container{
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:70px;
    position:relative
}
.card{
    height: 80%;
    width: 24%;
    border-radius: 20px;
    background-size: cover;
    overflow: hidden;
    background-position: center;
    transition: all ease 0.6s;
}

#card1{
    background-image: url(card\ \(1\).jpg);
}

#card2{
    background-image: url(card\ \(2\).jpg);
}

#card3{
    background-image: url(card\ \(3\).jpg);
}

.overlay{
    height: 100%;
    width: 100%;
    background-color: #bbff00;
    padding: 15px;
    padding-top: 70px;
    opacity: 0;
    transition: all ease 0.6s;
}

.overlay h4 {
    color: black;
    font-size: 30px;
    text-transform: uppercase;
    white-space: nowrap;
    /* margin-bottom: 20px; */
    font-weight: 900;
}

.overlay p{
    color: black;
    font-size: 17px;
}

.card:hover .overlay{
    opacity: 1;
}

.card:hover{
    transform: rotate3d(-1, 1, 0, 20deg);
}

#green-div{
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #7fac06;
}

#green-div h4{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    width: 45%;
    line-height: 40px;
    color: black;
    text-align: center;
    font-weight: 00;
    font-size: 27px;
    text-transform: uppercase;
}

#page3{
    height: 80vh;
    width: 100%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#page3 p{
    font-size: 30px;
    font-weight: 700;
    line-height: 45px;
    width: 70%;
    text-align: center;
}

#page3 img{
    position: absolute;
    height: 60px;
}

#page3 #left{
    left: 15%;
    top:25%;
}

#page3 #right{
    bottom: 30%;
    right: 15%;
}

#page4{
    height: 30vh;
    width: 100%;
    background-color: black
}

#page4 h4{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 60px;
    font-weight: 900;
    font-family: "Mulish", sans-serif;
    /* margin-top: 40px; */
    margin-right: 10px;
    color: transparent;
    -webkit-text-stroke: 2px #bbff00;

}

#footer {
    height: 40vh;
    width: 100%;
    background-color: #779e0c;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

#footer img {
    height: 250px;
}

.text-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 120px; /* adjust as needed to separate h3 and p */
    margin-left: 20px;
    margin-right: 20px;
}

.text-container h3 {
    font-size: 40px;
    font-weight: 900;
    margin: 0;
}

.text-container p {
    font-size: 20px;
    margin: 0;
}


