/* Base color variables */
:root {
  /* Light mode colors */
  --bg: #f8f9fa;
  --card: #ffffff;
  --text: #343a40;
  --primary: #6c757d;
  --secondary: #adb5bd;
  --accent: #495057;
  --shadow: rgba(0, 0, 0, 0.05);
}

/* Basic styling */
body {
  background-color: var(--bg);
  color: var(--text);
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

/* Card styling */
.resume-section {
  background-color: var(--card);
  color: var(--text);
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

/* Header styling */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text);
  transition: color 0.3s ease;
}

/* Link styling */
a {
  color: var(--primary);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

/* Skill bar styling */
.skill-bar {
  background-color: var(--secondary);
  overflow: hidden;
  height: 8px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.progress {
  height: 100%;
  transition:
    width 1s ease-in-out,
    background-color 0.3s ease;
  background-color: var(--primary);
}
