body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #efa1ff, #b400b4);
  color: #fff;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: rgba(250, 115, 194, 0.15);
  backdrop-filter: blur(10px);
}

nav a {
  color: #ff9de2;
  margin: 0 10px;
  text-decoration: none;
}

.hero {
  position: relative;
  height: 50vh;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(1.2);
  animation: zoom 15s infinite alternate;
  z-index: -10;
}
.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

@keyframes zoom {
  from { transform: scale(1); }
  to { transform: scale(1); }
}

.showcase, .extra-gallery {
  padding: 40px;
  text-align: center;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.image-grid img {
  width: 100%;
  border-radius: 15px;
  height: 200px;
  transition: transform 0.4s, box-shadow 0.4s;
}
.image-grid img:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px #ff4dd2;
}
.img-box {
  position: relative;
}


.img-box img:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px #ff4dd2;
}

#tooltip {
  position: fixed;
  background: rgba(255, 0, 150, 0.9);
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 14px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;

  max-width: 200px;      /* controls how wide it can get */
  white-space: normal;   /* allows line wrapping */
  word-wrap: break-word; /* breaks long words if needed */
}

.card {
  background: rgba(255, 0, 150, 0.1);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-10px) scale(1.05);
}

.gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 40px;
}

.image-strip {
  display: flex;
  overflow-x: auto;
}

.image-strip img {
  height: 200px;
  margin: 10px;
  border-radius: 10px;
}

.join {
  text-align: center;
  padding: 50px;
  font-size: 1.5em;
  color: #ff66cc;
}