/* Force light theme override */
body {
  background-color: #ffffff !important;
  color: #333333 !important;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6, strong, b {
  color: #000000 !important;
}

a {
  color: #0066cc !important;
}

a:hover {
  color: #004499 !important;
}

/* Code blocks */
pre, code {
  background-color: #f5f5f5 !important;
  color: #333333 !important;
}

/* Navigation */
nav a {
  color: #333333 !important;
}

/* Main content area */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Home page */
.home-intro {
  margin: 2rem 0 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e6e6e6;
}

.home-intro .home-kicker {
  margin: 0 0 0.5rem;
  color: #666666;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.home-intro h1 {
  margin: 0 0 0.75rem;
  font-size: 2.4rem;
  line-height: 1.05;
}

.home-intro p:last-child {
  max-width: 42rem;
  margin: 0;
  color: #4a4a4a;
  font-size: 1.1rem;
}

.home-sections {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 2rem;
}

.home-section-link {
  display: block;
  padding: 1rem;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  color: #222222 !important;
  text-decoration: none !important;
  background: #ffffff;
}

.home-section-link:hover {
  border-color: #0066cc;
  color: #111111 !important;
  background: #f8fbff;
}

.home-section-link span,
.home-section-link small {
  display: block;
}

.home-section-link span {
  margin-bottom: 0.25rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.home-section-link small {
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.45;
}

/* Footer styling */
footer {
  color: #666666 !important;
  text-align: center !important;
  margin-top: auto !important;
  padding: 2rem 0 !important;
}

/* Center the footer content */
footer p {
  text-align: center !important;
  margin: 0.5rem 0 !important;
}

/* Footer links */
footer a {
  color: #0066cc !important;
  text-decoration: none !important;
}

footer a:hover {
  color: #004499 !important;
  text-decoration: underline !important;
}

/* Footer additional content */
footer .footer-links {
  text-align: center;
  margin-top: 1rem;
  color: #0066cc;
}

footer .footer-links a {
  color: #0066cc !important;
  text-decoration: none !important;
}

footer .footer-links a:hover {
  color: #004499 !important;
  text-decoration: underline !important;
}

/* Custom shortcode styles */
.alert {
  padding: 1rem;
  margin: 1rem 0;
  border-left: 4px solid #0066cc;
  background-color: #f8f9fa;
}

.alert-warning {
  border-left-color: #ffc107;
  background-color: #fff3cd;
}

.alert-danger {
  border-left-color: #dc3545;
  background-color: #f8d7da;
}

.custom-quote {
  border-left: 4px solid #0066cc;
  padding-left: 1rem;
  margin: 1rem 0;
  font-style: italic;
}

.custom-quote footer {
  font-style: normal;
  font-size: 0.9em;
  color: #666;
  margin-top: 0.5rem;
}
