/* Empty State Component - Professional UI */

.empty-state-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.empty-state-compact {
    min-height: 300px;
    padding: 40px 20px;
}

.empty-state-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.empty-state-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #0c3d34 0%, #0a2f28 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(12, 61, 52, 0.2);
    animation: emptyStateIconPulse 2s ease-in-out infinite;
}

.empty-state-compact .empty-state-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.empty-state-icon i {
    font-size: 48px;
    color: #ffffff;
}

.empty-state-compact .empty-state-icon i {
    font-size: 32px;
}

@keyframes emptyStateIconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(12, 61, 52, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(12, 61, 52, 0.3);
    }
}

.empty-state-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    font-family: var(--luxury-heading-font, 'Poppins', sans-serif);
    letter-spacing: -0.02em;
}

.empty-state-compact .empty-state-title {
    font-size: 22px;
    margin-bottom: 12px;
}

.empty-state-description {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
}

.empty-state-compact .empty-state-description {
    font-size: 14px;
    margin-bottom: 0;
}

.empty-state-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.empty-state-actions .btn {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 2px solid;
}

.empty-state-actions .btn-primary {
    background: #0c3d34;
    color: white;
    border-color: #0c3d34;
}

.empty-state-actions .btn-primary:hover {
    background: white;
    color: #0c3d34;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(12, 61, 52, 0.3);
}

.empty-state-actions .btn-outline-primary {
    background: white;
    color: #0c3d34;
    border-color: #0c3d34;
}

.empty-state-actions .btn-outline-primary:hover {
    background: #0c3d34;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(12, 61, 52, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .empty-state-container {
        min-height: 350px;
        padding: 40px 20px;
    }
    
    .empty-state-compact {
        min-height: 250px;
        padding: 30px 15px;
    }
    
    .empty-state-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 24px;
    }
    
    .empty-state-compact .empty-state-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 16px;
    }
    
    .empty-state-icon i {
        font-size: 40px;
    }
    
    .empty-state-compact .empty-state-icon i {
        font-size: 28px;
    }
    
    .empty-state-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .empty-state-compact .empty-state-title {
        font-size: 20px;
    }
    
    .empty-state-description {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .empty-state-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .empty-state-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .empty-state-container {
        min-height: 300px;
        padding: 30px 15px;
        border-radius: 12px;
    }
    
    .empty-state-title {
        font-size: 20px;
    }
    
    .empty-state-description {
        font-size: 13px;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    .empty-state-container {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    }
    
    .empty-state-title {
        color: #ffffff;
    }
    
    .empty-state-description {
        color: #b0b0b0;
    }
}

/* Animation for entrance */
.empty-state-container {
    animation: emptyStateFadeIn 0.5s ease-out;
}

@keyframes emptyStateFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Alternative icon styles */
.empty-state-icon.icon-search {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.empty-state-icon.icon-star {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.empty-state-icon.icon-building {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.empty-state-icon.icon-warning {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

/* Hover effect for the entire container */
.empty-state-container:hover .empty-state-icon {
    transform: scale(1.05);
}
