/* =========================================================
   Moroccan Rally 2024 - event theme
   Warm desert palette: terracotta/rust accents on sand.
   Overrides defaults from /shared/blog.css
   ========================================================= */

:root {
  /* Accent - terracotta rust, evokes the Moroccan red earth */
  --blog-accent:         #b5451b;
  --blog-accent-hover:   #8a2f0f;

  /* Page background - warm sand */
  --blog-bg:             #f7f0de;

  /* Card background - soft cream for contrast against sand */
  --blog-card-bg:        #ffffff;

  /* Text */
  --blog-text:           #1a1612;
  --blog-text-muted:     #7a6a5a;
  --blog-heading:        #1a1612;

  /* Missing media placeholder tint */
  --blog-placeholder-bg: #f0e4cb;
  --blog-placeholder-fg: #7a6a5a;
}

/* Dark mode for Morocco - keep the rust accent but darken everything */
[data-theme="dark"] {
  --blog-bg:             #1a1612;
  --blog-card-bg:        #2c2520;
  --blog-text:           #f0e4cb;
  --blog-text-muted:     #c8a97a;
  --blog-heading:        #f0e4cb;
  --blog-placeholder-bg: #3d2e20;
  --blog-placeholder-fg: #c8a97a;
}
