/* Home page – dark hero layout */

body.page-home {
  background-color: #20293b;
  color: #fff;
  line-height: 1.6;
}

.page-home .nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 1.5rem 2rem;
  margin-top: 0;
}

.page-home .nav-inner { justify-content: flex-end; }

.page-home .nav-brand { height: 28px; }

.page-home .nav-links a {
  color: rgba(255, 255, 255, 0.6);
}

.page-home .nav-links a:hover,
.page-home .nav-links a.active {
  color: #fff;
}

.page-home .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  max-width: none;
  padding: 2rem;
}

.page-home .logo {
  max-width: 100%;
  height: auto;
  width: 300px;
  margin-bottom: 1rem;
}

.page-home .social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-home .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.page-home .social-icons a:hover { opacity: 0.6; }

.page-home .social-icons img {
  width: 2rem;
  height: 2rem;
  display: block;
}

.page-home .site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.page-home .site-footer a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.page-home .site-footer a:hover { color: rgba(255, 255, 255, 0.85); }

@media (max-width: 600px) {
  .page-home .nav { padding: 1rem; }
  .page-home .nav-links { gap: 1.5rem; }
  .page-home .nav-links a { font-size: 0.8rem; }
  .page-home .logo { width: 200px; }
}

@media (max-width: 400px) {
  .page-home .logo { width: 150px; }
  .page-home .social-icons a { width: 2rem; height: 2rem; }
  .page-home .social-icons img { width: 1.5rem; height: 1.5rem; }
}
