/* Compscape Futuristic Styles - Blue + Green Theme */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600&display=swap');

body {
    font-family: 'Inter', system_ui, sans-serif;
}

h1, h2, h3, .neon-text {
    font-family: 'Space Grotesk', sans-serif;
}

.glass {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 191, 255, 0.18);
}

.neon-text {
    text-shadow: 
        0 0 10px #00bfff,
        0 0 20px #00bfff,
        0 0 40px #00ff9f;
}

.tab-active {
    color: #00ff9f;
    border-bottom: 3px solid #00ff9f;
}

input, textarea {
    transition: all 0.2s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #00ff9f;
    box-shadow: 0 0 0 4px rgba(0, 255, 159, 0.15);
}

/* Smooth hover effects */
button, .service-card, .shop-card, .portfolio-card, .order-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button:hover {
    transform: translateY(-2px);
}

/* Cart count badge */
#cart-count {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Mobile improvements */
@media (max-width: 768px) {
    .text-6xl {
        font-size: 2.75rem;
        line-height: 1.1;
    }
}