/**
 * SIMDPRD Modern Admin Styles
 * Enhancing UI components with premium interactions and animations.
 */

:root {
    --transition-premium: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-premium-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Icon Stroke Standardization */
[class^="ti-"], [class*=" ti-"] {
    stroke-width: 1.5;
    transition: var(--transition-premium);
}

/* Premium Button Enhancements */
.btn-premium {
    transition: var(--transition-premium) !important;
    position: relative;
    overflow: hidden;
}

.btn-premium:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-premium-hover) !important;
}

.btn-premium:active {
    transform: translateY(0) scale(0.98);
}

/* Icon Animations */
.icon-hover-rotate:hover i,
.btn-premium:hover .icon-hover-rotate i {
    transform: rotate(45deg);
}

.icon-hover-bounce:hover i,
.btn-premium:hover .icon-hover-bounce i {
    animation: ti-bounce 0.5s ease infinite alternate;
}

@keyframes ti-bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-3px); }
}

/* Icon-only Button Modernization */
.btn-icon-modern {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 0;
    transition: var(--transition-premium);
    background: rgba(var(--bs-primary-rgb), 0.05);
    border: 1px solid rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
}

.btn-icon-modern:hover {
    background: var(--bs-primary);
    color: #fff;
    transform: rotate(8deg) scale(1.1);
}

/* Sidebar Link Active States */
.sidebar-link.active i {
    filter: drop-shadow(0 0 5px rgba(var(--bs-primary-rgb), 0.5));
}

.sidebar-link i {
    font-size: 1.25rem;
}

/* Text Gradient for Premium Feel */
.text-gradient {
    background: linear-gradient(135deg, var(--bs-primary), #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
