<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Parent Mode is: ON</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Navigation Styles */
header {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 100;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
.logo {
font-size: 1.8rem;
font-weight: bold;
color: white;
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.nav-links {
display: flex;
list-style: none;
gap: 2rem;
}
.nav-links a {
color: white;
text-decoration: none;
transition: all 0.3s ease;
padding: 0.5rem 1rem;
border-radius: 25px;
cursor: pointer;
}
.nav-links a:hover, .nav-links a.active {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
}
.social-links {
display: flex;
gap: 1rem;
}
.social-links a {
color: white;
font-size: 1.5rem;
transition: all 0.3s ease;
padding: 0.5rem;
border-radius: 50%;
}
.social-links a:hover {
background: rgba(255, 255, 255, 0.2);
transform: scale(1.1);
}
/* Page Content Styles */
.page {
display: none;
min-height: calc(100vh - 200px);
}
.page.active {
display: block;
}
/* Home Page Styles */
.hero {
text-align: center;
padding: 5rem 0;
color: white;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
text-shadow: 0 4px 8px rgba(0,0,0,0.3);
animation: fadeInUp 1s ease-out;
}
.hero p {
font-size: 1.3rem;
margin-bottom: 2rem;
opacity: 0.9;
animation: fadeInUp 1s ease-out 0.2s both;
}
.cta-button {
display: inline-block;
background: linear-gradient(45deg, #ff6b6b, #ee5a52);
color: white;
padding: 1rem 2.5rem;
text-decoration: none;
border-radius: 50px;
font-weight: bold;
font-size: 1.1rem;
transition: all 0.3s ease;
box-shadow: 0 8px 25px rgba(238, 90, 82, 0.3);
animation: fadeInUp 1s ease-out 0.4s both;
cursor: pointer;
border: none;
}
.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 12px 35px rgba(238, 90, 82, 0.4);
}
.features {
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
padding: 5rem 0;
}
.section-title {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: #333;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.feature {
text-align: center;
padding: 2rem;
background: rgba(255, 255, 255, 0.8);
border-radius: 15px;
backdrop-filter: blur(10px);
transition: all 0.3s ease;
}
.feature:hover {
transform: translateY(-5px);
background: rgba(255, 255, 255, 0.95);
}
.feature-icon {
width: 60px;
height: 60px;
background: linear-gradient(45deg, #667eea, #764ba2);
border-radius: 50%;
margin: 0 auto 1rem;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.5rem;
}
.feature h3 {
margin-bottom: 1rem;
color: #333;
}
/* Shop Page Styles */
.shop-content {
background: white;
padding: 3rem 0 5rem;
}
.ebooks-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.ebook-card {
background: white;
border-radius: 15px;
padding: 2rem;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transition: all 0.3s ease;
border: 1px solid #f0f0f0;
position: relative;
overflow: hidden;
}
.ebook-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(45deg, #667eea, #764ba2);
}
.ebook-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.ebook-cover {
width: 100%;
height: 200px;
background: linear-gradient(135deg, #ff9a9e, #fecfef);
border-radius: 10px;
margin-bottom: 1.5rem;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.2rem;
font-weight: bold;
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.ebook-title {
font-size: 1.4rem;
font-weight: bold;
margin-bottom: 1rem;
color: #333;
}
.ebook-description {
color: #666;
margin-bottom: 1.5rem;
line-height: 1.6;
}
.ebook-price {
font-size: 1.5rem;
font-weight: bold;
color: #667eea;
margin-bottom: 1rem;
}
.buy-button {
display: block;
width: 100%;
background: linear-gradient(45deg, #667eea, #764ba2);
color: white;
padding: 1rem;
text-align: center;
text-decoration: none;
border-radius: 10px;
font-weight: bold;
transition: all 0.3s ease;
border: none;
cursor: pointer;
}
.buy-button:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}
/* Blog Page Styles */
.blog-content {
background: white;
padding: 3rem 0 5rem;
}
.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.blog-post {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transition: all 0.3s ease;
border: 1px solid #f0f0f0;
}
.blog-post:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.blog-image {
width: 100%;
height: 200px;
background: linear-gradient(135deg, #a8edea, #fed6e3);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.2rem;
font-weight: bold;
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.blog-post-content {
padding: 2rem;
}
.blog-date {
color: #667eea;
font-size: 0.9rem;
margin-bottom: 1rem;
}
.blog-title {
font-size: 1.4rem;
font-weight: bold;
margin-bottom: 1rem;
color: #333;
}
.blog-excerpt {
color: #666;
line-height: 1.6;
margin-bottom: 1.5rem;
}
.read-more {
color: #667eea;
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
}
.read-more:hover {
color: #764ba2;
}
/* Footer Styles */
footer {
background: #333;
color: white;
text-align: center;
padding: 3rem 0;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.footer-section h3 {
margin-bottom: 1rem;
color: #667eea;
}
.footer-section a {
color: #ccc;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-section a:hover {
color: #667eea;
}
/* Modal Styles */
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.5);
backdrop-filter: blur(5px);
}
.modal-content {
background-color: white;
margin: 15% auto;
padding: 2rem;
border-radius: 15px;
width: 80%;
max-width: 500px;
text-align: center;
position: relative;
animation: modalFadeIn 0.3s ease-out;
}
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
position: absolute;
right: 1rem;
top: 1rem;
cursor: pointer;
}
.close:hover {
color: #000;
}
/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes modalFadeIn {
from { opacity: 0; transform: scale(0.7); }
to { opacity: 1; transform: scale(1); }
}
/* Mobile Styles */
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
.nav-links {
gap: 1rem;
}
.nav-links a {
padding: 0.3rem 0.8rem;
font-size: 0.9rem;
}
.ebooks-grid, .blog-grid {
grid-template-columns: 1fr;
}
.social-links {
margin-top: 1rem;
}
nav {
flex-direction: column;
gap: 1rem;
}
}
</style>
</head>
<body>
<header>
<nav class="container">
<div class="logo">My Parent Mode is: ON</div>
<ul class="nav-links">
<li><a href="#" onclick="showPage('home')" class="nav-link active">Home</a></li>
<li><a href="#" onclick="showPage('shop')" class="nav-link">Shop</a></li>
<li><a href="#" onclick="showPage('blog')" class="nav-link">Blog</a></li>
</ul>
<div class="social-links">
<a href="https://instagram.com/" target="_blank" title="Follow us on Instagram">📷</a>
<a href="https://facebook.com/" target="_blank" title="Like us on Facebook">📘</a>
</div>
</nav>
</header>
<!-- HOME PAGE -->
<div id="home" class="page active">
<section class="hero">
<div class="container">
<h1>Welcome to Parenthood!</h1>
<p>Your ultimate guide to navigating the beautiful chaos of being a parent. Get expert advice, practical tips, and support for every stage of your parenting journey.</p>
<button class="cta-button" onclick="showPage('shop')">Explore Our Resources</button>
</div>
</section>
<section class="features">
<div class="container">
<h2 class="section-title">Why Parent Mode: ON?</h2>
<div class="features-grid">
<div class="feature">
<div class="feature-icon">💡</div>
<h3>Expert Guidance</h3>
<p>Evidence-based parenting advice from experienced parents and child development experts.</p>
</div>
<div class="feature">
<div class="feature-icon">🤝</div>
<h3>Community Support</h3>
<p>Connect with other parents who understand your journey and share your challenges.</p>
</div>
<div class="feature">
<div class="feature-icon">📚</div>
<h3>Practical Resources</h3>
<p>Actionable tips and tools you can implement immediately in your daily parenting routine.</p>
</div>
<div class="feature">
<div class="feature-icon">🎯</div>
<h3>Age-Specific Content</h3>
<p>Tailored advice for every stage from newborn to teenager and beyond.</p>
</div>
</div>
</div>
</section>
</div>
<!-- SHOP PAGE -->
<div id="shop" class="page">
<section class="shop-content">
<div class="container">
<h2 class="section-title">Parenting Resource Shop</h2>
<p style="text-align: center; margin-bottom: 2rem; color: #666; font-size: 1.1rem;">Discover our collection of practical parenting guides and resources</p>
<div class="ebooks-grid">
<div class="ebook-card">
<div class="ebook-cover">First Time Parent Survival Guide</div>
<h3 class="ebook-title">The New Parent's Complete Handbook</h3>
<p class="ebook-description">Everything you need to know for your first year of parenthood. From feeding and sleeping to developmental milestones and self-care tips.</p>
<div class="ebook-price">$24.99</div>
<button class="buy-button" onclick="openModal()">Buy Now</button>
</div>
<div class="ebook-card">
<div class="ebook-cover">Toddler Taming Techniques</div>
<h3 class="ebook-title">Mastering the Toddler Years</h3>
<p class="ebook-description">Navigate tantrums, bedtime battles, and picky eating with confidence. Proven strategies for raising happy, well-behaved toddlers.</p>
<div class="ebook-price">$19.99</div>
<button class="buy-button" onclick="openModal()">Buy Now</button>
</div>
<div class="ebook-card">
<div class="ebook-cover">Teen Communication</div>
<h3 class="ebook-title">Connecting with Your Teenager</h3>
<p class="ebook-description">Build stronger relationships with your teen through effective communication, trust-building, and understanding their unique challenges.</p>
<div class="ebook-price">$22.99</div>
<button class="buy-button" onclick="openModal()">Buy Now</button>
</div>
<div class="ebook-card">
<div class="ebook-cover">Working Parent Balance</div>
<h3 class="ebook-title">The Working Parent's Survival Kit</h3>
<p class="ebook-description">Practical strategies for balancing career and family life. Time management, stress reduction, and making the most of quality time.</p>
<div class="ebook-price">$21.99</div>
<button class="buy-button" onclick="openModal()">Buy Now</button>
</div>
<div class="ebook-card">
<div class="ebook-cover">Mindful Parenting</div>
<h3 class="ebook-title">Peaceful Parenting in Chaos</h3>
<p class="ebook-description">Learn mindfulness techniques to stay calm, present, and connected with your children even during the most challenging moments.</p>
<div class="ebook-price">$18.99</div>
<button class="buy-button" onclick="openModal()">Buy Now</button>
</div>
<div class="ebook-card">
<div class="ebook-cover">Family Activities</div>
<h3 class="ebook-title">365 Family Fun Activities</h3>
<p class="ebook-description">Creative, educational, and fun activities to keep your family engaged all year round. Indoor and outdoor ideas for all ages.</p>
<div class="ebook-price">$16.99</div>
<button class="buy-button" onclick="openModal()">Buy Now</button>
</div>
</div>
</div>
</section>
</div>
<!-- BLOG PAGE -->
<div id="blog" class="page">
<section class="blog-content">
<div class="container">
<h2 class="section-title">Parent Mode: ON Blog</h2>
<p style="text-align: center; margin-bottom: 2rem; color: #666; font-size: 1.1rem;">Real stories, practical tips, and expert advice from the parenting trenches</p>
<div class="blog-grid">
<article class="blog-post">
<div class="blog-image">Sleep Training Success</div>
<div class="blog-post-content">
<div class="blog-date">December 15, 2024</div>
<h3 class="blog-title">5 Gentle Sleep Training Methods That Actually Work</h3>
<p class="blog-excerpt">Struggling with sleepless nights? Discover proven, gentle sleep training techniques that help both babies and parents get the rest they need...</p>
<a href="#" class="read-more">Read More →</a>
</div>
</article>
<article class="blog-post">
<div class="blog-image">Picky Eater Solutions</div>
<div class="blog-post-content">
<div class="blog-date">December 12, 2024</div>
<h3 class="blog-title">Winning the War Against Picky Eating</h3>
<p class="blog-excerpt">Transform mealtime battles into peaceful family dining experiences with these creative strategies for dealing with picky eaters of all ages...</p>
<a href="#" class="read-more">Read More →</a>
</div>
</article>
<article class="blog-post">
<div class="blog-image">Screen Time Balance</div>
<div class="blog-post-content">
<div class="blog-date">December 10, 2024</div>
<h3 class="blog-title">Finding the Right Screen Time Balance</h3>
<p class="blog-excerpt">Navigate the digital world with your children. Learn how to set healthy boundaries while embracing technology as a learning tool...</p>
<a href="#" class="read-more">Read More →</a>
</div>
</article>
<article class="blog-post">
<div class="blog-image">Self-Care for Parents</div>
<div class="blog-post-content">
<div class="blog-date">December 8, 2024</div>
<h3 class="blog-title">Self-Care Isn't Selfish: A Parent's Guide</h3>
<p class="blog-excerpt">Why taking care of yourself isn't just important—it's essential. Practical self-care strategies that fit into even the busiest parenting schedule...</p>
<a href="#" class="read-more">Read More →</a>
</div>
</article>
<article class="blog-post">
<div class="blog-image">Sibling Rivalry</div>
<div class="blog-post-content">
<div class="blog-date">December 5, 2024</div>
<h3 class="blog-title">Peace at Home: Managing Sibling Rivalry</h3>
<p class="blog-excerpt">Turn sibling conflicts into opportunities for growth. Learn how to mediate disputes, foster cooperation, and build stronger family bonds...</p>
<a href="#" class="read-more">Read More →</a>
</div>
</article>
<article class="blog-post">
<div class="blog-image">Positive Discipline</div>
<div class="blog-post-content">
<div class="blog-date">December 3, 2024</div>
<h3 class="blog-title">Positive Discipline That Gets Results</h3>
<p class="blog-excerpt">Move beyond punishment to teaching moments. Discover discipline strategies that build character while maintaining respect and connection...</p>
<a href="#" class="read-more">Read More →</a>
</div>
</article>
</div>
</div>
</section>
</div>
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h3>Quick Links</h3>
<p><a href="#" onclick="showPage('home')">Home</a></p>
<p><a href="#" onclick="showPage('shop')">Shop</a></p>
<p><a href="#" onclick="showPage('blog')">Blog</a></p>
</div>
<div class="footer-section">
<h3>Support</h3>
<p><a href="mailto:support@parentmodeon.com">support@parentmodeon.com</a></p>
<p><a href="#">FAQ</a></p>
<p><a href="#">Returns</a></p>
</div>
<div class="footer-section">
<h3>Follow Us</h3>
<p><a href="https://instagram.com/" target="_blank">📷 Instagram</a></p>
<p><a href="https://facebook.com/" target="_blank">📘 Facebook</a></p>
</div>
</div>
<p>© 2024 My Parent Mode is: ON. All rights reserved.</p>
</div>
</footer>
<!-- Modal for Gumroad integration -->
<div id="purchaseModal" class="modal">
<div class="modal-content">
<span class="close" onclick="closeModal()">×</span>
<h2>Complete Your Purchase</h2>
<p>You'll be redirected to our secure payment page to complete your purchase.</p>
<div style="margin: 2rem 0;">
<input type="url" id="gumroadLink" placeholder="Enter your Gumroad link here" style="width: 100%; padding: 1rem; border: 2px solid #ddd; border-radius: 8px; margin-bottom: 1rem;">
<button onclick="proceedToPurchase()" style="background: linear-gradient(45deg, #2E8B8B, #4A4A95); color: white; padding: 1rem 2rem; border: none; border-radius: 8px; cursor: pointer; font-weight: bold;">Proceed to Payment</button>
</div>
</div>
</div>
<script>
// Page navigation
function showPage(pageName) {
// Hide all pages
const pages = document.querySelectorAll('.page');
pages.forEach(page => page.classList.remove('active'));
// Remove active class from all nav links
const navLinks = document.querySelectorAll('.nav-link');
navLinks.forEach(link => link.classList.remove('active'));
// Show selected page
document.getElementById(pageName).classList.add('active');
// Add active class to clicked nav link
event.target.classList.add('active');
// Scroll to top
window.scrollTo(0, 0);
}
// Add some interactive animations
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = '1';
entry.target.style.transform = 'translateY(0)';
}
});
}, observerOptions);
// Initialize animations when page loads
document.addEventListener('DOMContentLoaded', function() {
// Observe all cards for animation
document.querySelectorAll('.ebook-card, .blog-post, .feature').forEach(card => {
card.style.opacity = '0';
card.style.transform = 'translateY(30px)';
card.style.transition = 'all 0.6s ease';
observer.observe(card);
});
});
// Smooth transitions between pages
document.querySelectorAll('.nav-link').forEach(link => {
link.addEventListener('click', function(e) {
e.preventDefault();
const targetPage = this.textContent.toLowerCase();
showPage(targetPage);
});
});
</script>
</body>
</html>