@import url('../global.css');

:root {
  --bg-dark: #0a0a0a;
  --text-gray: #b0b0b0;
  --header-height: 80px;
}

.subpage-header {
  all: revert;
  background-color: var(--bg-dark);
  border-bottom: 2px solid var(--accent-color);
  padding: 10px 20px;
  width: 100%;
  box-sizing: border-box;
}

.header-content {
  display: flex;
  flex-direction: column; /* Stacked for mobile */
  align-items: center;
  margin: 0 auto;
  gap: 15px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-logo {
  height: 50px;
  width: auto;
}

.site-title h1 {
  font-family: 'Audiowide', sans-serif;
  color: #fff;
  margin: 0;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.tagline {
  color: var(--text-gray);
  font-size: 0.8rem;
  margin: 0;
  font-style: italic;
}

.header-nav {
  display: flex;
  gap: 20px;
}

.header-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.header-nav a:hover,
.header-nav a[aria-current='page'] {
  color: var(--accent-color);
}

/* Desktop Layout */
@media (min-width: 768px) {
  .header-content {
    flex-direction: row; /* Horizontal for desktop */
    justify-content: space-between;
  }

  .site-title h1 {
    font-size: 1.8rem;
  }
}
