/* themes/digitalindependent/static/css/light-mode.css */
.light-theme {
  --color-bg-primary: #FAFAFA;
  --color-bg-secondary: #FFFFFF;
  --color-bg-tertiary: #F5F5F5;
  --color-bg-quaternary: #E0E0E0;

  --color-text-primary: #212121;
  --color-text-secondary: #616161;
  --color-text-tertiary: #9E9E9E;

  /* Keine Änderung bei Primär- und Akzentfarben */

  /* Angepasste Schatten für Light Mode */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Spezifische Anpassungen für Light Mode */
.light-theme .sidebar {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.light-theme .nav-item.active {
  background-color: #F0F0F0;
}

.light-theme .sidebar-social-link {
  background-color: #F0F0F0;
}

.light-theme .theme-toggle-btn {
  background-color: #E0E0E0;
}

.light-theme code {
  background-color: rgba(0, 0, 0, 0.05);
  color: #333;
}

.light-theme pre {
  background-color: #F0F0F0;
  color: #333;
}
