html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Lora', serif;
    background-color: #FAF9F6;
    color: #1E293B;
}
h1, h2, h3, h4, h5, h6, .font-display {
    font-family: 'Playfair Display', serif;
}
.font-ui {
    font-family: 'Montserrat', sans-serif;
}
.hero-bg {
    /* WSTAW TUTAJ ZDJĘCIE OBRAZUJĄCE TŁO HERO - nadpisanie domyślnego w kodzie HTML */
    background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)), url('../images/prawnik-1.jpg');
    background-size: cover;
    background-position: center;
}
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.1);
}
.btn-primary {
    transition: background-color 0.2s ease;
}
.btn-primary:hover {
    background-color: #9A7B4F;
}

/* Custom Input Styling for Bottom Border Only */
.form-input-minimal {
    border: none;
    border-bottom: 1px solid #64748B; /* text-muted */
    border-radius: 0;
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
    box-shadow: none !important;
    transition: border-color 0.2s ease-in-out;
}
.form-input-minimal:focus {
    border-bottom-color: #B8935F; /* primary */
    outline: none;
    box-shadow: none !important;
}
.form-input-error {
    border-bottom-color: #ef4444 !important; /* red-500 */
}

/* Base styles for animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, visibility;
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
    visibility: visible;
}
