/* MOED Academy - shared styles */
body { font-family: 'DM Sans', sans-serif; }
.serif { font-family: 'Playfair Display', serif; }

.card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 1px 3px rgba(64, 28, 50, 0.08);
}
.card-elevated { box-shadow: 0 4px 20px rgba(64, 28, 50, 0.10); }

.prose-moed p { margin-bottom: 1em; line-height: 1.7; color: #3d2535; }
.prose-moed p:last-child { margin-bottom: 0; }
.prose-moed strong { font-weight: 600; color: #2a1722; }
.prose-moed em { font-style: italic; }
.prose-moed ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1em; }
.prose-moed ul li { margin-bottom: 0.4em; line-height: 1.6; color: #3d2535; }
.prose-moed ol { list-style: decimal; padding-left: 1.25rem; margin-bottom: 1em; }
.prose-moed ol li { margin-bottom: 0.4em; line-height: 1.6; color: #3d2535; }

.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

@keyframes slideUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.animate-slide-up { animation: slideUp 0.4s ease-out; }

.opdracht-quote {
    border-left: 3px solid currentColor;
    padding-left: 1rem;
    font-style: italic;
    color: #5b3848;
}

/* Subtle decoratie */
.dot-pattern {
    background-image: radial-gradient(rgba(255,255,255,0.25) 1px, transparent 1px);
    background-size: 22px 22px;
}

/* Desktop sidebar */
@media (min-width: 1024px) {
    .desktop-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: 260px;
        background: #2a1722;
        display: flex;
        flex-direction: column;
        padding: 2rem 0;
        z-index: 40;
        overflow-y: auto;
    }
    .desktop-sidebar .brand {
        padding: 0 1.5rem 1.5rem;
        color: white;
    }
    .desktop-sidebar .nav-item {
        color: #c9a8b6;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.7rem 1.5rem;
        transition: all 0.2s;
        border-left: 3px solid transparent;
        font-size: 0.95rem;
    }
    .desktop-sidebar .nav-item:hover {
        color: white;
        background: rgba(255,255,255,0.05);
    }
    .desktop-sidebar .nav-item.active {
        color: white;
        background: rgba(255,255,255,0.08);
        border-left-color: #d97757;
    }
    .desktop-sidebar .nav-section {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #8a6976;
        padding: 1rem 1.5rem 0.5rem;
    }
    .desktop-main { margin-left: 260px; }
    .desktop-main .page-content { max-width: 760px; margin: 0 auto; }
}

/* Bottom nav (mobile) */
.bottom-nav-item.active { color: #2a1722; }
.bottom-nav-item.active .nav-dot { opacity: 1; }
.nav-dot { opacity: 0; transition: opacity 0.2s; }
