Contact Us

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Contact Us | Hollywood Hours</title>
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@700;800;900&display=swap" rel="stylesheet">
  <script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-50 text-slate-800 font-sans leading-relaxed">
  <header class="bg-slate-900 text-white py-4 border-b border-slate-800">
    <div class="max-w-4xl mx-auto px-4 flex justify-between items-center">
      <a href="index.html" class="text-xl font-bold text-amber-400 font-heading">HOLLYWOOD HOURS</a>
      <a href="index.html" class="text-xs bg-red-600 text-white px-3 py-1.5 rounded font-bold hover:bg-red-700">Back to News</a>
    </div>
  </header>
  <main class="max-w-4xl mx-auto px-4 py-10 bg-white my-8 rounded-xl border border-gray-200 shadow-sm space-y-6">
    <h1 class="text-3xl font-extrabold text-slate-900 border-b pb-3">Contact Us & Editorial Press Desk</h1>
    <p class="text-sm text-slate-600">Have a breaking news tip, press release, or advertising inquiry? Reach out to our editorial desk directly.</p>
    
    <div class="grid grid-cols-1 md:grid-cols-2 gap-8 pt-4">
      <form class="space-y-4" onsubmit="alert('Thank you! Your message has been sent to our editorial desk.'); return false;">
        <div>
          <label class="block text-xs font-bold text-slate-700 mb-1">Your Name</label>
          <input type="text" required placeholder="John Doe" class="w-full border border-gray-300 rounded px-3 py-2 text-sm focus:outline-none focus:border-red-600">
        </div>
        <div>
          <label class="block text-xs font-bold text-slate-700 mb-1">Your Email</label>
          <input type="email" required placeholder="john@example.com" class="w-full border border-gray-300 rounded px-3 py-2 text-sm focus:outline-none focus:border-red-600">
        </div>
        <div>
          <label class="block text-xs font-bold text-slate-700 mb-1">Subject</label>
          <input type="text" required placeholder="News Tip / Press Release" class="w-full border border-gray-300 rounded px-3 py-2 text-sm focus:outline-none focus:border-red-600">
        </div>
        <div>
          <label class="block text-xs font-bold text-slate-700 mb-1">Message</label>
          <textarea rows="4" required placeholder="Write your message here..." class="w-full border border-gray-300 rounded px-3 py-2 text-sm focus:outline-none focus:border-red-600"></textarea>
        </div>
        <button type="submit" class="bg-red-600 hover:bg-red-700 text-white text-xs font-bold px-6 py-3 rounded uppercase tracking-wider">Send Message</button>
      </form>

      <div class="space-y-4 bg-gray-50 p-6 rounded-xl border border-gray-200 text-xs">
        <h3 class="font-bold text-slate-900 text-sm">Direct Contacts</h3>
        <p><strong>Editorial Desk:</strong> <code>editor@hollywoodhours.com</code></p>
        <p><strong>Press & Media Kits:</strong> <code>press@hollywoodhours.com</code></p>
        <p><strong>Ad Partnerships:</strong> <code>ads@hollywoodhours.com</code></p>
        <p><strong>Office Location:</strong> Beverly Hills, Los Angeles, CA 90210</p>
      </div>
    </div>
  </main>
  <footer class="bg-slate-900 text-slate-400 text-xs py-6 border-t border-slate-800 text-center">
    <p>© 2026 Hollywood Hours Inc. All rights reserved.</p>
  </footer>
</body>
</html>