ARES/RACES

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Knox County ARES Returns | W9GFD – KCARC</title>
  <meta name="description" content="Knox County ARES has returned. Learn about the Amateur Radio Emergency Service, its role in emergency communications, and how volunteer operators serve our community as part of the ARRL.">
  <style>
    :root {
      --primary: #1a365d;      /* Deep navy */
      --accent: #c53030;       /* Strong red for emergency emphasis */
      --secondary: #2b6cb0;    /* Medium blue */
      --light: #f7fafc;
      --dark: #1a202c;
      --gray: #4a5568;
      --border: #e2e8f0;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      line-height: 1.6;
      color: var(--dark);
      background: #edf2f7;
    }

    /* Header */
    header {
      background: linear-gradient(135deg, var(--primary) 0%, #2c5282 100%);
      color: white;
      padding: 1.25rem 1.5rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }

    .header-inner {
      max-width: 960px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.85rem;
    }

    .brand-icon {
      width: 52px;
      height: 52px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: var(--primary);
      font-weight: 700;
      flex-shrink: 0;
    }

    .brand-text h1 {
      font-size: 1.35rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      line-height: 1.2;
    }

    .brand-text p {
      font-size: 0.85rem;
      opacity: 0.9;
      margin-top: 0.15rem;
    }

    .club-link {
      background: rgba(255,255,255,0.15);
      color: white;
      text-decoration: none;
      padding: 0.5rem 1rem;
      border-radius: 6px;
      font-size: 0.9rem;
      font-weight: 500;
      transition: background 0.2s;
      border: 1px solid rgba(255,255,255,0.25);
    }

    .club-link:hover {
      background: rgba(255,255,255,0.25);
    }

    /* Hero Banner */
    .hero {
      background: linear-gradient(to bottom, #2b6cb0, #1a365d);
      color: white;
      text-align: center;
      padding: 3.5rem 1.5rem 3rem;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.6;
    }

    .hero-content {
      position: relative;
      max-width: 720px;
      margin: 0 auto;
    }

    .badge {
      display: inline-block;
      background: var(--accent);
      color: white;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.35rem 0.9rem;
      border-radius: 999px;
      margin-bottom: 1.1rem;
    }

    .hero h2 {
      font-size: clamp(1.9rem, 5vw, 2.6rem);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 0.9rem;
    }

    .hero p {
      font-size: 1.15rem;
      opacity: 0.95;
      max-width: 540px;
      margin: 0 auto 1.75rem;
    }

    .hero-cta {
      display: inline-flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn {
      display: inline-block;
      padding: 0.7rem 1.4rem;
      border-radius: 6px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.2s;
      border: none;
      cursor: pointer;
    }

    .btn-primary {
      background: white;
      color: var(--primary);
    }

    .btn-primary:hover {
      background: #edf2f7;
      transform: translateY(-1px);
    }

    .btn-outline {
      background: transparent;
      color: white;
      border: 2px solid rgba(255,255,255,0.7);
    }

    .btn-outline:hover {
      background: rgba(255,255,255,0.1);
      border-color: white;
    }

    /* Main Content */
    main {
      max-width: 960px;
      margin: -2rem auto 0;
      padding: 0 1.25rem 3rem;
      position: relative;
      z-index: 1;
    }

    .card {
      background: white;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      padding: 2rem 1.75rem;
      margin-bottom: 1.75rem;
    }

    .card h3 {
      font-size: 1.45rem;
      color: var(--primary);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .card h3 .icon {
      font-size: 1.5rem;
    }

    .card p {
      color: var(--gray);
      margin-bottom: 1rem;
    }

    .card p:last-child {
      margin-bottom: 0;
    }

    .card ul {
      margin: 0.75rem 0 1rem 1.4rem;
      color: var(--gray);
    }

    .card li {
      margin-bottom: 0.45rem;
    }

    .highlight-box {
      background: #ebf8ff;
      border-left: 4px solid var(--secondary);
      padding: 1rem 1.25rem;
      border-radius: 0 6px 6px 0;
      margin: 1.25rem 0;
    }

    .highlight-box p {
      margin: 0;
      color: var(--dark);
      font-weight: 500;
    }

    /* Two-column section */
    .grid-2 {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 700px) {
      .grid-2 {
        grid-template-columns: 1fr 1fr;
      }
    }

    .feature {
      background: white;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      padding: 1.5rem;
    }

    .feature h4 {
      font-size: 1.15rem;
      color: var(--primary);
      margin-bottom: 0.6rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .feature p {
      color: var(--gray);
      font-size: 0.95rem;
    }

    /* Call to action section */
    .cta-section {
      background: linear-gradient(135deg, var(--primary), #2c5282);
      color: white;
      border-radius: 10px;
      padding: 2.25rem 1.75rem;
      text-align: center;
      margin-top: 0.5rem;
    }

    .cta-section h3 {
      font-size: 1.5rem;
      margin-bottom: 0.75rem;
    }

    .cta-section p {
      opacity: 0.95;
      max-width: 520px;
      margin: 0 auto 1.5rem;
    }

    .cta-section .btn-primary {
      background: white;
      color: var(--primary);
    }

    /* Footer */
    footer {
      background: var(--dark);
      color: #a0aec0;
      text-align: center;
      padding: 1.75rem 1.5rem;
      font-size: 0.875rem;
    }

    footer a {
      color: #90cdf4;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    footer .footer-links {
      margin-bottom: 0.75rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.25rem;
    }

    /* Utility */
    .text-center { text-align: center; }
    .mt-1 { margin-top: 0.5rem; }
  </style>
</head>
<body>

  <!-- Header -->
  <header>
    <div class="header-inner">
      <div class="brand">
        <div class="brand-icon">📡</div>
        <div class="brand-text">
          <h1>Knox County ARES</h1>
          <p>Amateur Radio Emergency Service</p>
        </div>
      </div>
      <a href="https://www.w9gfd.org/" class="club-link" target="_blank" rel="noopener">W9GFD – KCARC</a>
    </div>
  </header>

  <!-- Hero -->
  <section class="hero">
    <div class="hero-content">
      <span class="badge">Now Active Again</span>
      <h2>Knox County ARES<br>Has Returned</h2>
      <p>
        Licensed amateur radio operators are once again organized and ready to provide emergency and public-service communications for Knox County and the surrounding community.
      </p>
      <div class="hero-cta">
        <a href="#about" class="btn btn-primary">Learn About ARES</a>
        <a href="#join" class="btn btn-outline">Get Involved</a>
      </div>
    </div>
  </section>

  <!-- Main -->
  <main>
    <!-- About ARES -->
    <article class="card" id="about">
      <h3><span class="icon">🛡️</span> What is ARES?</h3>
      <p>
        The <strong>Amateur Radio Emergency Service® (ARES®)</strong> is a program of the 
        <a href="https://www.arrl.org/" target="_blank" rel="noopener" style="color: var(--secondary);">American Radio Relay League (ARRL)</a> — 
        the national association for amateur radio. ARES consists of licensed amateur radio operators who have voluntarily registered their qualifications and equipment with local ARES leadership for communications duty in the public service when disaster strikes.
      </p>
      <p>
        ARES is an <strong>all-volunteer service</strong>. Members donate their time, skills, and personal equipment to support their communities at no cost to local government or served agencies.
      </p>
      <div class="highlight-box">
        <p>
          “When All Else Fails®” — Amateur radio can continue to operate when commercial infrastructure (cell towers, internet, landlines, and power systems) is damaged, overloaded, or unavailable.
        </p>
      </div>
    </article>

    <!-- Role in Emergency Communications -->
    <article class="card">
      <h3><span class="icon">📢</span> Our Role in Emergency Communications</h3>
      <p>
        During emergencies and disasters, normal communication systems can fail or become congested. ARES volunteers step in to provide reliable backup communications for:
      </p>
      <ul>
        <li>Local emergency management and public safety agencies</li>
        <li>Hospitals, shelters, and critical facilities</li>
        <li>Damage assessment and search-and-rescue teams</li>
        <li>Disaster relief organizations</li>
        <li>Public-service events (parades, races, community gatherings)</li>
      </ul>
      <p>
        Operators train in message handling, digital modes, emergency power operation, and the National Incident Management System (NIMS) so they can integrate smoothly with professional responders.
      </p>
    </article>

    <!-- Two feature cards -->
    <div class="grid-2">
      <div class="feature">
        <h4>🤝 Service to the Community</h4>
        <p>
          Beyond disasters, Knox County ARES supports community events and public-service activities. These opportunities keep skills sharp and strengthen partnerships with local agencies while giving back to the residents of Knox County.
        </p>
      </div>
      <div class="feature">
        <h4>📻 All-Volunteer & Part of ARRL</h4>
        <p>
          ARES is organized under the ARRL Field Organization. Local Emergency Coordinators work with Section and District leadership. Every licensed amateur is eligible to join — ARRL membership is not required for basic participation.
        </p>
      </div>
    </div>

    <!-- Call to Action -->
    <section class="cta-section" id="join">
      <h3>Ready to Serve?</h3>
      <p>
        Knox County ARES is rebuilding. Licensed amateur radio operators interested in emergency communications and community service are encouraged to get involved.
      </p>
      <p style="font-size: 0.95rem; opacity: 0.9; margin-bottom: 1.25rem;">
        Training, nets, and exercises help members stay prepared. Whether you are new to emergency communications or an experienced operator, there is a place for you.
      </p>
      <div style="background: rgba(255,255,255,0.12); border-radius: 8px; padding: 1.1rem 1.25rem; margin-bottom: 1.25rem; text-align: left; max-width: 420px; margin-left: auto; margin-right: auto;">
        <p style="margin: 0 0 0.35rem 0; font-weight: 600; font-size: 1.05rem;">Bill Genter, KE9BPB</p>
        <p style="margin: 0 0 0.35rem 0; opacity: 0.95;">Knox County ARES Emergency Coordinator</p>
        <p style="margin: 0;">
          <a href="mailto:KE9BPB@arrl.net" style="color: #90cdf4; text-decoration: none; font-weight: 500;">KE9BPB@arrl.net</a>
        </p>
      </div>
      <a href="mailto:KE9BPB@arrl.net" class="btn btn-primary">Email the EC</a>
      <p class="mt-1" style="font-size: 0.85rem; opacity: 0.85; margin-top: 1.25rem;">
        You may also reach out through KCARC (W9GFD) for club meeting and general information.
      </p>
    </section>

    <!-- Additional info -->
    <article class="card" style="margin-top: 1.75rem;">
      <h3><span class="icon">ℹ️</span> Additional Resources</h3>
      <ul>
        <li><a href="https://www.arrl.org/ares" target="_blank" rel="noopener" style="color: var(--secondary);">ARRL ARES Official Page</a> — national program information and registration guidance</li>
        <li><a href="https://www.w9gfd.org/" target="_blank" rel="noopener" style="color: var(--secondary);">KCARC (W9GFD)</a> — club meetings, repeaters, and local activities</li>
        <li><a href="https://www.arrl.org/Groups/view/illinois" target="_blank" rel="noopener" style="color: var(--secondary);">Illinois Section</a> — ARRL Field Organization contacts</li>
      </ul>
      <p style="font-size: 0.9rem; color: var(--gray); margin-top: 1rem;">
        ARES® and Amateur Radio Emergency Service® are registered trademarks of the American Radio Relay League, Inc.
      </p>
    </article>
  </main>

  <!-- Footer -->
  <footer>
    <div class="footer-links">
      <a href="https://www.w9gfd.org/" target="_blank" rel="noopener">W9GFD.org</a>
      <a href="https://www.arrl.org/ares" target="_blank" rel="noopener">ARRL ARES</a>
      <a href="https://www.arrl.org/" target="_blank" rel="noopener">ARRL</a>
    </div>
    <p>
      Knox County ARES • Serving Knox County, Illinois<br>
      Part of the American Radio Relay League Amateur Radio Emergency Service®
    </p>
    <p style="margin-top: 0.5rem;">
      EC: Bill Genter, KE9BPB &nbsp;•&nbsp; <a href="mailto:KE9BPB@arrl.net">KE9BPB@arrl.net</a>
    </p>
    <p style="margin-top: 0.6rem; font-size: 0.8rem;">
      Page prepared for the KCARC (W9GFD) website
    </p>
  </footer>

</body>
</html>
Scroll to Top