/* Custom styles for Markus Meyer IT-Beratung */

/* Typography enhancements */
body {
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: #1e3a8a; /* blue-900 */
}

/* Active state for navigation */
.filter-btn.active, .category-btn.active {
    background-color: #1e3a8a;
    color: white;
}

/* Blog post content styling */
.prose h2 {
    color: #1e3a8a;
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    font-weight: 600;
}

.prose p {
    margin-bottom: 1.25em;
}

.prose ul {
    margin-bottom: 1.5em;
}

.prose figure {
    margin: 2em 0;
}

/* Custom button hover effect */
.btn-hover-effect:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Custom card hover effect */
.card-hover:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1e3a8a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1e40af;
}

/* Print styles */
@media print {
    header, footer, .no-print {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
    }
}