html, body {
    scroll-behavior: smooth;
}

body {
    background-color: #F5F7FA;
    color: #1E293B;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #1D4ED8;
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.2);
}

/* =========================================
   EXTRACTED STYLES
   ========================================= */

/* Animation from blog.html */
.animate-in {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Policy Page Styles (formerly .prose in polityka-prywatnosci.html) */
.prose-policy h2 {
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.875rem;
}
.prose-policy p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.prose-policy ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
    color: #4a5568;
}
.prose-policy li {
    margin-bottom: 0.5rem;
}

/* Standard Blog Styles (formerly .prose in standard blog posts) */
.prose-blog [id] {
    scroll-margin-top: 120px;
}
.prose-blog p {
    margin-bottom: 1.5em;
    line-height: 1.8;
    color: #4a5568;
    font-size: 1.125rem;
}
.prose-blog h3 {
    font-family: 'Playfair Display', serif;
    margin-top: 3em;
    margin-bottom: 1em;
    font-size: 1.75rem;
    color: #1a1a1a;
    line-height: 1.3;
    font-weight: 600;
}
.prose-blog ul {
    list-style-type: disc;
    padding-left: 1.5em;
    margin-bottom: 2em;
    color: #4a5568;
    padding-right: 1.5em;
}
.prose-blog li {
    margin-bottom: 0.75em;
}
.prose-blog strong {
    color: #1a1a1a;
    font-weight: 600;
}
.highlight-box {
    background: #f8fafc;
    border-left: 4px solid #748c7a;
    padding: 2rem;
    border-radius: 0 0.5rem 0.5rem 0;
    margin: 2.5rem 0;
}

/* Premium Blog Styles (formerly .prose in ze-specjalisty...) */
.prose-premium [id] {
    scroll-margin-top: 120px;
}
.prose-premium p {
    margin-bottom: 2em;
    line-height: 1.85;
    color: #334155;
    font-size: 1.125rem;
}
.prose-premium h3 {
    font-family: 'Playfair Display', serif;
    margin-top: 3em;
    margin-bottom: 1.2em;
    font-size: 2.25rem;
    color: #0F172A;
    line-height: 1.3;
    font-weight: 600;
}
.prose-premium ul,
.prose-premium ol {
    list-style-type: none;
    padding-left: 1.5em;
    margin-bottom: 2.5em;
    color: #334155;
}
.prose-premium li {
    margin-bottom: 1em;
    position: relative;
}
.prose-premium ul li::before {
    content: "•";
    color: #C7A462;
    font-weight: bold;
    position: absolute;
    left: -1.2em;
}
.prose-premium strong {
    color: #0F172A;
    font-weight: 600;
}
.premium-quote {
    position: relative;
    background: #F8FAFC;
    border-left: 2px solid #C7A462;
    padding: 3rem 2.5rem;
    margin: 4rem 0;
    border-radius: 0 1rem 1rem 0;
}
.premium-quote::after {
    content: "“";
    position: absolute;
    top: -0.2em;
    left: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: #C7A462;
    opacity: 0.15;
    line-height: 1;
}

/* Blog Filters Optimization */
@media (max-width: 768px) {
    .category-btn:not([data-category="Menedżer"]):not([data-category="Pracownik"]) {
        display: none;
    }
}

.anim-delay-100 { animation-delay: 0.1s; }
.anim-delay-300 { animation-delay: 0.3s; }

