/**
 * Strive Hunt - Candidate Theme
 * Modern gradient blue-purple theme for candidate-facing pages
 * Version: 2.0
 */

@import url('variables.css');

:root {
    /* Candidate Theme Override */
    --theme-primary: var(--color-primary-blue);
    --theme-secondary: var(--color-primary-purple);
    --theme-gradient: var(--color-primary-gradient);
    --theme-gradient-hover: linear-gradient(135deg, #1d4ed8, #7e22ce);
    --theme-bg: var(--bg-gradient-light);
}

/* Gradient text for candidate theme */
.gradient-text,
.logo-text,
h1 span.highlight {
    background: var(--theme-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Primary buttons with gradient */
.btn-primary,
.btn-submit,
.btn-search {
    background: var(--theme-gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-submit:hover,
.btn-search:hover {
    background: var(--theme-gradient-hover);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

/* Logo icon with gradient */
.logo-icon {
    background: var(--theme-gradient);
}

/* Links and interactive elements */
a:not(.btn) {
    color: var(--theme-primary);
}

a:not(.btn):hover {
    color: var(--theme-secondary);
}

/* Form focus states */
.form-input:focus,
input:focus {
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* CTA sections with gradient */
.cta-card,
.gradient-bg {
    background: var(--theme-gradient);
}
