@font-face {
  font-family: 'GrueneType';
  src: 
    url('/assets/fonts/GrueneType-BlackCondensedItalic.woff') format('woff'),
    font-weight: normal;
    font-style: normal;
    /*font-display: swap;  /* Improves loading: shows fallback first, swaps when ready */
}

@font-face {
    font-family:'PTSans';
    src:
      url('/assets/fonts/PTS55F.woff') format('woff'),
      font-weight: normal;
      font-style: normal;
     /* font-display: swap;  /* Improves loading: shows fallback first, swaps when ready */
}

@font-face {
    font-family:'PTSansItalic';
    src:
      url('/assets/fonts/PTS56F.woff') format('woff'),
      font-weight: normal;
      font-style: italic;
      /*font-display: swap;   Improves loading: shows fallback first, swaps when ready */
}

@font-face {
    font-family:'PTSansBold';
    src:
      url('/assets/fonts/PTS75F.woff') format('woff'),
      font-weight: normal;
      font-style: bold;
      /*font-display: swap;   Improves loading: shows fallback first, swaps when ready */
}

@font-face {
    font-family:'PTSansBoldItalic';
    src:
      url('/assets/fonts/PTS76F.woff') format('woff'),
      font-weight: normal;
      font-style: BoldItalic;
      /*font-display: swap;   Improves loading: shows fallback first, swaps when ready */
}




:root {
    --green-dark: #005437;
    --green: #0a7f3f;
    --green-bright: #95c11f;
    --green-light: #eaf4d3;
    --sun-yellow: #ffd500;
    --text-dark: #17382d;
}

html, body {
    font-family:PTSans, sans-serif;  /* Fallback to system font */
    color: var(--text-dark);
    background: #f7f9f2;
}
h1, h2, h3, h4, h5, h6{
    font-family:GrueneType, sans-serif;  /* Fallback to system font */
    font-weight: 100;

}

.topbar {
    background: var(--green-dark);
    color: #fff;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.topbar a:hover,
.topbar a:focus {
    color: var(--sun-yellow);
}

.main-navbar {
    background: #fff;
    border-bottom: 6px solid var(--green-bright);
    box-shadow: 0 0.4rem 1.4rem rgba(0, 84, 55, 0.12);
}

.navbar-brand {
    min-width: 0;
}

.logo-mark {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    border-radius: 50%;
    background: radial-gradient(circle at center, var(--sun-yellow) 0 30%, var(--green-bright) 31% 100%);
    border: 4px solid var(--green-dark);
    display: grid;
    place-items: center;
    color: var(--green-dark);
    font-size: 1.6rem;
    font-weight: 900;
}

.logo-sun {
    transform: translateY(-1px);
}

.brand-title {
    font-family:GrueneType, sans-serif;  /* Fallback to system font */
    font-weight: 100;
    display: block;
    color: var(--green-dark);
    font-size: clamp(1.15rem, 2vw, 1.65rem);
    line-height: 1.05;
}

.brand-subtitle {
    font-family:GrueneType, sans-serif;  /* Fallback to system font */
    font-weight: 100;
    display: block;
    color: var(--green);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
}

.main-navbar .nav-link {
    color: var(--green-dark);
    font-weight: 800;
    padding-inline: 0.85rem !important;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link:focus,
.main-navbar .nav-link.active {
    color: var(--green);
}

.btn-green {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
    font-weight: 800;
    border-radius: 999px;
    padding: 0.55rem 1.2rem;
}

.btn-green:hover,
.btn-green:focus {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.hero-header {
    background: linear-gradient(135deg, var(--green-dark), var(--green) 55%, var(--green-bright));
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.hero-panel {
    max-width: 760px;
    color: #fff;
    background: rgba(0, 84, 55, 0.72);
    border-left: 12px solid var(--sun-yellow);
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: 0 1.75rem 1.75rem 0;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.18);
}

.hero-panel h1 {
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 4.25rem);
    line-height: 1;
}

.eyebrow {
    color: var(--green);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-panel .eyebrow {
    color: var(--sun-yellow);
}

.test-body {
    background: #fff;
    border-top: 8px solid var(--green-bright);
}

.card h3 {
    color: var(--green-dark);
    font-weight: 900;
}

.site-footer {
    background: var(--green-dark);
    color: #fff;
    border-top: 10px solid var(--green-bright);
}

.footer-heading {
    color: var(--sun-yellow);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--sun-yellow);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
}



/* Logo Container */
.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* SVG Sonnenblume */
.logo-img {
    width: 80px;
    height: 80px;
    display: block;
    object-fit: contain;
}

/* Tablet */
@media (max-width: 992px) {
    .logo-img {
        width: 65px;
        height: 65px;
    }
}

/* Smartphone */
@media (max-width: 576px) {
    .logo-img {
        width: 50px;
        height: 50px;
    }

    .brand-title {
        font-size: 0.95rem;
    }

    .brand-subtitle {
        font-size: 0.8rem;
    }
}