/*
 * Additional theme styles for Arkansas Mulching & Land Clearing
 * These complement the main style.css
 */

.wp-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  align-items: center;
}

.wp-nav-list li a {
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.wp-nav-list li a:hover {
  color: #2563eb;
}

.wp-nav-list li.current-menu-item a,
.wp-nav-list li.current_page_item a {
  color: #2563eb;
  font-weight: 600;
}

.wp-footer-nav {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.wp-footer-nav li a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.wp-footer-nav li a:hover {
  color: rgba(255,255,255,0.8);
}

.wp-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #f0f0f0;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.wp-block-image {
  margin-bottom: 24px;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin-right: 24px;
  margin-bottom: 12px;
}

.alignright {
  float: right;
  margin-left: 24px;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .wp-nav-list {
    display: none;
  }

  .wp-site-header nav {
    padding: 12px 20px;
  }
}
