Yadhamza
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yadhamza - Services & Coaching</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
:root {
--primary: #00c853;
--dark: #121212;
--light: #f8f9fa;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Poppins', sans-serif;
background: var(--dark);
color: white;
line-height: 1.6;
}
header {
background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://source.unsplash.com/random/1600x900/?morocco') center/cover no-repeat;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 0 20px;
}
.hero h1 {
font-size: 4rem;
margin-bottom: 20px;
}
.hero p {
font-size: 1.5rem;
max-width: 700px;
margin: 0 auto 30px;
}
.btn {
display: inline-block;
background: var(--primary);
color: white;
padding: 15px 40px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: 0.3s;
}
.btn:hover {
background: #00b140;
transform: scale(1.05);
}
section {
padding: 100px 20px;
max-width: 1200px;
margin: 0 auto;
}
h2 {
text-align: center;
font-size: 2.8rem;
margin-bottom: 60px;
color: var(--primary);
}
.services {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.card {
background: #1e1e1e;
padding: 40px 25px;
border-radius: 20px;
text-align: center;
transition: 0.3s;
}
.card:hover {
transform: translateY(-15px);
box-shadow: 0 20px 40px rgba(0, 200, 83, 0.2);
}
footer {
background: #0a0a0a;
text-align: center;
padding: 60px 20px;
}
.whatsapp {
position: fixed;
bottom: 20px;
right: 20px;
background: #25D366;
color: white;
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 30px;
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
z-index: 1000;
text-decoration: none;
}
</style>
</head>
<body>
<header>
<div class="hero">
<h1>Yadhamza</h1>
<p>Services de qualité • Coaching • Développement personnel • Business au Maroc</p>
<a href="#contact" class="btn">Me Contacter Maintenant</a>
</div>
</header>
<section id="services">
<h2>Mes Services</h2>
<div class="services">
<div class="card">
<h3>💪 Coaching Personnel</h3>
<p>Transformation physique et mentale. Discipline, mindset et résultats rapides.</p>
</div>
<div class="card">
<h3>🌐 Création de Sites Web</h3>
<p>Site professionnel, e-commerce ou landing page moderne et rapide.</p>
</div>
<div class="card">
<h3>📈 Business & Marketing</h3>
<p>Conseils pour lancer ou développer ton activité au Maroc.</p>
</div>
</div>
</section>
<section style="background:#1e1e1e; text-align:center;">
<h2>Pourquoi choisir Yadhamza ?</h2>
<p style="max-width:800px; margin:0 auto; font-size:1.3rem;">
Basé à Casablanca • Résultats concrets • Accompagnement personnalisé • Tarifs abordables
</p>
</section>
<footer id="contact">
<h2>Contactez-moi</h2>
<p style="font-size:1.4rem; margin:30px 0;">
📞 Téléphone / WhatsApp : <strong>+212 645577023</strong><br>
📍 Casablanca, Maroc
</p>
<a href="https://wa.me/212645577023" class="btn" target="_blank">Discuter sur WhatsApp</a>
<p style="margin-top:50px; opacity:0.7;">© 2026 Yadhamza - Tous droits réservés</p>
</footer>
<!-- Bouton WhatsApp flottant -->
<a href="https://wa.me/212645577023" class="whatsapp" target="_blank">💬</a>
</body>
</html>
Commentaires
Enregistrer un commentaire