* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    right: 0;
  }
html {
  scroll-behavior: smooth;
}
body,
    html {
      overflow-x: hidden;
    }

  @font-face {
    font-family: 'Gilroy';
    src: url('./gilroy/Gilroy-SemiBoldItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }
  
  body {
    background-color: #050D00;
    color: #fff;
     margin: 0;
    padding: 0;
  }

  header {
    height: 70vh;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.4s ease;
  }
  
 .nav-buttons {
  position: fixed;
  top: 30px;
  right: 64.5px;
  display: flex;
  align-items: center;
  gap: 1rem; /* Adjust spacing between button and icons */
  z-index: 10;
}

.nav-buttons .social {
  display: flex;
  gap: 1rem; /* Spacing between icons */
}


.nav-buttons img {
  width: 24px; /* Optional: control icon size */
  height: 24px;
  cursor: pointer;
}

  
  .nav-buttons button {
    background: white;
    color: #327600;
    border: none;
    font-size: 20px;
    padding: 10px 15px;
    border-radius: 66px;
    margin-left: 30px;
    cursor: pointer;
    font-weight: bold;
    width: 180px;
    gap: 10rem;
  }
  
  .logo-container {
    transition: all 0.5s ease;
    margin-top: 15rem;
  }

  .welcome {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    transition: all 0.6s ease;
    color: white;
    pointer-events: none;
    margin-top: 500px;
    padding-top: 0;
  }
  
  .welcome.visible {
    /* top: 50%; */
    opacity: 1;
    pointer-events: auto;
  }
  .welcome1 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
  pointer-events: none;
}

.welcome1.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

  .logo-entering {
    transform: translateX(-200px);
    opacity: 0;
  }
  
  .logo {
    width: 1300px;
    transition: all 1s ease, transform 1s ease;
    transform: translateX(0);
    opacity: 1;
  } 
    
  .welcome {
    transition: all 1.2s ease; /* slower appearance */
  }
  
  .logo-small {
    position: fixed;
    top: 20px;
    left: 30px;
    width: 180px !important;
    z-index: 999;
    transition: all 1s ease !important; /* ensure it transitions smoothly */
  }
  
  .subtext {
    font-size: 48px;
    margin-top: 10px;
    color: white;
    letter-spacing: 2px;
    transition: opacity 0.4s ease;
    text-align: left;
    font-family: 'Michroma', sans-serif;
    font-weight:bold;
  }

  .subtext.hidden {
    display: none;
  }
  
  .hidden {
    opacity: 0;
    transition: opacity 1s ease;
  } 
    
  .logo .ball {
    color: yellow;
    font-size: 1.2rem;
    margin-left: 5px;
    transform: rotate(25deg);
    display: inline-block;
  }
    
  main {
    margin-top: 0;
    padding: 2rem;
    background: #0d1b0d;
  }
  
  .content {
    max-width: 800px;
    margin: auto;
    text-align: center;
  }
  
  .logo-small {
    position: fixed;
    top: 20px;
    left: 30px;
    font-size: 2rem !important;
    z-index: 999;
  }
  
  .logo-container.scrolled {
    position: fixed;
    top: 0.8rem;
    left: 1rem;
    transform: none;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
  }
  
  .hidden {
    opacity: 0;
  }
.book-your-court {
  opacity: 0;
  transform: scale(0.9); /* start slightly smaller */
  transition: opacity 2s ease, transform 2s ease; /* slower: 2 seconds */
  will-change: opacity, transform;
}

.book-your-court.visible {
  opacity: 1;
  transform: scale(1); /* zoom to full size */
}



   .book-your-court {
      background-image: url('images/Personal\ or\ Agency\ Website\ About\ Me\ Section.png');
      background-size: cover;
      background-position: center;
      font-family:'Michroma',sans-serif ;

      height:800px;
      padding: 100px;
      margin-left: 100px;
      margin-right: 100px;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      margin-top: -450px;
      border-radius: 20px;
    }

    .book-your-court h1 {
      font-size: 70px;
      width: 400;
      color: #C4E2BA;
      text-shadow: 2px 2px 4px #000;
    }

    .book-your-court button {
      margin-top: 20px;
      padding: 10px 25px;
      background-color: white;
      color: #327600;
      border: none;
      border-radius: 33px;
      font-size: 15px;
      font-weight: 800;
      height: 52px;
      cursor: pointer;
    }
    
  .reels-section {
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
  /* background-color: #000; */
}

.reels-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.reels-track {
  display: flex;
  width: max-content;
  animation: scrollReels 40s linear infinite;
}

.reel-thumb {
  width: 300px;
  height: 540px;
  margin-right: 40px;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
}

.reel-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes scrollReels {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  /* background-color: rgba(0,0,0,0.8); */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

    .modal video {
      width: 100%;
      height: 500px;
     
      border-radius: 10px;
    }

.modal .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .reel-thumb {
    width: 240px;
    height: 420px;
    margin-right: 30px;
  }
}

@media (max-width: 768px) {
  .reel-thumb {
    width: 180px;
    height: 340px;
    margin-right: 20px;
  }

  .modal video {
    width: 95%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .reel-thumb {
    width: 140px;
    height: 260px;
    margin-right: 15px;
  }

  .modal .close-btn {
    font-size: 1.5rem;
    top: 10px;
    right: 20px;
  }
}

@media only screen and (max-width: 768px) {
/* 
  header {
    height: 130vh;
   
  } */
  .nav-buttons {
    top: 20px;
    right: 15px;
    flex-direction: row; /* Keep items in a row */
    gap: 0.5rem;
  }

  .nav-buttons button {
    width: auto;
    padding: 8px 12px;
    font-size: 16px;
  }

  .nav-buttons .social {
    gap: 0.5rem;
  }

  .nav-buttons img {
    width: 20px;
    height: 20px;
  }
    
  .logo-container {
    transition: all 0.5s ease;
    padding-top: 0px;
    align-items: center;
  }
    .logo-container.scrolled {
    position: fixed;
    top: 0rem;
    left: 1rem;
    transform: none;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
  }
    .book-your-court {
      background-image: url('images/Group\ 41.png');
      background-size: cover;
      background-position: center;
      font-family:'Michroma',sans-serif ;
      width: 100%;
      height:100%;
      
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      margin-left: 0px;
     
      border-radius: 20px;
    }
      .book-your-court h1 {
      font-size: 30px;
      justify-content: baseline;
      width: 400;
      color: #C4E2BA;
      text-shadow: 2px 2px 4px #000;
    }
}


  @media (max-width: 600px) {
    
        .logo {
          align-items: center;
          text-align: center;
          width: 200px;
        }
  
        .logo-small {
          width: 100px !important;
        }
  
      .subtext {
  font-size: 12x;
  margin: 0 auto;
  text-align: center;
}

   
  
   
        .welcome h2 {
          font-size: 1.5rem;
        }
  
        .welcome p {
          font-size: 1rem;
        }

      }
  
  .features {
  
    margin-bottom: 100px;
    font-family: 'Space Grotesk', sans-serif;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem; 
    justify-content: center;
    margin-top: 50px;
    
  }
  
  .feature-card {
    width: 430px;  /* Increased width for cards */
    height: 270px;
    background: linear-gradient(145deg, rgba(160, 255, 190, 0.4), rgba(140, 235, 170, 0.4)); /* Lighter green gradient */
    border: 1px solid rgba(160, 255, 190, 0.396);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 20px rgba(192, 255, 180, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    
    /* Glassmorphism effect */
    backdrop-filter: blur(10px);  /* Apply blur effect */
    background: rgba(255, 255, 255, 0.279); /* Transparent white background for glass effect */
  }

  .feature-card .content {
    position: relative;
    z-index: 1;  /* Ensure text is on top of the blurred background */
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(192, 255, 180, 0.15);
  }
  
  .icon {
    margin-bottom: 0.5rem;
  }
  
  .icon img {
    width: 80px;
    height: 80px;
  }
  
  /* Bottom row behaves like rest — no extra layout needed */
  .bottom-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Mobile: stack cards */
  @media (max-width: 767px) {
    .features, .bottom-row {
      flex-direction: column;
      align-items: center;
      gap: 2rem; /* Maintain the gap even on smaller screens */
    }
  
    .feature-card {
      width: 100%;
      max-width: 320px;
    }
  }

  .promo-section {
    position: relative;
    height: 130vh;
    display: flex;
    align-items: center;
    background-image: url('./images/Model.png');
    background-size: cover;
    background-position: center;
    padding: 0;
}




.promo-text {
    /* position: absolute; Positioning text over the image */
    color: white; /* Text color for better contrast */
    text-align: left; /* Center the text */
    font-family: Gilroy;
    /* padding: 20px; */
    padding-left: 90px;
    z-index: 1; /* Ensures the text is above the background */
}

.promo-text h1 {
    font-size: 70px; /* Font size of h1 */
    font-weight: 700;
    color: #C4E2BA;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 4px 2px 8px rgba(182, 235, 135, 0.536); /* Shadow effect */
}

.promo-text p {
    font-size: 32px;
    margin-top: 30px;
    margin-bottom: 25px;
}

.promo-text button {
    margin-top: 30px;
    width: 150px;
    height: 52px;
    padding: 12px 12px;
    font-size: 20px;
    font-weight: bold;
    background-color: white;
    color: #327600;
    border: none;
    border-radius: 66px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.promo-text button:hover {
    background-color: #dfffe0;
}

.promo-image-wrapper {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.promo-image {
    width: 100%; /* Adjusted the width of the image */
    max-width: 390px; /* You can adjust this if needed */
    height: auto;
    display: block;
    padding-left: 10px; /* Keeps it away from text */
}
@media (max-width: 768px) {
    .promo-section {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        height: auto; /* Adjust height on smaller screens */
    }
      .promo-section {
    position: relative;
    height: auto;
    display: flex;   
    background-image: url('./images/girl.png');
    background-size: cover;
    background-position: center;
    margin-top: 0;
    padding: 0;
}

    .promo-text,
    .promo-image-wrapper {
      margin-top: 600px;
        width: 100%;
        padding: 0;
        margin-left: 30px;
    }

    .promo-image {
        width: 90%;
        max-width: 300px;
        margin: 20px auto 0;
    }

    .promo-text h1 {
        font-size: 40px;
        font-weight: 400;
    }
    .promo-text p {
    font-size: 23px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 25px;
}
.promo-text button {
    margin-top: 10px;margin-bottom: 30px;
}
}
.loc
{
  font-family: 'Michroma',sans-serif;
  margin-left: 50px;
  margin-top: 100px;
  font-size: 36px;
  font-weight: 400;
}
.contact-section {
 
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 2rem;
padding-bottom: 20px;
 padding-left: 50px;
 padding-right: 50px;
  margin: auto;
  /* background: linear-gradient(to bottom, #0f4c75, #3282b8); */
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.map-container
{
  width: 50%;
}
.map-image img {
  width: 100%;
  max-width: 1400px;
  border-radius: 12px;
  cursor: pointer;
  height: 300px;
  transition: transform 0.3s;
}
.map-image img:hover {
  transform: scale(1.02);
}

.contact-form {
 background-image: url(images/Group\ 38.png);
  background-size: cover;
  padding: 2rem;
  border-radius: 16px;
  height: 300px;
  color: #fff;
  flex: 1;
  min-width: 300px;
  backdrop-filter: blur(6px);
}

.contact-form h2 {
  font-family: 'Metropolis',sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-bottom: 2px solid #ccc;
  background: transparent;
  color: #fff;
  font-size: 1rem;
}

.form-row input:focus {
  outline: none;
  border-bottom-color: #a8dadc;
}

.contact-form button {
  background-color: white;
  border: none;
  padding: 0.75rem 1.5rem;
    color: #327600;
  width: 100px;
  font-weight: bold;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact-form button:hover {
  background-color: #bff0a1;
}
/* Make all input placeholder text white */
.contact-form input::placeholder {
  color: white;
  opacity: 1; /* ensure it's fully opaque */
}

/* .map-text {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 8px;
  text-align: center;
  pointer-events: none; 
} */
 .map-text {
  font-size: 20px;
  text-align: justify;
  margin: 10px auto 0;
  padding: 12px 16px;
  max-width: 90%;
  color: white;

  border-radius: 8px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.map-image {
  position: relative;
  display: inline-block;
}

/* .map-image img {
  display: block;
  width: 100%;
   max-width: 1400px;
  border-radius: 12px;
  cursor: pointer;
  height: 300px;
  height: auto;
} */
.map-image img {
  width: 100%;
  max-width: 1400px;
  border-radius: 12px;
  cursor: pointer;
  height: 300px;
  transition: transform 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    align-items: stretch;
  }
.map-container
{
  width: 100%;
}
  .form-row {
    flex-direction: column;
  }

  .map-image img {
    max-width: 100%;
  }
.map-text {
    font-size: 18px;
    padding: 10px;
  }
  .map-text {
    font-size: 12px;
    padding: 8px;
    text-align: center; /* better on very small screens */
  }
  
}

.custom-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background-color: #fff;
  /* border-top: 3px solid #007BFF; */
  flex-wrap: wrap;
}

.footer-left {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.social-icons {
  margin-bottom: 1rem;
}
.social-icons a img {
  width: 24px;
  margin: 0 0.5rem;
  vertical-align: middle;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
  gap: 0.5rem;
  color: #BBBBBB;
}

.subscribe-form input {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 20px;
  background-color: #162808;
  width: 200px;
}
.subscribe-form button {
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: 20px;
  background-color: #162808;
  color: #BBBBBB;
  cursor: pointer;
  font-weight: bold;
}
.subscribe-form button:hover {
  background-color: #162808;
}
.join
{
   color: #260609;
   font-size: 20px;
   font-weight: 700;
}
.address {
  margin-top: 1rem;
  color: #333;
  font-size: 0.9rem;
}

.footer-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}




   