@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: white;
  font-family: "Montserrat", serif;
}

*::selection {
  background-color: white;
  color: #95c11e;
}

body::-webkit-scrollbar {
  display: block;
  width: 10px;
  background-color: black;
}

body::-webkit-scrollbar-thumb {
  background-color: #95c11e;
  border-radius: 50px;
}

html, body {
  width: 100vw;
  height: 100vh;
}

body {
  overflow-x: hidden;
  position: relative;
}

#cursor {
  height: 20px;
  width: 20px;
  background-color: #96c11e;
  border-radius: 50%;
  position: fixed;
  z-index: 99;
}

#cursorblur {
  height: 200px;
  width: 200px;
  background-color: #9fc731;
  border-radius: 50%;
  position: fixed;
  filter: blur(80px);
  z-index: 9;
}

#nav {
  height: 145px;
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 100px;
  gap: 50px;
  justify-content: flex-start;
  position: fixed;
  z-index: 99;
  cursor: none;
}

#nav img {
  height: 75px;
}

#nav h4 {
  font-weight: 500;
  text-transform: uppercase;
  transition: all ease 0.5s;
  z-index: 10;
}

#nav h4:hover {
  cursor: none;
}

#hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  font-size: 40px;
  color: white;
}

#menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #22ff00, #d4d714);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 24px;
  text-align: center;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 100;
}

#menu-overlay.open {
  transform: translateX(0);
}

#close-menu {
  position: absolute;
  top: 30px;
  right: 80px;
  font-size: 80px;
  cursor: pointer;
}

#menu-links h4 {
  font-size: 60px;
  line-height: 100px;
  font-weight: bolder;
}

@media (max-width: 1024px) {
  #hamburger {
    display: block;
  }
  #nav h4 {
    display: none;
  }
}

video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: fixed;
  z-index: -1;
  left: 0;
  top: 0;
}

#main {
  position: relative;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.3);
}

#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: 140px;
  font-weight: 900;
  position: relative;
}

#page1 h1::before {
  content: "EAT. DRINK. PLAY.";
  position: absolute;
  color: black;
  top: -5px;
  left: -5px;
  -webkit-text-stroke: 1px #95c11e;
  z-index: -1;
}

#page1 h2 {
  font-size: 30px;
  font-weight: 900;
  margin-top: 10px;
  margin-bottom: 20px;
}

#page1 p {
  font-size: 20px;
  font-weight: 500;
  width: 50%;
}

#page1 #arrow-icon {
  width: 180px;
  height: 180px;
  background-color: transparent;
  border: 2px solid #95c11e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  left: -3%;
  bottom: 0;
  transition: all ease 0.5s;
  z-index: 10;
}

#arrow-icon i {
  font-size: 50px;
  font-weight: 100;
}

#page1 #arrow-icon: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;
  color: black;
  font-size: 140px;
  font-weight: 900;
  margin-right: 20px;
  font-family: sans-serif;
  -webkit-text-stroke: 1px white;
  transition: ease-in 0.3s;
}

#scroller h4:hover{
  color: #95c11e;
  -webkit-text-stroke: #95c11e;
  transition: ease-out 0.1s;
}

@keyframes scroll {
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-100%);
  }
}

#aboutUs {
  height: 40vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
  z-index: 10;
  padding: 0 50px;
  margin-top: 100px;
  margin-bottom: 100px;
}

#aboutUs img {
  height: 200px;
  width: 170px;
  border-radius: 20px;
  object-fit: cover;
}

#about-us-in {
  width: 55%;
  text-align: center;
}

#about-us-in h3 {
  font-size: 54px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 35px;
}

#about-us-in p {
  font-size: 20px;
  line-height: 35px;
  font-weight: 500;
}

#cardsContainer {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  position: relative;
  z-index: 10;
}

#cardsContainer img {
  position: absolute;
  height: 200px;
  width: 200px;
  top: 0;
  left: 8%;
}

.card {
  height: 82%;
  width: 25%;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: all ease 0.6s;
}

.card h1 {
  font-size: 40px;
  font-weight: 900;
  color: white;
  left: 10%;
  bottom: 5%;
  position: fixed;
}

