/* 
 * onlionit 2026 - Global Typography
 * Font: Inter (Modern Tech Sans-Serif)
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --onlion-black: #231F20;
  --onlion-blue: #5B9BD5;
  --onlion-dark-gray: #A7A9AC;
  --onlion-light-gray: #D1D3D4;
}

html, body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
    font-size: 16px;
    line-height: 1.6;
    color: var(--onlion-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Headlines */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
    color: var(--onlion-black);
    line-height: 1.2;
    margin-top: 0;
    letter-spacing: -0.02em; /* Moderner Tech-Look: leicht engerer Zeichenabstand */
}

h1 { font-size: 3.5rem; margin-bottom: 2rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.8rem; margin-bottom: 1.25rem; }
h4 { font-size: 1.4rem; margin-bottom: 1rem; }

/* Fließtext */
p {
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #4a4a4a; /* Etwas softeres Schwarz für längeres Lesen */
}

/* Links */
a {
    color: var(--onlion-blue);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: #00AEEF; /* Akzent-Hellblau aus dem CI */
}

/* Formularelemente & Buttons */
button, input, select, textarea {
    font-family: 'Inter', sans-serif !important;
}

/* Listen */
ul, ol {
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Text-Akzente */
strong, b {
    font-weight: 600;
}

.text-muted {
    color: var(--onlion-dark-gray);
}

/* Responsive Font Sizes */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    body { font-size: 15px; }
}
