/* Centered YouTube video */
.video-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
  text-align: center;
}

.video-container iframe {
  width: 80%;
  max-width: 700px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Caption styling */
.video-caption {
  margin-top: 0.8rem;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: #333;
  font-style: italic;
}

.coming-soon {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;          /* Bigger font */
  color: #00308F;           /* Bold blue tone */
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.contact-info {
  font-family: 'Roboto', sans-serif;
  font-size: .95rem;           /* Smaller font */
  color: #333;
  text-align: center;
  font-style: italic;
}