.card:hover h1 {
  opacity: 0;
}

#card1 {
  background-image: url(./assets/card1.avif);
}

#card2 {
  background-image: url(./assets/card2.webp);
}

#card2 h3 {
  left: 10%;
  position: fixed;
  bottom: 22%;
  font-size: 20px;
  font-weight: 900;
}

#card3 {
  background-image: url(./assets/card3.avif);
}

.overlay {
  height: 100%;
  width: 100%;
  background-color: #B1E22E;
  padding-top: 100px;
  border-radius: 20px;
  padding: 30px;
  opacity: 0;
  transition: all ease 0.6s;
  position: relative;
}

.overlay #circle {
  position: absolute;
  width: 160px;
  height: 160px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid black;
  border-radius: 50%;
  top: -8%;
  right: -10%;
  transition: all ease 0.8s;
}

.overlay #circle i {
  font-size: 60px;
  color: white;
}

.overlay #circle:hover {
  background-color: white;
}

.overlay #circle:hover i {
  color: #95c11e;
}

.overlay h4 {
  margin-top: 100px;
  color: black;
  font-size: 40px;
  font-weight: 900;
}

.overlay p {
  color: black;
  margin-top: 20px;
  line-height: 30px;
  font-size: 18px;
}

.card:hover .overlay{
  opacity: 1;
}

.card:hover {
  transform: rotate3d(-1, 1, 0, 20deg);
}

#greenDiv {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to left bottom, #24e03a, #c0c311);
}

#greenDiv h4 {
  width: 45%;
  line-height: 50px;
  color: black;
  font-weight: 900;
  text-align: center;
  font-size: 27px;
  z-index: 10;
}

#greenDiv img {
  height: 100%;
  object-fit: cover;
  width: 15%;
  padding:15px;
  opacity: 0.5;
}

#greenDiv #img1 {
  rotate: 180deg;
}

#scrollImages {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
  rotate: -3deg;
  z-index: 10;
}

#scrollSet {
  display: flex;
  animation-name: instaScroll;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

#scrollSet a {
  margin-right: 40px;
}

#scrollSet img {
  width: 200px;
  height: 200px;
  margin-top: 200px;
  transition: all ease 0.3s;
  border-radius: 20px;
}

@keyframes instaScroll {
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-100%);
  }
}

#scrollSet a img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

#instagram a {
  text-decoration: none;
  display: flex;
  position: relative;
  z-index: 10;
  rotate: -3deg;
  left: 65%;
  align-items: center;
  margin-bottom: 100px;
}

#instagram a i {
  font-size: 25px;
  color: white;
  transition: all ease 0.3s;
  margin-right: 10px;
}

#instagram a h2 {
  font-size: 25px;
  font-weight: 900;
  transition: all ease 0.3s;
}

#instagram a:hover i, #instagram a:hover h2 {
  color: #95c11e;
} 

#scrollImages::-webkit-scrollbar{
  display: none;
}

#page3 {
  height: 100vh;
  width: 100%;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#page3>p {
  font-size: 30px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  width: 60%;
  line-height: 50px;
  z-index: 10;
}

#page3 img {
  position: absolute;
  height: 50px;
}

#page3 #colon-1 {
  left: 15%;
  top: 18%;
}

#page3 #colon-2 {
  right: 15%;
  bottom: 18%;
}

#page4 {
  height: 50vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
}

#page4 h1 {
  font-size: 72px;
  position: absolute;
  font-weight: 800;
  top: 3%;
  font-family: sans-serif;
  text-align: center;
  color: black;
  z-index: 10;
  -webkit-text-stroke: 1px white;
}


.elem {
  height: 52%;
  width: 25%;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  z-index: 10;
}

.elem h2 {
  height: 100%;
  width: 100%;
  background-color: #95c11e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  text-align: center;
  color: black;
  font-weight: 900;
  position: absolute;
  z-index: 10;
  transition: all ease-in-out 0.5s;
}

.elem img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 10;
  scale: 1.1;
  transition: all ease-in-out 0.5s;
}

.elem:hover h2{
  color: white;
  background-color: transparent;
}

.elem:hover img {
  scale: 1;
}

