
/* Body */
body {
  background: #111;
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  margin: 0;
}

/* Navbar */
nav {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  z-index: 100;
}

nav .logo img {
  height: 50px;
  cursor: pointer;
}

nav ul.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

nav ul.nav-links li a {
  color: #999;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: 0.3s;
  padding: 5px 10px;
  border-radius: 4px;
}

nav ul.nav-links li a:hover,
nav ul.nav-links li a.active {
  color: white;
  background-color: #ff6600;
  transform: scale(1.12);
}

.book-now-btn {
  background-color: #ff6600;
  color: black;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}

.book-now-btn:hover {
  background-color: #cc5200;
  transform: scale(1.1);
}

/* Section */
a {
  color: #ff6600; 
}

a:hover {
  color: #ffaa66; 
}

.section {
  max-width: 800px;
  margin: 80px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 20px;
}

p {
  line-height: 1.7;
  font-size: 1.2rem;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 16px;
  margin-bottom: 20px;
}


.basketball-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; 
  z-index: 0; 
}

.basketball {
  position: absolute;
  font-size: 3rem; 
  animation: bounce 6s ease-in-out infinite alternate;
}

/* Different positions and delays for variety */
.basketball:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}
.basketball:nth-child(2) {
  left: 50%;
  animation-delay: 1.5s;
}
.basketball:nth-child(3) {
  left: 80%;
  animation-delay: 3s;
}

/* Added Basketballs Bouncing animation */
@keyframes bounce {
  0%   { transform: translateY(0) rotate(0deg); }
  25%  { transform: translateY(80px) rotate(90deg); }
  50%  { transform: translateY(0) rotate(180deg); }
  75%  { transform: translateY(80px) rotate(270deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

/* CONTACT US SECTION - FULL WIDTH */
.contact-us {
  background-color: #f46b0f; 
  color: black; 
  width: 100%;
  padding: 60px 20px;
  text-align: center;
}
.contact-us .contact-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.8;

}

.contact-us h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  font-weight: bold;
  color: #111111;
}

.contact-us p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 10px 0;
}

.contact-us a {
  color: black;
  text-decoration: underline;
  font-weight: 600;
  transition: 0.3s;
}

.contact-us a:hover {
  color: #333; 
}