/* Header-specific styles shared across pages */

.site-header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  padding-right: 3rem;
  position: relative;
}

.brand {
  font-family: 'The Seasons', serif;
  font-size: 1.5rem;
  color: #4b3240;
}

.brand a {
  color: #4b3240;
  text-decoration: none;
}

.brand-img {
  height: 30px;
  width: auto;
  display: block;
}

.nav a {
  margin-left: 1rem;
  color: #4b3240;
  text-decoration: none;
  font-weight: 600;
}

.social-link {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #4b3240;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.social-link:hover {
  opacity: 0.7;
}

@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav {
    margin-top: 0.5rem;
  }
}
