/* ══ Variables ═══════════════════════════════════════════ */
:root {
    /* Brand Colors – Candidate=BLUE, Company/Job=RED, Match=PURPLE */
    --purple: #b16ea9;
    --purple-light: #d4a5cf;
    --purple-dark: #8a5282;
    --red: #d95778;
    --red-light: #e88a9e;
    --blue: #5785d9;
    --blue-light: #8baae6;

    /* Warm palette */
    --bg-cream: #FAF7F2;
    --bg-warm: #F3EFE9;
    --bg-white: #FFFFFF;
    --bg-card: #FFFFFF;

    /* Warm text */
    --text-dark: #2D2B28;
    --text-body: #5A5651;
    --text-muted: #8A857F;
    --text-faint: #B5B0AA;

    /* Borders */
    --border-warm: #E8E4DF;
    --border-light: #EDEAE5;
}

/* ══ Reset & Base ════════════════════════════════════════ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Fira Sans', Arial, sans-serif;
    color: var(--text-dark);
    background: var(--bg-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ══ NAVIGATION ══════════════════════════════════════════ */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}
.site-nav.scrolled {
    padding: 0.6rem 2rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.nav-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}
.logo {
    display: flex; align-items: center; gap: 0.5rem;
    text-decoration: none; color: var(--text-dark);
}
.logo-img { height: 32px; width: auto; }
.alpha-badge {
    font-family: 'Fira Sans', Arial, sans-serif;
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--purple);
    background: rgba(177,110,169,0.1); padding: 0.15rem 0.45rem;
    border-radius: 4px; line-height: 1;
}
.nav-links {
    display: flex; gap: 2rem; align-items: center; list-style: none;
}
.nav-links a {
    color: var(--text-body); text-decoration: none;
    font-size: 0.875rem; font-weight: 600; transition: color 0.2s;
}
.nav-links a:hover { color: var(--purple); }
.nav-cta {
    background: var(--text-dark); color: #fff !important;
    padding: 0.5rem 1.25rem; border-radius: 8px;
    font-weight: 700 !important; transition: all 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; }

/* ══ BUTTONS ═════════════════════════════════════════════ */
.btn-primary {
    display: inline-block;
    padding: 0.85rem 1.5rem;
    background: var(--text-dark);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Fira Sans', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ══ SECTIONS ════════════════════════════════════════════ */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1000px; margin: 0 auto; }
.section-label {
    font-family: 'Fira Sans', Arial, sans-serif;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--purple); margin-bottom: 0.75rem;
}
.section-title {
    font-family: 'Libre Baskerville', Georgia, sans-serif;
    font-size: 2.25rem; font-weight: 700;
    line-height: 1.25; margin-bottom: 1rem;
    max-width: 650px; color: var(--text-dark);
}
.section-subtitle {
    font-size: 1.05rem; color: var(--text-body);
    line-height: 1.75; max-width: 580px; margin-bottom: 2.5rem;
}

/* ══ FOOTER ══════════════════════════════════════════════ */
.site-footer {
    background: var(--text-dark);
    padding: 2rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
    max-width: 1000px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: flex-start;
}
.footer-left { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-logo {
    font-family: 'Libre Baskerville', Georgia, sans-serif; font-weight: 700;
    font-size: 1.1rem; color: #fff;
}
.footer-logo span { color: var(--purple-light); }
.site-footer .footer-copyright { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.site-footer .footer-imprint {
    font-size: 0.68rem; color: rgba(255,255,255,0.2);
    line-height: 1.5; max-width: 300px;
}
.footer-links { display: flex; gap: 1.25rem; }
.footer-links a {
    font-size: 0.75rem; color: rgba(255,255,255,0.3);
    text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

/* ══ ANIMATIONS ══════════════════════════════════════════ */
.fade-up {
    opacity: 0; transform: translateY(24px);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══ RESPONSIVE ══════════════════════════════════════════ */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-left { align-items: center; }
}
