qwensite / spells.html
Ninja004's picture
Upload 15 files
7c34da2 verified
raw
history blame
4.47 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Spells & Rituals | Astronova</title>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Lato&display=swap" rel="stylesheet">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Lato', sans-serif; }
body { background-color: #f4f4fa; color: #2C3E50; }
header { background-color: #2C3E50; color: white; padding: 10px 30px; display: flex; align-items: center; justify-content: space-between; }
.logo-container { display: flex; align-items: center; gap: 15px; }
.logo { height: 60px; width: auto; }
header h1 { font-family: 'Playfair Display', serif; }
nav { display: flex; justify-content: center; gap: 30px; }
nav a { color: white; text-decoration: none; font-weight: bold; }
.hero { background: linear-gradient(to right, #d6d6f5, #ffffff); text-align: center; padding: 60px 20px; }
.hero h2 { font-size: 2.2rem; font-family: 'Playfair Display', serif; }
.hero p { margin-top: 10px; font-size: 1.05rem; }
.section { padding: 40px 20px; max-width: 1000px; margin: auto; }
.card { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.list li { margin-left: 18px; line-height: 1.7; }
h3 { font-family: 'Playfair Display', serif; margin-bottom: 10px; }
.back-row { margin-top: 24px; text-align: center; }
.btn { display: inline-block; padding: 10px 18px; background:#F1C40F; color:#2C3E50; border-radius: 6px; text-decoration: none; font-weight: 700; }
.btn:hover { background:#d4ac0d; }
footer { background-color:#2C3E50; color:#fff; text-align:center; padding:20px; font-size:0.9rem; margin-top: 40px; }
</style>
</head>
<body>
<header>
<div class="logo-container">
<img src="logo.png" alt="Astronova Logo" class="logo">
<h1>Astronova</h1>
</div>
<nav>
<a href="index3.html">Home</a>
<a href="about3.html">About</a>
<a href="services3.html">Our Services</a>
<a href="booking3.html">Contact</a>
</nav>
</header>
<section class="hero">
<h2>Spells & Rituals</h2>
<p>Precise, ethical rituals crafted to attract positivity, balance, and progress in your life.</p>
</section>
<section class="section grid">
<div class="card">
<h3>What We Offer</h3>
<p>Every case is unique, so we design rituals based on your goals and chart. We work with mantras, yantras, planetary hours, candles, and sacred procedures to align your path with favorable energies.</p>
<ul class="list">
<li>Love & Relationship Spells (reconciliation, commitment, harmony)</li>
<li>Career & Wealth Rituals (growth, opportunity, stability)</li>
<li>Health & Protection (ward off negativity, strengthen vitality)</li>
<li>Peace & Mindfulness (calm, focus, emotional clarity)</li>
</ul>
</div>
<div class="card">
<h3>How It Works</h3>
<ol class="list" style="margin-left:18px;">
<li>Short intake: your name, birth details, and objective.</li>
<li>Assessment: we identify the dominant planetary influences.</li>
<li>Custom plan: we prepare your ritual schedule and materials.</li>
<li>Execution & guidance: we perform rituals and share do’s & don’ts.</li>
</ol>
<p style="margin-top:10px;">Typical timelines range from 7–28 days depending on the complexity. You receive regular updates and post-ritual care tips.</p>
</div>
<div class="card">
<h3>Ethics & Safety</h3>
<p>We follow positive, non-harmful practices. No rituals are done to cause damage or violate free will. Our goal is alignment and resolution — never harm.</p>
</div>
<div class="card">
<h3>Get Started</h3>
<p>Ready to begin? Book your slot and we’ll suggest the best path for your situation.</p>
<div class="back-row">
<a class="btn" href="booking3.html">Book Consultation</a>
<a class="btn" href="index3.html" style="margin-left:10px;">Back to Home</a>
</div>
</div>
</section>
<footer>
&copy; 2025 Astronova. All rights reserved.
</footer>
</body>
</html>