/* =====================================================
   911index – Site Styles (header + nav + content pages)
   ===================================================== */

:root{
  --header-h: 100px;
}

/* =====================================================
   Fixed Header
   ===================================================== */

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  height: var(--header-h);
  z-index: 300;

  background: var(--bg, #f5f5f7);
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 6px 0;
  align-items: center;
  text-align: center;
}

/* Ensure inner content doesn't add unexpected height */
.site-header *{ margin: 0; }

/* Logo */
.site-logo{ margin: 0; line-height: 1; }

.site-logo img{
  height: 36px;
  width: auto;
  display: block;
}

/* Optional if you still use the .page-title row anywhere */
.site-header .page-title{ justify-content: center; }

/* Subtitle */
.subtitle{
  color: #555;
  font-size: 13px;
  line-height: 1.2;
}

/* =====================================================
   Top navigation in header
   ===================================================== */

.top-nav{
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  margin-top: 6px;
  padding: 0 16px;
}

.top-nav a{
  font-size: 13px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
}

.top-nav a:hover{ text-decoration: underline; }

.top-nav a.active{ background: rgba(0,0,0,0.06); }

/* =====================================================
   Generic page wrapper (for Home/About/Contact/Privacy)
   ===================================================== */

.page{
  max-width: 1100px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 18px) 16px 48px;
}

.intro{
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  padding: 26px 28px;
}

.intro h2{
  margin: 0 0 10px 0;
  font-size: 22px;
  letter-spacing: 0.2px;
}

.intro p{
  margin: 0 0 12px 0;
  max-width: 75ch;
  line-height: 1.55;
  color: #333;
}

.cta-wrap{ margin-top: 18px; }

.cta{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  color: #111;
  background: rgba(0,0,0,0.06);
}

.cta:hover{ text-decoration: underline; }

@media (max-width: 720px){
  .intro{ padding: 18px 16px; }
  .intro h2{ font-size: 20px; }
  .intro p{ max-width: 100%; }
}
