<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rocket Rave 🚀🪩</title>
<style>
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #faf8f5;
  color: #222;
}
.container {
  max-width: 850px;
  margin: auto;
  padding: 50px 20px;
  text-align: center;
}
h1 {
  font-size: 56px;
}
h2 {
  margin-top: 60px;
}
p {
  font-size: 20px;
  line-height: 1.6;
}
.button {
  display: inline-block;
  margin: 10px;
  padding: 15px 28px;
  background: #111;
  color: white;
  text-decoration: none;
  border-radius: 12px;
}
.card {
  background: white;
  padding: 25px;
  margin: 20px 0;
  border-radius: 15px;
}
input, textarea {
  width: 90%;
  max-width: 500px;
  padding: 15px;
  margin: 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}
textarea {
  height: 120px;
}
footer {
  margin-top: 60px;
  color: #777;
}
</style>
</head>
<body>
<div class="container">
<h1>Rocket Rave 🚀🪩</h1>
<p>
Rocket Rave is a project created by two passionate yoga teachers —
<strong>Kara & Lana</strong>.
</p>
<p>
Expect a fiery yoga practice, glitter, music, and a new location for each edition ✨
</p>
<p>
<strong>Fly with us!</strong>
</p>
<a class="button" href="https://www.instagram.com/lanyatko.inmotion/" target="_blank">
Kara's Instagram
</a>
<a class="button" href="https://www.instagram.com/yoga.rocket.rave/" target="_blank">
Rocket Rave Instagram
</a>
<a class="button" href="https://luma.com/rocket_rave" target="_blank">
Upcoming Events Calendar
</a>
<h2>Past Events</h2>
<div class="card">
<h3>🚀 Rocket Rave at Zen Den Yoga</h3>
<p>
A fiery yoga experience combining movement, music and community.
</p>
</div>
<div class="card">
<h3>☕ Coffee Rocket Rave at Gabriel Loci</h3>
<p>
A special edition bringing together yoga, coffee and connection.
</p>
</div>
<h2>Contact</h2>
<p>
Want to collaborate or join the next Rocket Rave?
Send us a message:
</p>
<form action="mailto:yoga.rocket.rave@gmail.com" method="post" enctype="text/plain">
<input type="text" name="name" placeholder="Your name">
<br>
<input type="email" name="email" placeholder="Your email">
<br>
<textarea name="message" placeholder="Your message"></textarea>
<br>
<button class="button" type="submit">
Send Message
</button>
</form>
<footer>
© 2026 Rocket Rave 🚀
</footer>
</div>
</body>
</html>