/* ===================================================
   BETTERJOBS THEME - LIGHT COLOR SCHEME
   Modern | Clean | Professional | Accessible
   =================================================== */

:root {
  /* Light Color Palette */
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --secondary: #7c3aed;
  --accent: #f59e0b;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================================
   RESET & BASE
   =================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--gray-800);
}

/* ===================================================
   LAYOUT UTILITIES
   =================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.bj-main-content {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

/* ===================================================
   HEADER LIGHT THEME - EXTENDS FROM header-working.css
   =================================================== */

.bj-header {
  background: linear-gradient(135deg, var(--white) 0%, rgba(248, 250, 252, 0.5) 100%) !important;
  border-bottom: 2px solid rgba(37, 99, 235, 0.1) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05) !important;
}

.bj-logo-brand {
  color: var(--gray-900) !important;
}

.bj-menu-link {
  color: var(--primary) !important;
}

.bj-menu-link:hover,
.bj-menu-item.bj-active > .bj-menu-link {
  color: var(--primary-dark) !important;
  background: rgba(37, 99, 235, 0.08) !important;
  border-color: rgba(37, 99, 235, 0.25) !important;
}

.bj-sub-menu {
  background: var(--white) !important;
  border: 1px solid var(--gray-200) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
}

.bj-sub-menu .bj-menu-link {
  color: var(--gray-600) !important;
}

.bj-sub-menu .bj-menu-link:hover {
  background: rgba(37, 99, 235, 0.1) !important;
  color: var(--primary) !important;
}

.bj-btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3) !important;
}

.bj-btn-primary:hover {
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4) !important;
}

.bj-user-dropdown {
  background: var(--white) !important;
  border: 1px solid var(--gray-200) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
}

/* ===================================================
   HERO SECTION - LIGHT WITH GRADIENT
   =================================================== */

.bj-hero {
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 50%, rgba(37, 99, 235, 0.05) 100%) !important;
  position: relative;
  overflow: hidden;
  padding: 80px 0 !important;
}

.bj-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.bj-hero-content {
  position: relative;
  z-index: 2;
}

.bj-hero-title {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bj-hero-title-highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bj-hero-subtitle {
  color: var(--gray-600) !important;
}

.bj-hero-badge {
  background: rgba(37, 99, 235, 0.1) !important;
  color: var(--primary) !important;
}

.bj-hero-search-form {
  background: var(--white) !important;
  border: 2px solid var(--gray-200) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
}

.bj-hero-search-input {
  background: transparent !important;
  color: var(--gray-800) !important;
  border: none !important;
}

.bj-hero-search-input::placeholder {
  color: var(--gray-400) !important;
}

/* ===================================================
   SECTIONS - LIGHT THEME
   =================================================== */

section {
  background: var(--white) !important;
  color: var(--gray-800) !important;
}

.section-pad {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--gray-600);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* ===================================================
   CARDS & COMPONENTS
   =================================================== */

.card {
  background: var(--white) !important;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
  transform: translateY(-2px);
}

.card-title {
  color: var(--gray-900);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-description {
  color: var(--gray-600);
  font-size: 14px;
}

/* ===================================================
   BUTTONS
   =================================================== */

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

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

.btn-secondary {
  background: var(--gray-100);
  color: var(--gray-900);
  border-color: var(--gray-300);
}

.btn-secondary:hover {
  background: var(--gray-200);
  border-color: var(--gray-400);
}

.btn-ghost {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-ghost:hover {
  background: rgba(37, 99, 235, 0.1);
}

/* ===================================================
   FORMS
   =================================================== */

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 14px;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-400);
}

/* ===================================================
   TEXT UTILITIES
   =================================================== */

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.text-gray {
  color: var(--gray-600);
}

.text-center {
  text-align: center;
}

.text-lg {
  font-size: 18px;
}

.text-sm {
  font-size: 14px;
}

.text-xs {
  font-size: 12px;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

/* ===================================================
   RESPONSIVE UTILITIES
   =================================================== */

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 16px;
  }

  .section-pad {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-header p {
    font-size: 14px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* ===================================================
   ACCESSIBILITY
   =================================================== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

@media (prefers-color-scheme: light) {
  body {
    background: var(--white);
  }
}

/* Focus visible for keyboard navigation */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .bj-header {
    border-bottom: 3px solid var(--primary);
  }

  .card {
    border: 2px solid var(--gray-800);
  }

  .btn {
    border-width: 2px;
  }
}

/* ===================================================
   PRINT STYLES
   =================================================== */

@media print {
  .bj-header,
  .bj-footer-light,
  .bj-back-to-top-light {
    display: none;
  }

  body {
    background: white;
  }

  .card {
    border: 1px solid #ccc;
  }
}
