@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

@font-face {
  font-family: circular;
  src: url(circular-std-4.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "montserrat";
  color: #fff;
}

*::selection {
  background-color: #fff;
  color: #95c11e;
}

body::-webkit-scrollbar {
  display: block;
  background-color: #000;
  width: 10px;
}

body::-webkit-scrollbar-thumb {
  background-color: #95c11e;
  border-radius: 50px;
}

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

#cursor {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #95c11e;
  position: fixed;
  z-index: 99;
  transition: all linear 0.1s;
}
#cursor-blur {
  height: 400px;
  width: 400px;
  border-radius: 50%;
  background-color: #99c81747;
  position: fixed;
  filter: blur(40px);
  z-index: 9;
  transition: all linear 0.4s;
}
.container {
  height: 140px;
  width: 100%;
  padding: 0 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 99;
}

#nav {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: flex-start;
}
#nav img {
  height: 68px;
}

#nav h4 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
}

#btns .btn {
  background-color: #000;
  color: #fff;
  border: 3px solid #95c11e;
  padding: 12px 20px;
  border-radius: 30px;
  width: 177px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}
#btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

#btns .hid {
  display: none;
}
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 h1 {
  font-size: 120px;
  font-weight: 900;
  position: relative;
  margin-top: 90px;
}

#page1 h1::before {
  content: "EAT. DRINK. PLAY.";
  position: absolute;
  color: black;
  top: -4px;
  left: -4px;
  -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: 20px;
  font-weight: 500;
  width: 40%;
}

#page1 #arrow {
  height: 250px;
  width: 250px;
  background-color: transparent;
  border: 2px solid #95c11e;
  position: absolute;
  left: -2%;
  bottom: -2%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all ease 0.5s;
}

#page1 #arrow i {
  font-size: 50px;
  font-weight: 100;
}

#page1 #arrow:hover {
  scale: 0.4;
  background-color: #95c11e;
}

#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::-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;
  text-transform: uppercase;
  font-size: 120px;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
  transition: all linear 0.5s;
  margin-right: 10px;
  color: #000;
  -webkit-text-stroke: 0.5px #ffffff;
}

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

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

#about-us {
  height: 40vh;
  width: 100%;
  display: flex;
  padding: 0 50px;
  align-items: center;
  justify-content: space-around;
  position: relative;
  z-index: 10;
  margin-top: 20px;
}
#about-us-2 {
  height: 80vh;
  width: 100%;
  display: none;
  flex-direction: column;
  padding: 0 10px;
  align-items: center;
  justify-content: space-around;
  position: relative;
  z-index: 10;
  margin-top: 20px;
}

.about-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: 54px;
  font-weight: 800;
  margin-bottom: 40px;
}

#about-us-in p {
  font-size: 20px;
  line-height: 26px;
}

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

.card {
  height: 80%;
  width: 24%;
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  transition: all ease 0.6s;
  overflow: hidden;
}

#card1 {
  background-image: url(assets/images/img3.avif);
}
#card2 {
  background-image: url(assets/images/img4.avif);
}
#card3 {
  background-image: url(assets/images/img2.webp);
}

.overlay {
  width: 100%;
  height: 100%;
  background-color: #95c11e;
  padding: 30px;
  padding-top: 50px;
  opacity: 0;
  transition: all ease 0.6s;
}
.overlay h4 {
  color: #000;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 800;
  /* white-space: nowrap; */
  margin-bottom: 20px;
}
.overlay p {
  color: #000;
  font-size: 18px;
}

.card:hover .overlay {
  opacity: 1;
}

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

#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;
  font-weight: 800;
  text-align: center;
  font-size: 27px;
  text-transform: uppercase;
  color: #000;
}

#green-div img {
  height: 100%;
  object-fit: cover;
  width: 14%;
}

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

#page3 > p {
  font-size: 35px;
  font-weight: 700;
  width: 60%;
  line-height: 45px;
  text-align: center;
}

#page3 img {
  position: absolute;
  height: 60px;
}

#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: 70px;
  position: relative;
}

.elem {
  height: 70%;
  width: 26%;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
.elem h2 {
  height: 100%;
  width: 100%;
  background-color: #95c11e;
  color: #000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  transition: all ease 0.5s;
  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 {
  position: absolute;
  font-size: 6vw;
  top: -15%;
  font-weight: 900;
  color: #000;
  font-family: "Roboto";
  -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;
}
.f-elem {
  width: fit-content;
  position: relative;
  z-index: 99;
}
#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 h3 {
  font-size: 1vw;
  white-space: nowrap;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 8px;
}

@media (max-width: 1400px) {
  .container {
    flex-direction: column;
    padding-top: 10px;
  }
  #btns {
    width: 100%;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 14px;
  }
}

@media (max-width: 1190px) {
  #about-us-in p {
    font-size: 15px;
  }
  #about-us img {
    height: 170px;
    width: 170px;
  }
}

@media (max-width: 1000px) {
  #page1 h1 {
    font-size: 60px;
  }
  #scroller h4 {
    font-size: 50px;
  }
  .container {
    flex-direction: row;
  }
  #nav h4 {
    display: none;
  }
  #page1 h2 {
    font-size: 20px;
  }
  #page1 p {
    font-size: 16px;
    width: 50%;
  }

  #green-div h4 {
    width: 60%;
    font-size: 20px;
    line-height: 30px;
  }
  #page3 > p {
    font-size: 20px;
  }
  #page3 img {
    height: 40px;
  }
  #page4 h1 {
    top: -4%;
  }
  #about-us {
    display: none;
  }
  #about-us-2 {
    display: flex;
  }
  .img-cont {
    width: 100%;
  }
  .about-img {
    height: 20vh;
    width: 44%;
    margin: 0 10px;
  }
  #about-us-in {
    width: 70%;
    text-align: center;
  }
  #about-us-in h3 {
    font-size: 40px;
  }
  #about-us-in p {
    font-size: 14px;
  }
  #cards-container {
    flex-direction: column;
    gap: 20px;
  }
  #cards-container {
    height: 100vh;
    margin: 20px 0;
  }
  .card {
    width: 70%;
  }
  #page4 {
    height: 120vh;
    flex-direction: column;
    gap: 10px;
  }
  .elem {
    width: 70%;
    margin: 20px 0;
  }
  #footer {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 40px;
    z-index: 0;
  }
  #footer > img {
    height: 50%;
    bottom: 0;
  }
  #f2 h3 {
    font-size: 4vw;
  }
  #f3 h3 {
    font-size: 3vw;
  }
  #f4 h4 {
    font-size: 2.5vw;
  }
}

@media (max-width: 604px) {
  #btns .btn {
    display: none;
  }
  #btns .hid {
    display: block;
  }
  .container {
    padding: 0 24px;
  }
  #page3 > p {
    font-size: 14px;
  }
  #page3 img {
    height: 26px;
  }
  #page4 h1 {
    top: -1%;
  }
}
