@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --font-heading: 'Outfit', sans-serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-family: var(--font-sans);
    background-color: #0b0f19;
    color: #f3f4f6;
    overflow-x: hidden;
}

/* Custom premium scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #0d1222;
}
::-webkit-scrollbar-thumb {
    background: #1e2942;
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3b82f6;
}

/* Neon Glow styling cards */
.glass-panel {
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
}

.glass-panel-hover:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glow-text-teal {
    text-shadow: 0 0 20px rgba(20, 184, 166, 0.2);
}

.glow-text-indigo {
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

/* Keyframes for premium elements */
@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.25;
        transform: scale(1.1);
    }
}

.pulsing-glow {
    position: absolute;
    width: 40rem;
    height: 40rem;
    border-radius: 9999px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(0,0,0,0) 70%);
    filter: blur(80px);
    animation: pulseGlow 12s infinite ease-in-out;
    pointer-events: none;
    z-index: 0;
}

/* GrapesJS builder styling overrides to match dark mode */
.gjs-cv-canvas {
    background-color: #121826 !important;
}

.gjs-blocks-c {
    background-color: #0f1420 !important;
    border-right: 1px solid #1f2937 !important;
}

.gjs-block {
    background-color: #1a2234 !important;
    color: #e5e7eb !important;
    border: 1px solid #2d3748 !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
}

.gjs-block:hover {
    border-color: #3b82f6 !important;
    color: #3b82f6 !important;
}

.gjs-pn-panel {
    background-color: #0f1420 !important;
    border-bottom: 1px solid #1f2937 !important;
}

.gjs-pn-btn {
    color: #9ca3af !important;
    border-radius: 4px !important;
}

.gjs-pn-btn.gjs-pn-active {
    background-color: #3b82f6 !important;
    color: #ffffff !important;
}
