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

html,
body {
  height: 100%;
/*   overflow-x: hidden; */
  width: 100%;
}
*::selection {
  background-color: #fff;
  color: #95c11e;
}

body::-webkit-scrollbar {
  display: block;
  width: 8px;
  background: #95c11e;
}
body::-webkit-scrollbar-thumb {
  background-color: #fff;

  border-radius: 50px;
}
body {
  overflow-x: hidden;
}
#cursor {
  height: 20px;
  width: 20px;
  background-color: #95c11e;
  border-radius: 50%;
  position: fixed;
  z-index: 99;
  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 {
  height: 130px;
  width: 100%;
  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 a{
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  font-size: 1.15vw;
}

#nav-buttons {
  display: flex;
  gap: 20px; 
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.book, .account {
  background-color: black;
  color: #95c11e;
  border: none;
  border-radius: 50%;
  width: 100px; 
  height: 100px; 
  font-size: 75%; 
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.book:hover, .account:hover {
  background-color: #95c11e;
  color: black;
  transform: scale(1.1); 
}

/* Responsive Styles */
@media (max-width: 1200px) {
  #nav-buttons {
    right: 10px; 
  }

  .book, .account {
    width: 80px; 
    height: 80px; 
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  #nav-buttons {
    right: 5px;
    gap: 15px;
  }

  .book, .account {
    width: 70px; 
    height: 70px; 
    /* font-size: 12px; */
  }
}

@media (max-width: 768px) {
  #nav-buttons {
    flex-direction: column; 
    right: 0; 
    top: 10%; 
    gap: 10px; 
  }

  .book, .account {
    width: 60px; 
    height: 60px; 
    font-size: 10px;
  }
}



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

#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 {
  min-height: 100vh;
  width: 100%;
  z-index: 10;
}

#scroller {
  /* background-color: red; */
  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;
  font-family: gilroy;
  margin-right: 20px;
  transition: all linear 0.3s;
  color: #000;
  -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%);
  }
}

#about-us {
  height: 40vh;
  width: 100%;
  display: flex;
  padding: 0 50px;
  align-items: center;
  position: relative;
  z-index: 10;
  justify-content: space-around;
}
#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: 54px;
  font-weight: 800;
  margin-bottom: 30px;
}
#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: 20px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: all ease 0.6s;
}
#card1 {
  background-image: url(https://eiwgew27fhz.exactdn.com/wp-content/uploads/2023/02/home-toptracer-1024x682.jpg?strip=all&lossy=1&sharp=1&ssl=1);
}
#card2 {
  background-image: url(https://eiwgew27fhz.exactdn.com/wp-content/uploads/2023/02/hero-4-1024x1024.jpg?strip=all&lossy=1&sharp=1&ssl=1);
}
#card3 {
  background-image: url(https://eiwgew27fhz.exactdn.com/wp-content/uploads/2023/02/home-lessons-1024x682.jpg?strip=all&lossy=1&sharp=1&ssl=1);
}
.overlay {
  height: 100%;
  width: 100%;
  background-color: #95c11e;
  padding: 30px;
  padding-top: 160px;
  opacity: 0;
  transition: all ease 0.6s;
}
.overlay h4 {
  color: #000;
  font-size: 40px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 20px;
  font-weight: 800;
}
.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-color: red; */
  background: linear-gradient(to left bottom, #119f3a, #ace022);
}
#green-div h4 {
  width: 45%;
  line-height: 50px;
  color: #000;
  text-align: center;
  font-weight: 800;
  font-size: 27px;
  text-transform: uppercase;
}
#green-div img {
  height: 100%;
  object-fit: cover;
  width: 14%;
}

#page3 {
  height: 100vh;
  width: 100%;
  background-color: #000;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
}
#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;
  display: flex;
  color: #000;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  transition: all ease 0.5s;
  font-size: 2vw;
  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 {
  font-size: 6.4vw;
  position: absolute;
  top: -15%;
  font-weight: 900;
  font-family: gilroy;
  color: #000;
  -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;
}
#f1,
#f2,
#f3,
#f4 {
  width: fit-content;
  position: relative;
  z-index: 99;
  /* background-color: red; */
}
#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 h4 {
  font-size: 1vw;
  white-space: nowrap;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 8px;
}



              /* <-----Popup Styling-----> */

.popup {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
  z-index: 1000; /* Higher than other elements */
  justify-content: center;
  align-items: center;
}

.popup-content {
  position: relative;
  background-color: black; 
  padding: 100px;
  border-radius: 10px;
  border: 2px solid #95c11e;
  text-align: center;
  max-width: 400px; 
  margin: auto;
}

