/* Light Theme */
:root {
  /* Base colors */
  --bg-color: #ffffff;
  --text-color: #333333;
  --text-muted: #666666;
  --heading-color: #222222;

  /* Accent colors */
  --ninja-accent: #5c6bc0;
  --link-color: #e74c3c;
  --link-hover-color: #c0392b;

  /* UI elements */
  --header-bg: #ffffff;
  --footer-bg: #2c3e50;
  --footer-text: #ecf0f1;
  --footer-heading: #ffffff;
  --footer-link: #bdc3c7;
  --footer-text-muted: #95a5a6;
  --footer-border: rgba(255, 255, 255, 0.1);

  --card-bg: #ffffff;
  --cta-bg: #f8f9fa;

  /* Buttons */
  --btn-bg: #e74c3c;
  --btn-text: #ffffff;
  --btn-hover-bg: #c0392b;

  /* Logo and navigation */
  --logo-color: #2c3e50;
  --nav-link-color: #2c3e50;

  /* Shadows and borders */
  --shadow-color: rgba(0, 0, 0, 0.1);
  --border-color: #e0e0e0;

  /* Skill bars */
  --skill-bar-bg: rgba(0, 0, 0, 0.1);

  /* Social links */
  --social-bg: rgba(255, 255, 255, 0.1);
  --social-text: #ffffff;

  /* Badges */
  --badge-category-bg: rgba(231, 76, 60, 0.1);
  --badge-category-text: #e74c3c;

  --badge-pending-bg: rgba(255, 193, 7, 0.1);
  --badge-pending-text: #ffc107;
  --badge-in-progress-bg: rgba(13, 110, 253, 0.1);
  --badge-in-progress-text: #0d6efd;
  --badge-completed-bg: rgba(25, 135, 84, 0.1);
  --badge-completed-text: #198754;
  --badge-rejected-bg: rgba(220, 53, 69, 0.1);
  --badge-rejected-text: #dc3545;
}
