/* Property Card Fade-In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card--loading {
    opacity: 0;
}

.card--fade-in {
    animation: fadeInUp 0.4s ease-out forwards;
}

/* Stagger delays for cascade effect */
.card--delay-1 { animation-delay: 0.05s; }
.card--delay-2 { animation-delay: 0.10s; }
.card--delay-3 { animation-delay: 0.15s; }
.card--delay-4 { animation-delay: 0.20s; }
.card--delay-5 { animation-delay: 0.25s; }
.card--delay-6 { animation-delay: 0.30s; }
.card--delay-7 { animation-delay: 0.35s; }
.card--delay-8 { animation-delay: 0.40s; }
.card--delay-9 { animation-delay: 0.45s; }

/* Enhanced loading spinner */
#loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 3px solid rgba(98, 181, 75, 0.3);
    border-top-color: #62b54b; /* Hoekstra green */
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
