
body {
  font-family: system-ui, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #111;
  color: #eee;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  text-align: center;
  padding: 2rem;
}

.main-logo {
  max-width: 180px;
  margin-bottom: 1rem;
  border-radius: 12px;
}

h1 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 800px; /* Default for horizontal videos */
  margin: 0 auto 3rem auto;
  aspect-ratio: 16 / 9; /* Default horizontal aspect ratio */
  min-height: 300px;
  max-height: 600px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  background-color: #000;
}

/* Responsive sizing for larger screens */
@media (min-width: 768px) {
  .video-container {
    min-height: 400px;
    max-height: 700px;
  }
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* For vertical videos (Shorts), add class="vertical" to video-container */
.video-container.vertical {
  max-width: 400px;
  aspect-ratio: 9 / 16;
  max-height: 700px;
}

.org-chart {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.org-chart img.logo {
  max-width: 100px;
  height: auto;
  border-radius: 12px;
  transition: transform 0.2s ease;
}

.org-chart img.logo:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.hover-info {
  margin-top: 1rem;
  font-size: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  background-color: #222;
  color: #aaa;
}

a {
  color: #ffd700;
}