#close-btn {
  background: none;
  border: none;
  color: #95c11e; 
  font-size: 50px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: white; 
}

#popup-message {
  color: #fff;
  font-size: 40px; 
}

/* Style for the Sign Out button */
#signout-btn {
  background-color: #95c11e;   
  color: black;               
  font-size: 16px;             
  padding: 10px 20px;         
  border: none;               
  border-radius: 5px;          
  cursor: pointer;             
  margin-top: 20px;            
  text-transform: uppercase;   
  display: inline-block;       
  transition: background-color 0.3s ease; 
}

#signout-btn:hover {
  background-color: darkgreen;  
  color: #fff;                
}

/* Optional: add some spacing if needed between message and the button */
#popup-message strong {
  color: #fff;
  font-size: 30px;
  margin-bottom: 20px;
}






/* Responsive Styles for max-width 480px */
@media (max-width: 480px) {
  #cursor {
    height: 15px;
    width: 15px;
  }

  #cursor-blur {
    height: 300px;
    width: 300px;
    filter: blur(60px);
  }

  #nav {
    height: 90px;
    padding: 0 20px;
    gap: 10px; 
  }

  #nav img {
    height: 40px;
  }

  #nav a {
    font-size: 2.5vw; 
  }

  #nav-buttons {
    top: 150%;
    gap: 5px; 
  }

  .book, .account {
    border-radius: 5px;
    /* font-size:10px; */
    border: 2px solid #95c11e;
  }

  #page1 h1 {
    font-size: 10vw;
  }

  #page1 h2 {
    font-size: 20px;
  }

  #page1 p {
    font-size: 4vw;
    width: 90%; 
  }

  #scroller h4 {
    font-size: 60px;
  }

  #about-us {
    flex-direction: column;
    height: auto;
    padding: 0 20px;
    gap: 15px; 
  }

  #about-us img {
    height: 150px;
    width: 150px;
  }

  #about-us-in {
    width: 100%;
  }

  #about-us-in h3 {
    font-size: 40px;
  }

  #about-us-in p {
    font-size: 16px;
  }

  #cards-container {
    flex-direction: column;
    height: auto;
    gap: 15px;
  }

  .card {
    width: 90%;
    height: 200px;
  }

  .overlay h4 {
    font-size: 24px;
  }

  .overlay p {
    font-size: 14px;
  }

  #green-div {
    flex-direction: column;
    height: auto;
    padding: 10px;
  }

  #green-div h4 {
    font-size: 16px;
    line-height: 24px;
    width: 100%;
    text-align: center;
  }

  #green-div img {
    width: 50px;
  }

  #page3 p {
    font-size: 20px;
    line-height: 28px;
    width: 90%; 
    text-align: center; 
  }

  #page4 {
    flex-direction: column;
    gap: 15px; 
  }

  #page4 h1 {
    font-size: 12vw;
    top: -50%;
    text-align: center; 
  }

  .elem {
    width: 80%;
    height: 200px;
  }

  .elem h2 {
    font-size: 6vw;
  }

  #footer {
    flex-direction: row;
    gap: 20px;
    padding: 20px;
  }

  #footer img {
    width: 80%; 
  }

  #f2 h3,
  #f3 h3,
  #f4 h4 {
    font-size: 2vw;
    text-align: center;
  }
}




