/* ---------------------------------------------
   ABDA Website - Header Styles (Desktop + Mobile)
   --------------------------------------------- */

.site-header {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: var(--space-6) var(--space-4) var(--space-5);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .logo {
  display: block;
  margin: 0 auto var(--space-3);
  max-width: 180px;
  height: auto;
}

.site-title {
  font: 800 var(--text-2xl)/1.2 Montserrat, sans-serif;
  margin: 0;
}

.site-tagline {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
}

.site-tagline .relax {
  font-family: Pacifico, cursive;
  font-size: calc(var(--text-lg) + 2px);
  color: var(--red);
}

.header-accent {
  height: 4px;
  background: var(--red);
}

/* ---------------------------------------------
   Mobile Tweaks
   --------------------------------------------- */
  .site-header {
    position: static; /* prevents overlap on phones */
    padding: var(--space-5) var(--space-4) var(--space-4);


  .site-header .logo {
    max-width: 140px;
    margin-bottom: var(--space-2);
  }

  .site-title {
    font-size: 24px;
  }

  .site-tagline {
    font-size: 14px;
  }

  .site-tagline .relax {
    font-size: 16px;
  }
}
