/**
 * AroundManchester.com - Hunters Page Stylesheet
 * Styles specific to hunters.html
 * 
 * @charset UTF-8
 * @author AroundManchester.com Development Team
 * @version 1.0
 */

@charset "UTF-8";

/* ===== COMPACT HEADER DESCRIPTION ===== */
.site-header__description {
  line-height: 1.3;
  padding: 4px 12px;
  margin: 4px auto 0;
}

.site-header__description > p {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.25;
}

/* ===== HUNTERS PAGE ===== */
.hunters-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #f5f5f5;
}

.hunters-page a:not(.button) {
  color: #7cb3f0;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.hunters-page a:not(.button):hover,
.hunters-page a:not(.button):focus {
  color: #4a6bb5;
}

/* ===== HUNTERS PAGE HEADER ===== */
.hunters-page__header {
  background: linear-gradient(135deg, #e67e22, #d35400);
  color: white;
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 40px;
  border-radius: 8px;
}

.hunters-page__title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hunters-page__subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* ===== HUNTERS PAGE HIGHLIGHT ===== */
.hunters-page__highlight {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  text-align: center;
}

.hunters-page__highlight h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: white;
  border-bottom: none;
  padding-bottom: 0;
}

.hunters-page__highlight p {
  font-size: 1.1rem;
  margin: 0 0 15px 0;
  color: rgba(255, 255, 255, 0.95);
}

/* ===== BOUNTY DISPLAY ===== */
.hunters-page__bounty-display {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 25px 0;
}

.hunters-page__bounty-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
}

.hunters-page__bounty-amount {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
}

