body,
html {
  height: 100%;
  margin: 0;
  font-family: "Ubuntu", sans-serif;
  color: #333;
  overflow-x: hidden;
}
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background: transparent;
  border: none;
}
.navbar-toggler {
  border: none;
  outline: none;
}
.navbar-toggler:focus {
  outline: none;
}
.navbar-toggler-icon {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="rgba%28255, 255, 255, 1%29" stroke-width="2" linecap="round" linejoin="round" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
}
.navbar-collapse {
  text-align: center;
}
.navbar-nav .nav-link {
  color: white !important;
  font-size: 1.2rem;
  margin: 10px 0;
  padding: 0px 40px !important;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: url("pool_bg.jpg") no-repeat center center/cover;
  position: relative;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  padding: 20px;
}
.hero-content img {
  max-width: 300px;
  width: 50%;
  height: auto;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}
.btn-custom {
  background-color: #007bff;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1rem;
}
.btn-custom:hover {
  background-color: #0056b3;
}
/* SVG Waves Styling */
.wave-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 150px; /* Adjust height as needed */
  overflow: hidden;
  line-height: 0;
  z-index: 1;
  opacity: 0.5;
}
.wave-container svg {
  position: relative;
  display: block;
  width: calc(200% + 1.3px);
  height: 100%;
}

.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px; /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }
}
