
/* index.css – Homepage specific styling
   Depends on: base.css, layout.css, side-menu.css
*/

.hero-container {
  position: relative;
  top: 56px;
  left: 0;
  width: 100%;
  height: calc(100vh - 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-container picture, .hero-img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0; left: 0;
}

.hero-img {
  object-fit: cover;
  z-index: 1;
  background: var(--gray);
}

.hero-container::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100vw; height: 100%;
  z-index: 2;
  pointer-events: none;
}

.mission-overlay {
  position: relative;
  z-index: 3;
  max-width: 600px;
  margin: auto;
  padding: 10px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.75);
  color: var(--accent);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.45;
  text-align: center;
  box-shadow: 0 4px 24px rgba(36,39,46,0.10);
  text-shadow: 0 2px 8px rgba(0,0,0,0.14);
}

@media (min-width: 600px) {
  .mission-overlay {
    font-size: 1.7rem;
    padding: 26px 36px;
  }
}
