/* Minimalist sticky header */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  z-index: 1000;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  width: 100%;
}

.header-logo {
  font-family: 'Inconsolata', monospace;
  font-size: 1rem;
  color: #ffd700;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.header-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-family: 'Inconsolata', monospace;
  font-size: 0.9rem;
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.nav-link:hover {
  color: #ffd700;
  border-bottom-color: #ffd700;
}

/* Content sections */
.content-section {
  margin-top: 6rem;
  margin-bottom: 3rem;
  max-width: 800px;
  padding: 2rem;
  text-align: center;
  opacity: 0;
  animation: fadeInCenter 0.6s ease-out forwards;
}

.content-section:nth-of-type(2) {
  animation-delay: 0.3s;
}

.content-section:nth-of-type(3) {
  animation-delay: 0.5s;
}

.content-section h2 {
  font-size: 1.5rem;
  color: #87ceeb;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.content-section p {
  color: #aaa;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Home page specific */
body.page-home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: black;
  padding-top: 60px;
}

.brand-emblem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  animation: fadeInCenter 0.5s ease-out forwards;
}

.home-logo {
  width: clamp(160px, 24vw, 100%);
  height: auto;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

.home-logo.loaded {
  opacity: 1;
}

.hero-tagline {
  font-family: 'Inconsolata', monospace;
  font-size: 1.2rem;
  color: #87ceeb;
  margin-top: 2rem;
  text-align: center;
  letter-spacing: 0.02em;
  font-weight: normal;
}

.page-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 13, 13, 0.95);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  text-align: center;
  padding: 1rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-text {
  color: #ccc;
  font-family: 'Inconsolata', monospace;
  font-size: 0.9rem;
  margin: 0 0 0.5rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
}

.footer-link {
  font-family: 'Inconsolata', monospace;
  font-size: 0.85rem;
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #ffd700;
}

.footer-divider {
  color: #555;
  font-size: 0.85rem;
}

#year {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .header-container {
    padding: 0.75rem 1rem;
  }

  .header-nav {
    gap: 1rem;
  }

  .nav-link {
    font-size: 0.8rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .content-section {
    padding: 1.5rem;
    margin-top: 4rem;
  }

  .content-section h2 {
    font-size: 1.2rem;
  }

  .page-footer {
    padding: 0.75rem 1rem;
  }

  .footer-text {
    font-size: 0.8rem;
  }

  .footer-link {
    font-size: 0.75rem;
  }
}

@media (max-width: 600px) {
  body.page-home {
    padding-top: 50px;
  }

  .header-container {
    padding: 0.5rem 1rem;
  }

  .header-nav {
    gap: 0.8rem;
  }

  .nav-link {
    font-size: 0.75rem;
  }

  .hero-tagline {
    font-size: 0.9rem;
    margin-top: 1rem;
  }

  .content-section {
    padding: 1rem;
    margin-bottom: 2rem;
  }

  .home-logo {
    width: clamp(100px, 20vw, 80%);
  }

  .page-footer {
    padding: 0.5rem 1rem;
  }

  .footer-text,
  .footer-link {
    font-size: 0.7rem;
  }
}

