/* ===============================
   Header + Branding Styles (Sticky & Refined)
================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin: 0;
  width: 100%;
}

/* Flex container for header content */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Branding / logo section */
.brand {
  display: flex;
  flex-direction: column;
}

.brand h1 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #2a7a2e;
}

.tagline {
  color: #666;
  font-size: 0.9rem;
  margin-top: 2px;
}

/* Contact section */
.contact-info {
  text-align: right;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

.contact-info a {
  color: #3b9a40;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.contact-info a:hover {
  color: #2a7a2e;
  text-shadow: 0 0 4px rgba(42, 122, 46, 0.25);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 12px 16px;
  }

  .contact-info {
    text-align: center;
  }

  .brand h1 {
    font-size: 1.4rem;
  }
}
