/* @font-face Definitionen für statische WOFF2 Dateien (Lokal in assets/fonts/) */

/* Light (300) - Für feinen Text */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/inter-v20-latin-300.woff2') format('woff2');
}

/* Regular (400) - Standard Text */
/* HINWEIS: Prüfen Sie, ob die Datei 'regular' oder '400' im Namen hat */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/inter-v20-latin-regular.woff2') format('woff2');
}

/* SemiBold (600) - Für Zwischenüberschriften */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/inter-v20-latin-600.woff2') format('woff2');
}

/* Bold (700) - Für Hauptüberschriften */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/inter-v20-latin-700.woff2') format('woff2');
}

/* Globale Styles */
body {
    background-color: #0f0f10;
    color: #f4f4f5;
    /* Inter als primäre Schriftart, Fallback auf System-Fonts */
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Glassmorphism Effekt für Karten */
.glass-panel {
    background: rgba(39, 39, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

html { scroll-behavior: smooth; }
details summary { list-style: none; }
details summary::-webkit-details-marker { display: none; }

/* TYPOGRAPHIE FÜR BLOG & PROJEKTE */

article .content h2 {
    font-size: 1.875rem; /* 30px */
    font-weight: 700;
    color: white;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

article .content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

article .content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #d4d4d8; /* Helles Grau */
}

article .content blockquote {
    border-left: 4px solid #C5A059; /* Brand Color */
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #a1a1aa;
}

article .content cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-style: normal;
    color: #C5A059;
}

article .content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem; /* Abgerundete Ecken */
    margin: 2rem 0;
    border: 1px solid #27272a;
}

article .content a {
    color: #C5A059;
    text-decoration: underline;
    text-underline-offset: 4px;
}

article .content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: #d4d4d8;
}