.short-banner img {
  width: 100%;
  height: auto;
  max-height: 150px;
  object-fit: cover;
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  padding: 10px 0;
}

.nav-box {
  background-color: #f4f4f4;
  border: 1px solid #ccc;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  color: #0645AD;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-box:hover {
  background-color: #0645AD;
  color: #fff;
}

.thumbnails img {
  height: 200px;
  width: 150px;
  margin: 10px;
  cursor: pointer;
  border: 1px solid #ccc;
  transition: transform 0.2s;
}

.thumbnails img:hover {
  transform: scale(1.05);
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: hidden;
}

.modal-scroll-wrapper {
  width: 100%;
  height: 100%;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: start;
}

.modal-content {
  width: 750px;
  height: 1000px;
  margin-top: 40px;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.clickable-thumb {
  width: 150px;
  height: 200px;
  cursor: pointer;
  margin: 10px;
}

.close {
  position: fixed;
  top: 25px;
  right: 35px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  z-index: 10000;
}


.club-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.club-card {
  background: #f8f8f8;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  transition: background 0.3s ease;
}

.club-card:hover {
  background: #e0e0e0;
}

.club-card img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}
