/* GRINO Custom Styles */
.lilac-gradient {
    background: linear-gradient(135deg, #f5e6ff 0%, #C8A2C8 50%, #9c7aa1 100%);
}
.mobile-menu {
    transition: all 0.3s ease-in-out;
}
.property-card:hover, .feature-card:hover { /* Apply hover to feature cards too */
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(200, 162, 200, 0.3);
}

/* Loading spinner for image uploads */
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #C8A2C8;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error message styling */
.error-message {
    color: #b91c1c;
    background: #fee2e2;
    border: 1px solid #fca5a5;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    margin-top: 0.5rem; /* Added margin-top for better spacing */
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Success message styling */
.success-message {
    color: #166534;
    background: #bbf7d0;
    border: 1px solid #4ade80;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Hero section fade-in animation */
@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;
    opacity: 0; /* Ensure initial state is hidden before animation */
}

.delay-200 {
    animation-delay: 0.2s;
}
