<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>NKN Worldwide — Connecting Naath Worldwide</title>
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
<link rel="stylesheet" href="assets/style.css">

<style>
:root {
  --bg:#0b0a08; 
  --card:#18140f;
  --ink:#fff4d0;
  --muted:#d9c78b;
  --brand:#ffd97a;
  --accent:#ffecb3;
  --outline:rgba(255,215,100,0.15);
}

body {
  margin:0; font:16px/1.6 system-ui; background:var(--bg); color:var(--ink);
}
.wrap { max-width:900px; margin:auto; padding:24px 16px; }

header {
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0; border-bottom:1px solid var(--outline);
}
.brand { display:flex; align-items:center; gap:10px; }
.brand img { height:52px; filter:drop-shadow(0 0 8px rgba(255,215,100,.6)); }
h1 { font-size:1.4rem; font-weight:700; color:var(--brand); margin:0; }

nav { display:none; flex-direction:column; text-align:right; background:#100c06; padding:12px; border-radius:8px; }
nav.show { display:flex; }
nav a { color:var(--ink); text-decoration:none; padding:8px; border-radius:6px; transition:.3s; }
nav a:hover { background:var(--outline); color:var(--brand); }

.menu-toggle, .close-btn {
  background:none; border:none; color:var(--brand); font-size:1.6rem; cursor:pointer;
}
.hero {
  margin-top:20px; background:var(--card); border:1px solid var(--outline);
  border-radius:16px; padding:24px; text-align:center; box-shadow:0 0 25px rgba(255,215,100,0.05);
}
.hero img { width:110px; margin-bottom:10px; }
.hero h2 { color:var(--brand); font-size:1.8rem; margin-bottom:10px; }

.btn {
  display:inline-block; padding:12px 18px; margin:8px;
  background:var(--brand); color:#000; font-weight:600; border-radius:8px;
  text-decoration:none; transition:.3s;
}
.btn:hover { background:var(--accent); }
.btn.secondary { background:transparent; color:var(--ink); border:1px solid var(--outline); }

section { margin:36px 0; }
.card {
  background:var(--card); border:1px solid var(--outline);
  border-radius:12px; padding:18px; box-shadow:0 0 15px rgba(255,215,100,0.06);
}
.card:hover { transform:scale(1.02); transition:.3s ease; box-shadow:0 0 20px rgba(255,215,100,0.15); }

footer {
  margin-top:40px; text-align:center; font-size:.9rem; color:var(--muted);
  border-top:1px solid var(--outline); padding-top:20px;
}

.clubhouse-snapshot {
  margin-top:25px; background:rgba(27,21,11,0.85);
  border:1px solid var(--outline); border-radius:14px; padding:20px;
  text-align:center; box-shadow:0 0 20px rgba(255,215,100,.08);
}
.clubhouse-snapshot h3 { color:var(--brand); margin-bottom:8px; }
.schedule-img {
  width:100%; margin:10px 0; border-radius:10px; border:1px solid rgba(255,215,100,.15);
}
</style>
</head>

<body>
  <div class="wrap">
    <header>
      <div class="brand">
        <img src="assets/NKN-logo.png" alt="NKN Worldwide">
        <h1>NKN Worldwide</h1>
      </div>
      <button class="menu-toggle" onclick="toggleMenu()">☰</button>
      <nav id="menu">
        <button class="close-btn" onclick="closeMenu()">✕</button>
        <a href="index.html" class="active">Home</a>
        <a href="membership.html">Membership</a>
        <a href="leadership.html">Leadership</a>
        <a href="bylaws.html">Bylaws</a>
        <a href="nomination.html">Elections</a>
        <a href="contact.html">Contact</a>
      </nav>
    </header>

    <!-- HERO SECTION -->
    <section class="hero">
      <img src="assets/NKN-logo.png" alt="NKN Logo">
      <h2>Connecting Naath Worldwide 🌍</h2>
      <p>NKN Worldwide is a nonprofit, virtual organization building unity, leadership, and service across our global Naath community — operated transparently via Clubhouse and our online portal.</p>
      <a class="btn" href="membership.html">Join as a Member</a>
      <a class="btn secondary" href="https://www.clubhouse.com/club/nknww" target="_blank" rel="noopener">
        <img src="assets/clubhouse-icon.png" alt="Clubhouse" style="height:20px;vertical-align:middle;margin-right:8px;">
        Join NKNWW Clubhouse
      </a>

      <!-- Clubhouse Snapshot -->
      <div class="clubhouse-snapshot">
        <h3>🎙️ Live on Clubhouse — 24/7 Roundtable</h3>
        <p>Daily discussions covering <strong>Politics</strong>, <strong>Economics</strong>, <strong>Education</strong>, <strong>Business</strong>, <strong>Technology</strong>, <strong>Stories</strong> & <strong>Cultural Heritage</strong>.</p>
        <img src="assets/clubhouse-timetable.jpg" alt="Clubhouse Timetable" class="schedule-img">
        <p class="muted">Join anytime — where Naath minds meet the world.</p>
      </div>
    </section>

    <!-- WHAT WE DO -->
    <section>
      <h2>What We Do</h2>
      <div class="card">
        <ul>
          <li>🗳️ Democratic leadership & fair online elections</li>
          <li>🎙️ Virtual townhalls & leadership debates on Clubhouse</li>
          <li>📚 Research & documentation via the Nuer Studies & Research Center (NSRC)</li>
          <li>🤝 Global membership programs and community support</li>
        </ul>
      </div>
    </section>

    <!-- FEATURED CONVERSATIONS -->
    <section>
      <h2>🎧 Featured Conversations</h2>
      <div class="card">
        <ul>
          <li>🔥 <strong>The State of the South Sudan Economy</strong> — Live Panel</li>
          <li>🕊️ <strong>Cultural Heritage & Storytelling Hour</strong></li>
          <li>🌍 <strong>Youth in Leadership — Naath Diaspora Dialogues</strong></li>
        </ul>
        <a href="https://www.clubhouse.com/club/nknww" target="_blank" class="btn secondary">
          Join the Conversation
        </a>
      </div>
    </section>

    <!-- QUICK LINKS -->
    <section>
      <h2>Quick Links</h2>
      <div class="card" style="text-align:center;">
        <a class="btn" href="membership.html">Become a Member</a>
        <a class="btn secondary" href="bylaws.html">Read Our Bylaws</a>
        <a class="btn secondary" href="leadership.html">Meet the Leadership</a>
      </div>
    </section>

    <footer>
      <p>© NKN Worldwide • Connecting Naath Worldwide</p>
      <p class="muted">
        Follow us on <a href="https://www.clubhouse.com/club/nknww" target="_blank">Clubhouse</a> • 
        <a href="bylaws.html">Bylaws</a> • 
        <a href="nomination.html">Elections 2026–2028</a>
      </p>
    </footer>
  </div>

<script>
function toggleMenu(){ document.getElementById("menu").classList.toggle("show"); }
function closeMenu(){ document.getElementById("menu").classList.remove("show"); }
</script>
</body>
/* === NKN Worldwide Glowing Logo Effect === */
.nkn-glow {
  animation: nknPulseGlow 6s infinite ease-in-out;
  filter: drop-shadow(0 0 10px rgba(255, 215, 100, 0.6))
          drop-shadow(0 0 25px rgba(255, 215, 100, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Gentle scaling and intensified glow on hover */
.nkn-glow:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 0 18px rgba(255, 215, 100, 0.9))
          drop-shadow(0 0 35px rgba(255, 215, 100, 0.6));
}

/* Keyframe animation for the breathing effect */
@keyframes nknPulseGlow {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(255, 215, 100, 0.6))
            drop-shadow(0 0 25px rgba(255, 215, 100, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(255, 230, 130, 0.9))
            drop-shadow(0 0 40px rgba(255, 215, 100, 0.7));
  }
}
</html>