.hunters-page__bounty-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ===== HUNTERS PAGE SECTIONS ===== */
.hunters-page__section {
  background: white;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hunters-page__section h2 {
  color: #e67e22;
  font-size: 1.8rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
}

.hunters-page__section h3 {
  color: #d35400;
  font-size: 1.3rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

.hunters-page__section p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

.hunters-page__section ul,
.hunters-page__section ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.hunters-page__section li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ===== HUNTERS PAGE STEPS ===== */
.hunters-page__steps {
  counter-reset: step-counter;
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.hunters-page__step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fef5e7;
  border-radius: 8px;
  margin-bottom: 15px;
}

.hunters-page__step::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  background: #e67e22;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 50%;
}

.hunters-page__step-content h4 {
  color: #333;
  margin: 0 0 8px 0;
  font-size: 1.1rem;
}

.hunters-page__step-content p {
  color: #555;
  margin: 0;
  font-size: 0.95rem;
}

/* ===== HUNTERS PAGE REQUIREMENTS ===== */
.hunters-page__requirements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.hunters-page__requirement {
  background: #fff3e0;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #e67e22;
}

.hunters-page__requirement h4 {
  color: #e67e22;
  margin: 0 0 10px 0;
}

.hunters-page__requirement p {
  margin: 0;
  color: #333;
}

/* ===== HUNTERS PAGE CTA ===== */
.hunters-page__cta {
  background: linear-gradient(135deg, #4a6bb5, #3a5a95);
  color: white;
  padding: 30px;
  border-radius: 8px;
  margin: 30px 0;
  text-align: center;
}

.hunters-page__cta h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.hunters-page__cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.hunters-page__cta a:not(.button) {
  color: #7cb3f0;
}

.hunters-page__cta a:not(.button):hover,
.hunters-page__cta a:not(.button):focus {
  color: #bfe0ff;
}

/* Override secondary button in CTA for white background with border */
.hunters-page__cta .button--secondary {
  background: white;
  color: #4a6bb5;
  border-color: #4a6bb5;
}

.hunters-page__cta .button--secondary:hover,
.hunters-page__cta .button--secondary:focus {
  background: #f8f9fa;
  color: #3a5a95;
}

/* ===== HUNTERS PAGE EMAIL REVEAL ===== */
.hunters-page__reveal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Legacy fallback - buttons in reveal now use .button.button--warning from components.css */
.hunters-page__reveal-btn {
  /* Deprecated - use class="button button--warning" instead */
}

.hunters-page__hidden {
  display: none;
}

.hunters-page__hidden.revealed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hunters-page__note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 15px;
}

.hunters-page__note a:not(.button) {
  color: #7cb3f0;
}

/* ===== HUNTERS PAGE BACK LINK ===== */
.hunters-page__back-link {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

/* ===== ACCESSIBILITY ===== */
/* Note: Skip links now handled globally by reset.css */

/* === WCAG 2.2 AA FOCUS INDICATORS === */
.hunters-page :focus {
  outline: 3px solid #e67e22;
  outline-offset: 2px;
}

.hunters-page :focus:not(:focus-visible) {
  outline: none;
}

.hunters-page :focus-visible {
  outline: 3px solid #e67e22;
  outline-offset: 2px;
}

/* Focus on dark backgrounds */
.hunters-page__cta :focus-visible,
.hunters-page__highlight :focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}

/* Button focus */
.hunters-page .button:focus-visible {
  outline: 3px solid #d35400;
  outline-offset: 2px;
}

/* === REDUCED MOTION SUPPORT === */
@media (prefers-reduced-motion: reduce) {
  .hunters-page,
  .hunters-page * {
    animation: none !important;
    transition: none !important;
  }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
  .hunters-page__title {
    font-size: 2rem;
  }

  .hunters-page__section h2 {
    font-size: 1.5rem;
  }

  .hunters-page__bounty-display {
    flex-direction: column;
    gap: 15px;
  }

  .hunters-page__step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hunters-page__requirements {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hunters-page__title {
    font-size: 1.6rem;
  }

  .hunters-page {
    padding: 20px 10px;
  }

  .hunters-page__section {
    padding: 20px;
  }

  .hunters-page__email-link {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

/* ===== HIGH CONTRAST MODE ===== */
/*
 * High contrast overrides for accessibility and e-ink devices.
 * Applied when .high-contrast class is on <html> element.
 */
.high-contrast .hunters-page {
  background: #ffffff;
}

.high-contrast .hunters-page a:not(.button) {
  color: #000000;
  text-decoration: underline;
}

.high-contrast .hunters-page__header {
  background: #000000;
  color: #ffffff;
  border: 3px solid #000000;
}

.high-contrast .hunters-page__title {
  color: #ffffff;
}

.high-contrast .hunters-page__subtitle {
  color: #ffffff;
  opacity: 1;
}

.high-contrast .hunters-page__highlight {
  background: #000000;
  color: #ffffff;
  border: 3px solid #000000;
}

.high-contrast .hunters-page__highlight h2 {
  color: #ffffff;
}

.high-contrast .hunters-page__highlight p {
  color: #ffffff;
  opacity: 1;
}

.high-contrast .hunters-page__bounty-card {
  background: #ffffff;
  border: 2px solid #ffffff;
}

.high-contrast .hunters-page__bounty-amount {
  color: #000000;
}

.high-contrast .hunters-page__bounty-label {
  color: #000000;
  opacity: 1;
}

.high-contrast .hunters-page__section {
  background: #ffffff;
  border: 2px solid #000000;
  box-shadow: none;
}

.high-contrast .hunters-page__section h2 {
  color: #000000;
  border-bottom-color: #000000;
}

.high-contrast .hunters-page__section h3 {
  color: #000000;
}

.high-contrast .hunters-page__section p {
  color: #000000;
}

.high-contrast .hunters-page__section ul,
.high-contrast .hunters-page__section ol,
.high-contrast .hunters-page__section li {
  color: #000000;
}

.high-contrast .hunters-page__step {
  background: #ffffff;
  border: 2px solid #000000;
}

.high-contrast .hunters-page__step::before {
  background: #000000;
  color: #ffffff;
}

.high-contrast .hunters-page__step-content h4 {
  color: #000000;
}

.high-contrast .hunters-page__step-content p {
  color: #000000;
}

.high-contrast .hunters-page__requirement {
  background: #ffffff;
  border: 2px solid #000000;
  border-left-width: 4px;
}

.high-contrast .hunters-page__requirement h4 {
  color: #000000;
}

.high-contrast .hunters-page__requirement p {
  color: #000000;
}

.high-contrast .hunters-page__cta {
  background: #000000;
  color: #ffffff;
  border: 3px solid #000000;
}

.high-contrast .hunters-page__cta h3 {
  color: #ffffff;
}

.high-contrast .hunters-page__cta p {
  color: #ffffff;
  opacity: 1;
}

.high-contrast .hunters-page__cta a:not(.button) {
  color: #ffffff;
  text-decoration: underline;
}

.high-contrast .hunters-page__cta .button--secondary {
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000;
}

.high-contrast .hunters-page__cta .button--secondary:hover,
.high-contrast .hunters-page__cta .button--secondary:focus {
  background: #f0f0f0;
  color: #000000;
}

.high-contrast .hunters-page__note {
  color: #ffffff;
  opacity: 1;
}

.high-contrast .hunters-page__note a:not(.button) {
  color: #ffffff;
  text-decoration: underline;
}

/* High contrast focus indicators */
.high-contrast .hunters-page :focus-visible {
  outline: 3px solid #000000 !important;
  outline-offset: 2px !important;
}

.high-contrast .hunters-page__cta :focus-visible,
.high-contrast .hunters-page__highlight :focus-visible,
.high-contrast .hunters-page__header :focus-visible {
  outline: 3px solid #ffffff !important;
  outline-offset: 2px !important;
}
