/* Shared site navigation — Music, Design, Happy Body, Projects */
.site-nav {
  background: #2C1008;
  padding: 0 24px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
  box-sizing: border-box;
}

.site-nav-social {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 16px;
}

.site-nav-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px !important;
  border-bottom: none !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

.site-nav-social-link:hover {
  color: rgba(255, 255, 255, 0.95) !important;
}

.site-nav-social-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  display: block;
}

.site-footer {
  background: #2C1008;
  color: rgba(255, 255, 255, 0.55);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}

.site-footer-copy {
  margin: 0;
}

.site-footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.15s;
}

.site-footer-social-link:hover {
  color: #fff;
}

.site-footer-social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

#footer .site-footer-social-link {
  color: rgba(26, 14, 8, 0.65);
}

#footer .site-footer-social-link:hover {
  color: #7A2E0A;
}

@media (max-width: 600px) {
  .site-nav {
    flex-wrap: wrap;
  }

  .site-nav-social {
    width: 100%;
    justify-content: flex-end;
    padding: 0 0 8px;
    margin-left: 0;
  }
}

.site-nav a {
  display: inline-block;
  padding: 14px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.15s;
}

.site-nav a.active {
  color: #fff;
  border-bottom-color: #E07030;
}

.site-nav a:hover {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 600px) {
  .site-nav a {
    padding: 14px 12px;
    font-size: 13px;
  }
}
