/* Light Mode Theme Variables */

/* Light mode theme */
:root.light-mode {
  --color-background: #fafaf8;
  --color-text: #1a1a1a;
  --color-primary: #6b5b3e;
  --color-secondary: #f5f5f0;
  --color-accent: #6b5b3e;
  --color-gradient-start: #6b5b3e;
  --color-gradient-end: #8a7a5a;
  --color-text-muted: #666666;
  --color-card-bg: rgba(255, 255, 255, 1);
  --color-border: rgba(0, 0, 0, 0.08);
  --color-read-section: rgba(255, 255, 255, 0.9);
  --color-tag: rgba(0, 0, 0, 0.05);
  --color-shadow: rgba(0, 0, 0, 0.06);
  --color-shadow-hover: rgba(0, 0, 0, 0.12);
  --color-primary-subtle: rgba(107, 91, 62, 0.08);
  --color-primary-border: rgba(107, 91, 62, 0.15);
}

/* Transition for smooth theme switching */
body {
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Additional light mode adjustments */
.light-mode .navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.light-mode #stars-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/cropped_teal.jpg);
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.9;
}

.light-mode .footer {
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.light-mode .navbar__toggle .bar {
  background: var(--color-text);
}

.light-mode .blog__card {
  background: rgba(255, 255, 255, 1);
}

.light-mode .blog__card-date {
  color: var(--color-text);
}

.light-mode .blog-post__meta {
  color: var(--color-text);
}