/* ============================================
   New Horizon Studios - Shared Header Styles
   ============================================ */

header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  padding: 16px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  font-size: 1.05rem;
  padding-bottom: 4px;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #c9a66b;
}

.nav-links a.active {
  color: #c9a66b;
  border-bottom: 2px solid #c9a66b;
}

/* Shell emoji under the active nav item */
.nav-links a.active:after {
  content: '🐚';
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
}

/* Large serif page title in header */
.page-title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  font-weight: 400;
  color: #1f2937;
  margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  header {
    padding: 12px 4%;
    flex-direction: column;
    gap: 15px;
  }
  .nav-links {
    gap: 1.5rem;
  }
  .nav-links a {
    font-size: 0.95rem;
  }
}