/* -----------------------------------
   SPRYLIFE — HEADER & FOOTER (Light & Elegant)
   Matches style.css variables
----------------------------------- */

:root {
  --header-bg: #ffffff;
  --footer-bg: #ffffff;   
  --nav-text: #1994d1;    /* Brand Blue Links */
  --nav-hover: #71b04c;   /* Green Hover */
  --text-dark: #334155;
  --border-light: #e2e8f0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #F8FAFC;
  color: #334155;
  line-height: 1.6;
  scroll-behavior: smooth;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER */
.site-header {
  background: var(--header-bg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: #000;
}

.logo-mark img {
  height: 70px;
  width: auto;
}

.logo-mark img:hover {
  transform: scale(1.05);
}

/* NAVIGATION (Lighter & Cleaner) */
.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--nav-text);
  font-weight: 500; /* CHANGED: Lighter weight (was 600) */
  font-size: 1rem;
  padding: 0.5rem 0;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  color: var(--nav-hover); 
  border-bottom-color: var(--nav-hover);
}

.nav-link.active {
  color: var(--nav-text);
  border-bottom-color: var(--nav-text);
}


/* FOOTER (Clean White) */
.site-footer {
  background: var(--footer-bg);
  color: var(--text-dark);
  padding: 4rem 0 3rem;
  border-top: 1px solid var(--border-light);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.brand-small {
  color: #1994d1;
  font-weight: 600; /* CHANGED: Lighter (was 700) */
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.footer-note {
  font-size: 0.95rem;
  opacity: 0.8;
  max-width: 300px;
  font-weight: 400; /* Regular weight */
}

.footer-right {
  text-align: right;
}

.footer-contact {
  margin-bottom: 1rem;
  color: #0f172a;
  font-weight: 500; /* CHANGED: Lighter (was 600) */
  font-size: 1.05rem;
}

.footer-nav a {
  color: #64748b;
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 400; /* CHANGED: Regular weight for links */
  transition: all 0.2s ease;
}

.footer-nav a:hover {
  color: #1994d1;
  text-decoration: underline;
}



