/*
Theme Name: ContenuChretien
Template: twentytwentyfive
Description: Brand theme for ContenuChretien built on Twenty Twenty-Five
Version: 1.1
Author: BunniChrist
*/

/* Dark mode toggle button */
#cc-dark-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #e5e5e5;
  background: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.3s, border-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
#cc-dark-toggle:hover {
  border-color: #ff751f;
}

/* Dark mode overrides */
html.cc-dark {
  --wp--preset--color--base: #121a2a;
  --wp--preset--color--base-alt: #1a2744;
  --wp--preset--color--contrast: #f0ede8;
  --wp--preset--color--secondary: #e0dcd4;
  --wp--preset--color--secondary-light: #a0b0cc;
  --wp--preset--color--gray: #8899aa;
  --wp--preset--color--gray-light: #2a3a55;
  --wp--preset--color--accent: #1e2d48;
}
html.cc-dark #cc-dark-toggle {
  background: #1a2744;
  border-color: #2a3a55;
}
html.cc-dark #cc-dark-toggle:hover {
  border-color: #ff751f;
}
html.cc-dark img,
html.cc-dark video,
html.cc-dark iframe {
  opacity: 0.95;
}
