/* Base layout */
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  color: #333;
}

header {
  background: #1e293b;
  color: #fff;
  padding: 2rem;
  text-align: center;
}

section {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
}

/* Hero video */
.hero-video {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

/* Slideshow */
.slideshow {
  text-align: center;
}

.slideshow img {
  width: 100%;
  max-width: 600px;
  height: 60vh;         /* caps height relative to screen */
  max-height: 400px;
  object-fit: contain;
  border-radius: 8px;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  cursor: pointer;
  touch-action: pan-y;
}

.slideshow img.fade-out {
  opacity: 0;
}

/* Links */
a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: #f1f5f9;
  text-align: center;
  padding: 1rem;
}
