/* Clean Minimal Styles for Aufbruch.ink */

:root {
    --primary-blue: #2563eb;
    --soft-slate: #64748b;
    --base-light: #f8fafc;
}

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Enhancements */
h1, h2, h3 {
    letter-spacing: -0.01em;
    line-height: 1.2;
}

/* Remove all animation classes */
.reveal-element {
    opacity: 1 !important;
    transform: none !important;
}

/* Clean UI Elements */
.shadow-premium {
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
}

/* Responsive fixes for German long words */
p, h1, h2 {
    hyphens: auto;
    word-wrap: break-word;
}

/* Navigation Hover */
nav a:hover {
    color: var(--primary-blue);
}

/* Image styling */
img {
    display: block;
    max-width: 100%;
    height: auto;
}