:root {
  /* Light theme variables */
  --bg-color: #fff;
  --text-color: #272829;
  --section-bg: #f5f8fd;
  --card-bg: #fff;
  --border-color: #ddd;
  --header-bg: rgba(255, 255, 255, 0.95);
}

:root[data-theme="dark"] {
  /* Dark theme variables */
  --bg-color: #1a1a1a;
  --text-color: #ffffff;
  --section-bg: #2d2d2d;
  --card-bg: #333333;
  --border-color: #444444;
  --header-bg: rgba(26, 26, 26, 0.95);
}

/* Apply theme variables */
body {
  background-color: var(--bg-color);
  color: var(--text-color);
}

#header {
  background: var(--header-bg);
}

section {
  background: var(--section-bg);
}

.portfolio-item {
  background: var(--card-bg);
}

.contact .info-box {
  background: var(--card-bg);
}

/* Theme toggle button styles */
.theme-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  color: var(--text-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  transform: scale(1.1);
}

.theme-toggle i {
  font-size: 20px;
} 