/* LeverageFlows - Core CSS */

:root {
    --primary-color: #0f172a;
    /* Dark Blue / Black */
    --secondary-color: #1e293b;
    --accent-color: #3b82f6;
    /* Soft Blue */
    --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    /* Neon/Purple Gradient */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --bg-color: #020617;
    /* Deep Background */
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

[data-theme="light"] {
    --primary-color: #f1f5f9;
    --secondary-color: #e2e8f0;
    --accent-color: #2563eb;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --bg-color: #ffffff;
    --glass-bg: rgba(241, 245, 249, 0.8);
    --glass-border: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Prevent image downloading/dragging */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
    /* Disables all interaction */
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/* Specific protection for brand/logo containers */
.navbar-brand,
.footer-logo-container {
    position: relative;
    display: inline-block;
}

/* If some images need interaction, we can override with a class */
img.allow-interaction {
    pointer-events: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.accent-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-custom {
    background: var(--accent-gradient);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
    color: white;
}

.btn-custom:active {
    transform: translateY(-1px) scale(0.98);
}

.section-padding {
    padding: 100px 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

.badge {
    padding: 6px 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Glassmorphism Overlays */
.glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.8));
    z-index: 1;
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}