<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <title>Contact | Joe World 🌍</title>
  <link rel="stylesheet" href="style.css" />
  <link href="https://fonts.googleapis.com/css2?family=Orbitron&family=Raleway&display=swap" rel="stylesheet">
</head>
<body>
  <header>
    <nav class="navbar">
      <div class="logo">Joe World 🌍</div>
      <ul class="nav-links">
        <li><a href="index.html">Home</a></li>
        <li><a href="about.html">About</a></li>
        <li><a href="terms.html">Terms</a></li>
        <li><a href="privacy.html">Privacy</a></li>
        <li><a href="contact.html" class="active">Contact</a></li>
      </ul>
    </nav>
  </header>

  <main class="content contact-page">
    <section class="intro">
      <h1>Contact Joe World 🌍</h1>
      <p>Have a question, suggestion, or want to collaborate? Let's talk!</p>
    </section>

    <section class="contact-section">
      <form action="https://formspree.io/f/your-form-id" method="POST" class="contact-form">
        <label for="name">Your Name</label>
        <input type="text" id="name" name="name" required />

        <label for="email">Your Email</label>
        <input type="email" id="email" name="email" required />

        <label for="message">Your Message</label>
        <textarea id="message" name="message" rows="6" required></textarea>

        <button type="submit" class="btn">Send Message</button>
      </form>
    </section>

    <section class="contact-details">
      <h2>Or reach out directly:</h2>
      <ul>
        <li><strong>Email:</strong> joeworld222@gmail.com</li>
        <li><strong>WhatsApp:</strong> +256752045708</li>
        <li><strong>Telegram:</strong> <a href="https://t.me/joeworld222" target="_blank">@joeworld222</a></li>
        <li><strong>Location:</strong> Kampala, Uganda</li>
      </ul>
    </section>
  </main>

  <footer>
    <p>&copy; 2025 Joe World 🌍. All rights reserved.</p>
  </footer>
</body>
</html>
