/* Global Styles */
body {
  font-family: 'Arial', sans-serif;
  background-color: #fff;
  color: #222;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  transition: background 0.3s, color 0.3s;
}

header, footer {
  background-color: #b30000; /* Dexter red */
  color: white;
  padding: 1rem;
  text-align: center;
}

nav {
  background: #8b0000;
  padding: 0.5rem;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main, .content {
  padding: 1rem;
  max-width: 900px;
  margin: auto;
}

section {
  margin-bottom: 2rem;
  padding: 1rem;
  border-left: 4px solid crimson;
  background: #f9f9f9;
  border-radius: 8px;
}

/* Responsive Image */
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Headings */
h1, h2, h3 {
  font-family: 'Georgia', serif;
  color: #b30000;
}

/* Footer */
footer {
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* Dark Mode */
body.dark {
  background-color: #111;
  color: #eee;
}

body.dark section {
  background: #222;
  border-left-color: #c00;
}

body.dark header, body.dark footer, body.dark nav {
  background-color: #222;
}

body.dark nav a {
  color: #ffcccc;
}

/* Toggle Button */
#toggle-mode {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background: #b30000;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1000;
}
