/* =============================================================================
   Werkstatt Theme for Pods-Blitz - Light Mode
   https://brtkcs.com
   ============================================================================= */

:root {
  /* Werkstatt Colors - Light */
  --werkstatt-olive: #848B23;
  --werkstatt-olive-dark: #6e7520;
  --werkstatt-rust: #A8361B;
  --werkstatt-purple: #31185A;
  --werkstatt-cyan: #4a8a7d;
  --werkstatt-yellow: #a67d2e;
  --werkstatt-beige: #D7D4CD;

  /* Override default theme colors */
  --color-link-hover: #848B23 !important;
  --color-body-background: #FFFFFF !important;
  --color-body-text-primary: #191202 !important;
  --color-body-text-secondary: #433C22 !important;
  --color-input-background: #F5F4F1 !important;
  --color-border: rgba(67, 60, 34, 0.2) !important;
}

/* Force light background */
body {
  background-color: #FFFFFF !important;
  color: #191202 !important;
}

/* Site container */
.site {
  max-width: 720px;
}

/* Header styling */
.site-header {
  border-bottom: 3px solid #848B23;
  padding-bottom: 2rem;
}

.site-title a {
  color: #191202 !important;
}

.site-title a:hover {
  color: #848B23 !important;
}

.site-description {
  color: #433C22 !important;
}

/* Navigation */
.navigation-menu .menu-item {
  border-right: none !important;
}

.navigation-menu .menu-item a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #F5F4F1;
  border: 1px solid rgba(67, 60, 34, 0.2);
  border-left: 3px solid #848B23;
  border-radius: 6px;
  color: #191202 !important;
  transition: all 0.2s ease;
}

.navigation-menu .menu-item a:hover {
  background: #848B23;
  border-color: #848B23;
  color: #FFFFFF !important;
}

.navigation-menu .menu-item img {
  opacity: 0.7;
}

.navigation-menu .menu-item a:hover img {
  filter: invert(1);
  opacity: 1;
}

/* Mobile menu */
#menu-mobile-button {
  background: #F5F4F1;
  border: 1px solid rgba(67, 60, 34, 0.2);
  border-left: 3px solid #848B23;
  color: #191202;
}

#menu-mobile-button:hover {
  border-color: #848B23;
  color: #848B23;
}

/* Search box */
#searchBox {
  background: #F5F4F1;
  border: 1px solid rgba(67, 60, 34, 0.2);
  border-left: 3px solid #848B23;
  border-radius: 6px;
  padding: 1rem;
  margin-top: 1rem;
}

.search-field {
  background: #FFFFFF !important;
  border: 1px solid rgba(67, 60, 34, 0.2) !important;
  color: #191202 !important;
  border-radius: 6px;
}

.search-field:focus {
  border-color: #848B23 !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(132, 139, 35, 0.2);
}

.search-submit {
  background: #848B23 !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 6px;
  font-weight: 600;
}

.search-submit:hover {
  background: #6e7520 !important;
}

/* Episode entries */
.entry-loop {
  border-bottom: 1px solid rgba(67, 60, 34, 0.2);
  padding: 2rem 0;
}

.entry-date {
  color: #433C22 !important;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
}

.loop-title a {
  color: #191202 !important;
}

.loop-title a:hover {
  color: #848B23 !important;
}

/* Audio player section */
.block-audio {
  background: #F5F4F1;
  border: 1px solid rgba(67, 60, 34, 0.2);
  border-left: 3px solid #A8361B;
  border-radius: 6px;
  margin: 1.5rem 0;
  overflow: hidden;
}

/* Pagination */
.loop-pagination a {
  background: #F5F4F1;
  border: 1px solid rgba(67, 60, 34, 0.2);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  color: #191202 !important;
}

.loop-pagination a:hover {
  background: #848B23;
  border-color: #848B23;
  color: #FFFFFF !important;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(67, 60, 34, 0.2);
  padding-top: 2rem;
  color: #433C22;
}

.site-footer a {
  color: #433C22 !important;
}

.site-footer a:hover {
  color: #848B23 !important;
}

/* Links */
a {
  color: #848B23;
}

a:hover {
  color: #6e7520;
}

/* Page titles */
.page-title, .post-title {
  color: #848B23 !important;
}

/* Archive header */
.archive-header {
  border-bottom: 1px solid rgba(67, 60, 34, 0.2);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

/* Buttons and inputs */
button, input[type=submit] {
  background: transparent;
  border: 1px solid #191202;
  color: #191202;
}

button:hover, input[type=submit]:hover {
  border-color: #848B23;
  color: #848B23;
}

/* Code blocks */
code, kbd {
  background: #F5F4F1;
  color: #848B23;
  padding: 0.2em 0.4em;
  border-radius: 4px;
}

/* Blockquotes */
blockquote {
  border-left: 3px solid #848B23;
  background: #F5F4F1;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
}

/* Tables */
table, th, td {
  border-color: rgba(67, 60, 34, 0.2);
}

th {
  background: #F5F4F1;
}

/* Separator */
hr, .separator {
  border-color: rgba(67, 60, 34, 0.2);
}

/* Selection */
::selection {
  background: #848B23;
  color: #FFFFFF;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #F5F4F1;
}

::-webkit-scrollbar-thumb {
  background: rgba(132, 139, 35, 0.4);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #848B23;
}