footer {
  height: 55vh;
  width: 100%;
  background: linear-gradient(to left bottom, #0e8e1d, #d4d714);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 80px;
  padding: 0 100px;
}

footer>img {
  position: absolute;
  left: 0;
  height: 80%;
  z-index: 0;
}

#f1 img {
  height: 100px;
  top: 22%;
  left: 8%;
  cursor: pointer;
  position: absolute;
  transition: all ease 0.4s;
  z-index: 10;
}

#f1 img:hover {
  transform: scale(0.9);
}

#f2, #f3, #f4 {
  width: fit-content;
  position: relative;
  z-index: 2;
  top: -10%;
  left: 12%;
  z-index: 10;
  cursor: pointer;
  
}

#f2 h4 {
  font-size: 30px;
  color: black;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 50px;
  transition: all ease 0.3s;
}

#f3 h4 {
  font-size: 30px;
  color: black;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 50px;
  transition: all ease 0.3s;
}

#f4 h4 {
  font-size: 20px;
  color: black;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 25px;
}

#f4 h4 span {
  font-weight: 900;
  color: black;
  transition: all ease 0.3s;
}

#f2 h4:hover {
  color: white;
}

#f3 h4:hover {
  color: white;
}

#f4 h4 span:hover {
  color: white;
}

footer #copyRight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 500px;
  position: absolute;
  bottom: 10%;
  left: 8%;
  z-index: 10;
}

footer #copyRight p {
  color: black;
  font-weight: 500;
}

@media (max-width: 1024px) {
  #cursor, #cursorblur {
    display: none;
  }
  #page1 h1 {
    font-size: 70px;
  }
  #page1 h2 {
    font-size: 30px;
  }
  #page1 p {
    font-size: 20px;
    width: 60%;
  }
  #scroller h4 {
    font-size: 90px;
  }
  #page1 #arrow-icon {
    width: 250px;
    height: 250px;
  }
  #aboutUs {
    margin-top: 0;
  }
  #about-us-in p {
    font-size: 19px;
    line-height: 30px;
  }
  #cardsContainer {
    flex-direction: column;
    height: auto;
    gap: 30px;
    padding: 30px 0;
  }
  .card {
    width: 90%;
    height: 30vh;
  }
  .card h1 {
    font-size: 42px;
    bottom: 10%;
  }
  .overlay {
    padding: 30px;
    padding-top: 10px;
  }
  .overlay h4 {
    font-size: 42px;
    margin-top: 60px;
  }
  .overlay p {
    font-size: 20px;
    line-height: 28px;
  }
  .overlay #circle {
    width: 120px;
    height: 120px;
    top: -2%;
    right: -2%;
  }
  .overlay #circle i {
    font-size: 50px;
  }
  #greenDiv {
    height: 300px;
    margin-top: 50px;
  }
  #greenDiv h4 {
    width: 90%;
  }
  #scrollSet img {
    margin-top: 150px;
  }
  #instagram a {
    left: 50%;
  }
  #page3 {
    height: 50vh;
  }
  #page3>p {
    width: 80%;
    font-size: 25px;
  }
  #page3 #colon-1 {
    height: 50px;
    left: 6%;
    top: 15%;
  }
  #page3 #colon-2 {
    height: 50px;
    right: 6%;
    bottom: 20%;
  }
  #page4 {
    flex-direction: column;
    height: auto;
    gap: 20px;
    padding: 50px 0;
  }
  #page4 h1 {
    top: -0.1%;
    font-size: 48px;
    color: #95c11e;
    -webkit-text-stroke: #95c11e;
  }
  .elem {
    width: 80%;
    height: 20vh;
  }
  .elem h2 {
    font-size: 32px;
    background-color: transparent;
    color: white;
  }
  .elem img {
    scale: 1.05;
  }
  .elem:hover img {
    scale: 1;
  }
  footer {
    height: auto;
    flex-direction: column;
    align-items: flex-start; /* Align content to the left */
    justify-content: flex-start;
    text-align: left;
    gap: 20px;
    padding: 40px 60px; /* Left padding for better spacing */
  }

  footer > img {
    display: block; /* Hide background dots image */
    height: 400px;
    bottom: 0;
  }

  #f1 img {
    position: static;
    height: 80px;
  }

  #f2, #f3, #f4 {
    position: static;
    left: auto;
    top: auto;
    text-align: left; /* Align text to the left */
  }

  #f2 h4, #f3 h4 {
    font-size: 24px;
    line-height: 40px;
  }

  #f4 h4 {
    font-size: 18px;
    line-height: 22px;
  }

  footer #copyRight {
    flex-direction: column;
    gap: 10px;
    position: static;
    width: 100%;
  }

  footer #copyRight p {
    font-size: 14px;
    text-align: left;
    margin: 0;
  }
}

