/* page-specific overrides */

/* Blurb text */
.blurb {
  margin: 1em auto;
  max-width: 800px;
  font-size: 1em;
  color: #e0e0e0;
}

/* Slideshow frame */
.slideshow {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  border: 4px solid #00cccc;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,255,255,0.3);
  margin-top: 10px;
}
.slideshow img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1s ease;
  border-radius: 10px; cursor: pointer;
}
.slideshow img.active { opacity: 1 }

/* Call-to-action */
.cta {
  margin: 2em 0 1em;
  font-size: 1.1em;
}
.cta a {
  color: #00cccc; text-decoration: none; font-weight: bold;
  transition: color .3s, text-shadow .3s;
}
.cta a:hover {
  color: #00ffff;
  text-shadow: 0 0 5px #00ffff;
}

/* Lightbox overlay */
#lightbox {
  display: none;
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  align-items: center; justify-content: center;
  z-index: 1000;
}
#lightbox img {
  max-width: 90%; max-height: 90%;
  border: 4px solid #00cccc;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(0,255,255,0.5);
}

.lightbox-control {
  position: absolute;
  color: #00cccc;
  font-size: 2.5em;
  text-shadow: 0 0 10px #00cccc,
               0 0 20px #00cccc,
               0 0 30px #00cccc;
  cursor: pointer;
  user-select: none;
  transition: color .3s, text-shadow .3s;
}
.lightbox-control:hover {
  color: #00ffff;
  text-shadow: 0 0 15px #00ffff,
               0 0 30px #00ffff,
               0 0 45px #00ffff;
}
.lightbox-close { top: 20px; right: 30px; }
.lightbox-prev  { top: 50%; left: 30px; transform: translateY(-50%); }
.lightbox-next  { top: 50%; right: 30px; transform: translateY(-50%); }
