/* Design Variablen */

:root {
    --brand-yellow: #FFD200;
    --brand-yellow-soft: rgba(255, 210, 0, 0.1);
    --text-dark: #1a1a1c;
    --text-muted: #4a4a4e;
    --bg-light: #ffffff;
    --transition-main: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Plus Jakarta Sans – Local Font */

@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('/fonts/plus-jakarta-sans-v12-latin-300.woff2') format('woff2');
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/plus-jakarta-sans-v12-latin-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/plus-jakarta-sans-v12-latin-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/plus-jakarta-sans-v12-latin-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/plus-jakarta-sans-v12-latin-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/fonts/plus-jakarta-sans-v12-latin-800.woff2') format('woff2');
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/plus-jakarta-sans-v12-latin-italic.woff2') format('woff2');
}

/* Global Font Setup */

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typografie */

h1, h2 {
    font-weight: 500;
}

/* Menü – Icon-Hintergrund und Hover (altes .menu-link-System, Fallback) */

.menu-icon-box {
    background-color: transparent;
    transition: background-color 0.2s ease;
}

.menu-icon-box svg {
    color: #1a1a1c;
    stroke: #1a1a1c;
    transition: color 0.25s ease, stroke 0.25s ease;
}

.menu-link:hover .menu-icon-box {
    background-color: #f3f4f6;
}

.menu-link:hover .menu-icon-box svg {
    color: #1a1a1c;
    stroke: #1a1a1c;
}

.menu-link.active .menu-icon-box {
    background-color: var(--brand-yellow);
}

/* Feature-Boxen */

.feature-icon svg {
    color: #1a1a1c;
    stroke: #1a1a1c;
    transition: color 0.25s ease, stroke 0.25s ease;
}

.feature-box:hover .feature-icon svg {
    color: var(--brand-yellow);
    stroke: var(--brand-yellow);
}

/* Quick-Links */

.quick-link-icon-box svg {
    color: #b1b1b4;
    stroke: #b1b1b4;
}

.quick-link-item:hover .quick-link-icon-box svg {
    color: var(--brand-yellow);
    stroke: var(--brand-yellow);
    transition: color 0.25s ease, stroke 0.25s ease;
}

/* Karten-Hover */

.card-modern:hover .icon-accent svg {
    stroke: var(--brand-yellow);
    color: var(--brand-yellow);
}

/* Hilfklassen */

.check-icon {
    background-color: #f3f4f6;
    color: white;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 14px;
}