@media (max-width: 820px) {
  #page1 h1 {
    font-size: 55px;
  }
  #page1 h2 {
    font-size: 23px;
  }
  #page1 p {
    font-size: 15px;
    width: 60%;
  }
  #about-us-in p {
    font-size: 16px;
    padding: 20px;
    line-height: 24px;
  }
  #scroller h4 {
    font-size: 70px;
  }
  #greenDiv h4 {
    font-size: 25px;
  }
  #instagram a {
    left: 25%;
    margin-top: 20px;
  }
  #page3>p {
    font-size: 25px;
    width: 80%;
  }
  #page3 #colon-1 {
    height: 30px;
    left: 10%;
    top: 12%;
  }
  #page3 #colon-2 {
    height: 30px;
    right: 12%;
    bottom: 20%;
  }
}

@media (max-width: 480px) {
  #nav {
    padding-left: 20px;
  }
  #nav img {
    height: 50px;
  }
  #hamburger {
    font-size: 30px;
    right: 30px;
  }
  #close-menu {
    font-size: 50px;
    right: 30px;
    top: 40px;
  }
  #menu-links h4 {
    font-size: 36px;
    line-height: 60px;
  }
  #page1 h1 {
    font-size: 50px;
    line-height: 45px;
    margin-bottom: 25px;
  }
  #page1 h2 {
    font-size: 20px;
    width: 80%;
  }
  #page1 p {
    width: 85%;
  }
  #page1 #arrow-icon {
    left: -15%;
    height: 230px;
    width: 230px;
  }
  #scroller h4 {
    font-size: 50px;
    -webkit-text-stroke: 0.5px white;
  }
  #aboutUs {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    gap: 20px;
  }

  #aboutUs img {
    width: 90%;
    border-radius: 10px;
    height: 100px;
  }

  #about-us-in {
    width: 100%;
    text-align: center;
  }
  #about-us-in h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  #about-us-in p {
    font-size: 15px;
    line-height: 25px;
  }
  .about-images {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
  }
  .card {
    height: 400px;
  }
  .card h1 {
    font-size: 30px;
    left: 20px;
  }
  .overlay h4 {
    font-size: 30px;
    margin-top: 80px;
  }
  .overlay p {
    font-size: 14px;
    line-height: 22px;
  }
  .overlay #circle {
    width: 100px;
    height: 100px;
    right: -6%;
  }
  #greenDiv {
    height: 20%;
  }
  #greenDiv h4{
    font-size: 16px;
    line-height: 20px;
  }
  #scrollSet img {
    margin-top: 100px;
  }
  #instagram a i {
    font-size: 15px;
  }
  #instagram a h2 {
    font-size: 15px;
  }
  #instagram a {
    margin-bottom: 50px;
  }
  #page3 p {
    font-size: 20px;
    line-height: 28px;
  }
  #page3 #colon-1 {
    height: 20px;
    left: 10%;
    top: 15%;
  }
  #page3 #colon-2 {
    height: 20px;
    right: 10%;
    bottom: 15%;
  }
  #page4 h1 {
    font-size: 23px;
    top: 3.5%;
  }
  .elem {
    width: 90%;
  }
  .elem h2 {
    font-size: 25px;
  }
  footer img {
    height: 200px;
  }
  footer {
    padding-left: 20px; /* Left padding for better spacing */
  }

  #f2 h4, #f3 h4 {
    font-size: 20px;
    line-height: 30px;
  }
  #f4 h4 {
    font-size: 14px;
  }
}



