/* Shared header/footer styles aligned with us.hongmoe.com structure */
.site-header {
  color: #ffffff;
  border-bottom: 0;
  box-shadow: none;
}
.site-header .container {
  padding-top: 0;
  padding-bottom: 0;
}
.site-header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 20px;
  background: #a284d4;
}
.site-header .brand {
  color: #ffffff;
  text-decoration: none;
}
.site-header .logo {
  width: 100px;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.site-header .brand-title { color: #ffffff; }
.site-header .brand-subtitle { color: rgba(255, 255, 255, 0.9); }
.site-header .site-nav a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
  padding: 0;
  border-radius: 0;
}
.site-header .site-nav a:hover {
  color: #eaf2ff;
  background: transparent;
}
.site-header .site-nav a.active {
  color: #ffffff;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  background: #a284d4;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
  border-top: 0;
}
.site-footer .container {
  padding-top: 0;
  padding-bottom: 0;
}
.site-footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
}
.site-footer .footer-content a {
  color: #ffffff;
  text-decoration: none;
  margin: 0;
}
.site-footer .footer-content a:hover { color: #dbeafe; }
.site-footer .site-footer-meta {
  margin-top: 10px;
  color: #ffffff;
  font-size: 14px;
}
.site-footer .site-footer-meta p { margin: 8px 0; }
.site-footer .site-footer-meta a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 840px) {
  .site-header .header-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-header .logo {
    width: 86px;
  }
  .site-header .site-nav {
    width: 100%;
    gap: 8px 12px;
  }
  .site-header .site-nav a { margin: 0; }
  .site-footer .footer-content {
    justify-content: flex-start;
  }
}