/* Splash content — landing page background + text box */
#content_wrapper {
  display: block;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
@media (min-width: 937px) {
  #content_wrapper {
    background-image: url('media/splash.jpg');
    background-position: center;
    background-size: cover;
    max-width: 3000px;
    min-width: 937px;
    min-height: 1100px;
  }
  #text_content {
    min-height: 300px;
    width: 450px;
  }
}
@media (max-width: 936px) {
  #content_wrapper {
    background-image: url('media/splash_small.jpg');
    background-position: center;
    background-size: cover;
    min-height: 610px;
  }
  #text_content {
    min-height: 200px;
    width: 60%;
    min-width: 220px;
  }
}
#text_content {
  display: inline-flex;
  align-items: center;
  margin-top: 10%;
  margin-bottom: 10%;
  margin-right: 45%;
  margin-left: 10%;
  background-color: rgba(0, 0, 10, 0.64);
  color: #f0f0f0;
  padding: 24px;
  border-radius: 12px;
  text-align: left;
  line-height: 1.6;
  overflow-wrap: break-word;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.15s;
}
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  #text_content { opacity: 1; transform: none; animation: none; }
}