
@font-face {
  font-family: 'Lexend';
  src: url('Lexend-VariableFont_wght.woff2') format('woff2'),
       url('Lexend-VariableFont_wght.woff') format('woff'),
       url('Lexend-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Perspektiven GUARS – Styles */
:root {
  --bg: #ffe14b;
  --fg: #313335;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Lexend', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero {
  text-align: center;
  padding: 2rem 1rem 1rem;
}

.hero-svg {
  display: block;
  margin: 0 auto 0.75rem;
  height: 40vh;
  width: auto;
}

h1 {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 5rem;
  font-size: 4.5rem;
}

.content {
  max-width: 860px;
  margin: 1rem auto 4rem;
  padding: 0 1rem;
}

h2, h3 {
  line-height: 1.25;
  margin: 2rem 0 0.5rem;
}

p { margin: 0 0 1rem; }

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;  
  
}


/* ===== Footer ===== */
.site-footer {
  background: #ffffff;
  color: var(--fg);
  border-top: 1px solid rgba(49,51,53,0.2);
}

.site-footer .footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 1.25rem 1rem 1.5rem;
}

.footer-label {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-logos img {
  display: block;
  height: 54px;
  width: auto;
  max-width: 100%;
  background: #fff;
  padding: 4px 12px 4px 0 ;
}

/* On small screens, let them stack naturally via wrapping */
@media (max-width: 560px) {
  .footer-logos {
    gap: 0.75rem;
  }
  .footer-logos img {
    height: 48px;
  }
 
  h1 {
	  line-height: 3.5rem;
	  font-size:3rem;
  }
}