/* Frankfurter webfont (files live alongside this CSS in /font/) */
@font-face {
  font-family: 'Frankfurter Medium Std';
  src: url('FrankfurterMediumStd.woff2') format('woff2'),
       url('FrankfurterMediumStd.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Theme variables */
:root {
  --bg: #1a204a;
  --text: #ffffff;
}

/* Base */
html, body { height: 100%; }

body {
  margin: 0;
  background-color: var(--bg, #1a204a);   /* fallback included */
  color: var(--text, #ffffff);            /* fallback included */
  font-family: 'Frankfurter Medium Std', system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center; /* centers top-level content horizontally */
}

/* Main layout on index.html */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;   /* centers logo and nav row */
  margin-top: 10vh;
}

.logo {
  max-width: 80vw;
  height: auto;
}

.nav-images {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.nav-img {
  max-width: 15vw;
  height: auto;
}

/* Footer: Courier and centered */
footer {
  font-family: Courier, monospace;
  font-size: 0.9rem;
  text-align: center;
  color: white;
  padding: 1rem 0;
  width: 100%;
}

/* Reel captions stay monospace */
.label { font-family: Courier, monospace; }

/* About page fade-ins (safe to keep here sitewide) */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-in, .fade-in.visible {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
