.sitename1 {
  font-size: 3rem;
  font-weight: bold;
  font-family: 'Arial', sans-serif;
}

.water-text {
  background: linear-gradient(135deg, #00c6ff, #0072ff); /* swimming pool blue */
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: waterFlow 4s infinite linear;
  display: inline-block;
}

.white-text {
  color: white;
}

/* Water flow animation */
@keyframes waterFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
.gallery-container {
    display: flex;
    overflow-x: auto;
    padding: 10px;
    gap: 10px;
  }

  .gallery-container img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .gallery-container img.active {
    transform: scale(1.2);
    border-color: #009fe3;
  }

  .details {
    margin-top: 20px;
    border-top: 1px solid #ccc;
    padding-top: 10px;
    font-family: sans-serif;
  }