/* =========================================
   DIV-IMMOBILIEN.DE — base.css
   ========================================= */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #F8FAFC;
    color: #1E293B;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: #0F172A;
    margin-top: 0;
}

a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover { color: #F5E6BE; }

img { max-width: 100%; display: block; }

/* Prose styles */
.prose h2 {
    color: #0F172A;
    font-family: 'Playfair Display', serif;
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
}
.prose h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.prose p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.125rem;
}
.prose ul { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.prose li { margin-bottom: 0.5rem; }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up { animation: fadeInUp 0.8s ease-out forwards; }

.fade-enter { opacity: 0; transform: translateY(20px); transition: all 0.8s ease-out; }
.fade-visible { opacity: 1; transform: translateY(0); }