/* Responsive Styles for max-width 768px */
@media (max-width: 768px) {
  #cursor {
    height: 20px; 
    width: 20px;
  }

  #cursor-blur {
    height: 350px; 
    width: 350px;
    filter: blur(50px); 
  }

  #nav {
    height: 100px; 
    padding: 0 30px;
    gap: 15px; 
  }

  #nav img {
    height: 60px;
  }

  #nav a {
    font-size: 2vw; 
  }

  #nav-buttons {
    top: 160%; 
    gap: 10px; 
  }

  .book, .account {
    border-radius: 8px; 
    /* font-size: 12px;  */
    border: 2px solid #95c11e;
    padding: 8px 12px; 
  }

  #page1 h1 {
    font-size: 8vw; 
  }

  #page1 h2 {
    font-size: 25px; /* Increased font size */
  }

  #page1 p {
    font-size: 3vw; 
    width: 85%; 
  }

  #scroller h4 {
    font-size: 75px; 
  }

  #about-us {
    flex-direction: column;
    height: auto;
    padding: 0 30px; /* Increased padding */
    gap: 20px; 
  }

  #about-us img {
    height: 200px; /* Larger images for better visibility */
    width: auto; /* Maintain aspect ratio */
  }

  #about-us-in {
    width: 100%;
  }

  #about-us-in h3 {
    font-size: 36px; /* Increased font size */
  }

  #about-us-in p {
    font-size: 18px; /* Increased font size */
  }

  #cards-container {
    flex-direction: column;
    height: auto;
    gap: 20px;
  }

  .card {
    width: 85%; /* Adjusted width for better fit */
    height: 220px; /* Slightly larger card height */
  }

  .overlay h4 {
    font-size: 26px; /* Increased overlay font size */
  }

  .overlay p {
    font-size: 16px; /* Increased overlay paragraph size */
  }

  #green-div {
    flex-direction: column;
    height: auto;
    padding: 15px; /* Adjusted padding */
  }

  #green-div h4 {
    font-size: 25px; /* Increased font size */
    line-height: 28px; /* Adjusted line height */
    width: 100%;
    text-align: center;
  }

  #green-div img {
    width: 50px; 
  }

  #page3 p {
    font-size: 22px; /* Increased font size */
    line-height: 30px;
    width: 90%; 
    text-align: center; 
  }

  #page4 {
    flex-direction: column;
    gap: 20px; 
  }

  #page4 h1 {
    font-size: 10vw; /* Responsive font size */
    top: -65%;
    text-align: center; 
  }

  .elem {
    width: 80%;
    height: 220px; /* Increased height */
  }

  .elem h2 {
    font-size: 7vw; /* Increased font size */
  }

  #footer {
    flex-direction: row;
    gap: 40px;
    padding: 20px;
    align-items: center; 
  }

  #footer img {
    width: 80%; 
  }

  #f2 h3,
  #f3 h3,
  #f4 h4 {
    font-size: 2vw; /* Adjusted font size */
    text-align: center;
  }
}








body {
  overflow-x: hidden; 
}
/* Responsive Styles for max-width 375px */
@media (max-width: 375px) {
  #cursor {
    height: 12px; 
    width: 12px;
  }

  
  

  #cursor-blur {
    height: 250px; 
    width: 250px;
    filter: blur(50px);
  }

  #nav {
    height: 80px; 
    padding: 0 15px;
    gap: 5px; 
  }

  #nav img {
    height: 45px; 
  }

  #nav a {
    font-size: 2.5vw; 
  }

  #nav-buttons {
    top: 170%; 
    gap: 5px; 
  }

  .book, .account {
    border-radius: 4px; 
    /* font-size: 65%;  */
    border: 2px solid #95c11e;
    padding: 5px 8px; 
   
  }

  #page1 h1 {
    font-size: 9vw;
  }

  #page1 h2 {
    font-size: 18px; 
  }

  #page1 p {
    font-size: 3.5vw; 
    width: 90%; 
  }

  #scroller h4 {
    font-size: 40px; 
  }

  #about-us {
    flex-direction: column;
    height: auto;
    padding: 0 15px; 
    gap: 10px; 
  }

  #about-us img {
    height: 120px; 
    width: auto; 
  }

  #about-us-in {
    width: 100%;
  }

  #about-us-in h3 {
    font-size: 30px; 
  }

  #about-us-in p {
    font-size: 14px; 
  }

  #cards-container {
    flex-direction: column;
    height: auto;
    gap: 10px; 
  }

  .card {
    width: 90%; 
    height: 180px; 
  }

  .overlay h4 {
    font-size: 20px;
  }

  .overlay p {
    font-size: 12px; 
  }

  #green-div {
    flex-direction: column;
    height: auto;
    padding: 10px; 
  }

  #green-div h4 {
    font-size: 14px; 
    line-height: 22px;
    width: 100%;
    text-align: center;
  }

  #green-div img {
    width: 40px; 
  }

  #page3 p {
    font-size: 18px; 
    line-height: 24px; 
    width: 90%; 
    text-align: center; 
  }

  #page4 {
    flex-direction: column;
    gap: 10px; 
  }

  #page4 h1 {
    font-size: 9vw; 
    top: -32%;
    text-align: center; 
  }

  .elem {
    width: 90%;
    height: 180px; 
  }

  .elem h2 {
    font-size: 5vw;
  }

  #footer {
    flex-direction: row; 
    gap: 10px;
    padding: 15px; 
    align-items: center; 
  }

  #footer img {
    width: 90%; 
  }

  #f2 h3,
  #f3 h3,
  #f4 h4 {
    font-size: 2.5vw; 
    text-align: center;
  }
}
