/* Custom CSS for Vash Studios Theme */

/* Icon Fonts */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* Custom icon classes */
.icon-bot::before { content: "🤖"; }
.icon-check::before { content: "✓"; }
.icon-check-circle::before { content: "✓"; }
.icon-search::before { content: "🔍"; }
.icon-palette::before { content: "🎨"; }
.icon-target::before { content: "🎯"; }
.icon-trending-up::before { content: "📈"; }
.icon-clock::before { content: "⏰"; }
.icon-currency-dollar::before { content: "$"; }
.icon-linkedin::before { content: "in"; }
.icon-twitter::before { content: "𝕏"; }
.icon-facebook::before { content: "f"; }
.icon-mail::before { content: "✉"; }
.icon-phone::before { content: "📞"; }
.icon-map-pin::before { content: "📍"; }

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #28c76f;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1e8449;
}

/* Custom focus styles */
.focus-ring:focus {
    outline: 2px solid #28c76f;
    outline-offset: 2px;
}

/* Custom button hover effects */
.btn-hover-effect {
    position: relative;
    overflow: hidden;
}

.btn-hover-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-hover-effect:hover::before {
    left: 100%;
}

/* Custom card hover effects */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Custom gradient text */
.gradient-text {
    background: linear-gradient(135deg, #28c76f, #1e8449);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom loading animation */
.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #28c76f;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom form styles */
.custom-input {
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-input:focus {
    border-color: #28c76f;
    box-shadow: 0 0 0 3px rgba(40, 199, 111, 0.1);
    outline: none;
}

/* Custom modal styles */
.modal-overlay {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

/* Custom tooltip styles */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: white;
    padding: 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.tooltip:hover::after {
    opacity: 1;
}

/* Responsive utilities */
@media (max-width: 768px) {
    .mobile-hidden {
        display: none;
    }
    
    .mobile-full {
        width: 100%;
    }
}

@media (min-width: 769px) {
    .desktop-hidden {
        display: none;
    }
} 