@font-face {
    font-family: 'Noto Sans';
    src: url('./fonts/NotoSans-VariableFont_wdth,wght.ttf') format('truetype');
    font-display: swap;
}

@theme {
    --font-sans: 'Noto Sans', sans-serif;
}


:root {
    --yellow: #00EC91;
    --yellow-dark: #00EC91;
    --dark: #1a1a18;
    --mid: #3a3a38;
    --light: #f5f5f0;
    --white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 300;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: linear-gradient(to bottom, rgba(26,26,24,0.85) 0%, rgba(26,26,24,0) 100%);
    transition: background 0.4s ease;
}
nav.scrolled {
    background: rgba(26,26,24,0.96);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-logo img {
    height: 36px;
    filter: invert(1) brightness(2);
}
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}
.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.75;
    transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--yellow); }

nav.static {
    position: static;
    background: var(--dark);
}
.nav-back {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-back:hover { color: var(--yellow); }

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("images/VauKa-Profilbild.jpg");
    background-size: cover;
    background-position: center right;
    filter: brightness(0.55);
    transform: scale(1.04);
    animation: slowzoom 18s ease-out forwards;
}
@keyframes slowzoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1.0); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            105deg,
            rgba(26,26,24,0.82) 0%,
            rgba(26,26,24,0.55) 50%,
            rgba(26,26,24,0.08) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    padding: 0 3rem;
    margin-left: 6vw;
    opacity: 0;
    animation: fadein 1s 0.4s ease forwards;
}
@keyframes fadein {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 1.2rem;
}
.hero-headline {
    font-family: 'Noto Sans', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 1.8rem;
}
.hero-headline span { color: var(--yellow); }
.hero-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
    margin-bottom: 2.8rem;
    max-width: 820px;
}
.hero-cta {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    transition: background 0.2s, transform 0.2s;
}
.hero-cta:hover {
    background: #ece500;
    transform: translateY(-2px);
}

.leistungen {
    background: var(--light);
    color: var(--dark);
    padding: 7rem 3rem;
}
.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--yellow-dark);
    margin-bottom: 0.8rem;
}
.section-headline {
    font-family: 'Noto Sans', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 3.5rem;
    max-width: 1300px;
}
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-top: 3px solid var(--yellow);
    transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.card-num {
    font-family: 'Noto Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: rgba(26,26,24,0.08);
    line-height: 1;
    margin-bottom: 1rem;
}
.card-title {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--dark);
    margin-bottom: 0.9rem;
    text-transform: uppercase;
}
.card-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--mid);
}

.kontakt {
    background: var(--dark);
    padding: 7rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.kontakt .section-label { color: var(--yellow); }
.kontakt .section-headline { color: var(--white); max-width: 100%; }
.kontakt-info {
    margin-top: 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}
.kontakt-item a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}
.kontakt-item a:hover { color: var(--yellow); }

footer {
    background: #111110;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.05em;
}
.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.footer-links a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow); }

.page-body {
    background: var(--light);
    color: var(--dark);
}
.page-wrap {
    max-width: 1300px;
    min-height: 820px;
    margin: 0 auto;
    padding: 5rem 2rem 6rem;
}
.page-wrap h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--yellow);
}
.page-wrap h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--dark);
    margin: 2.5rem 0 0.8rem;
}
.page-wrap h3,
.page-wrap h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--mid);
    margin: 1.8rem 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.page-wrap p  { font-size: 0.97rem; line-height: 1.8; color: var(--mid); margin-bottom: 1rem; }
.page-wrap a  { color: var(--dark); }
.page-wrap a:hover { color: var(--yellow-dark); }
.page-wrap ul { margin: 0.5rem 0 1rem 1.5rem; }
.page-wrap li { font-size: 0.97rem; line-height: 1.8; color: var(--mid); }
.page-wrap strong { font-weight: 700; color: var(--dark); }

@media (max-width: 860px) {
    nav { padding: 1.2rem 1.5rem; }
    .nav-links { gap: 1.5rem; }
    .hero-content { padding: 0 1.5rem; margin-left: 0; }
    .leistungen, .kontakt { padding: 5rem 1.5rem; }
    .cards { grid-template-columns: 1fr; }
    footer { padding: 1.5rem; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
    nav.static, footer { padding: 1.2rem 1.5rem; }
    .page-wrap { padding: 3rem 1.5rem 4rem; }
}
@media (max-width: 560px) {
    .nav-links { display: none; }
}