<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"
/>
<title>L'Éclat d'un Jour - Événementiel</title>
<style>
body {
margin: 0;
font-family: 'Segoe UI', sans-serif;
background:
#fff;
color: #333;
}
/* Navigation */
nav {
position: sticky;
top: 0;
background:
#fff;
padding: 12px;
text-align: center;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
z-index: 100;
}
nav a {
margin: 0 20px;
text-decoration: none;
color: #e91e63;
font-weight: bold;
transition: color 0.3s;
}
nav a:hover {
color: #ad1457;
}
/* Header */
header {
background: linear-gradient(#fce4ec, #ffffff);
text-align: center;
padding: 100px 20px;
}
header h1 {
font-size: 3rem;
color: #e91e63;
margin-bottom: 15px;
}
header p.slogan {
font-size:
1.4rem;
color: #ad1457;
margin-bottom: 25px;
}
header p.presentation {
font-size:
1.1rem;
color: #555;
max-width: 650px;
margin: auto;
line-height: 1.6;
}
/* Sections */
section {
padding: 80px 20px;
max-width: 1100px;
margin: auto;
}
section h2 {
text-align: center;
color: #e91e63;
margin-bottom: 50px;
font-size: 2rem;
}
/* Galerie */
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit,
minmax(250px, 1fr));
gap: 20px;
}
.gallery img {
width: 100%;
border-radius:
15px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
transition: transform 0.3s;
}
.gallery img:hover {
transform: scale(1.03);
}
/* Formulaire de
contact */
form {
display: flex;
flex-direction: column;
gap: 15px;
max-width: 500px;
margin: auto;
}
input, textarea, button {
padding: 12px;
border: 1px solid #ddd;
border-radius:
8px;
font-size: 1rem;
font-family: inherit;
}
textarea {
resize: vertical;
}
button {
background:
#e91e63;
color: #fff;
border: none;
cursor: pointer;
font-size:
1.1rem;
transition:
background 0.3s;
}
button:hover {
background:
#d81b60;
}
/* Contact infos
*/
.contact-infos {
text-align: center;
font-size:
1.2rem;
margin-bottom: 40px;
color: #555;
}
.contact-infos a {
color: #e91e63;
text-decoration: none;
font-weight: bold;
}
/* Réseaux sociaux
*/
.social {
text-align: center;
margin-top: 25px;
}
.social a {
text-decoration: none;
color: #e91e63;
font-weight: bold;
font-size:
1.1rem;
transition: color 0.3s;
}
.social a:hover {
color: #ad1457;
}
/* Footer */
footer {
text-align: center;
padding: 20px;
font-size:
0.9rem;
background:
#fce4ec;
color: #555;
margin-top: 50px;
}
</style>
</head>
<body>
<!-- Navigation
-->
<nav>
<a
href="#accueil">Accueil</a>
<a
href="#galerie">Galerie</a>
<a
href="#contact">Contact</a>
</nav>
<!-- Accueil
-->
<header
id="accueil">
<h1>L'Éclat
d'un Jour</h1>
<p
class="slogan">De l’idée au détail, je suis là pour faire briller
vos plus beaux moments avec créativité et élégance</p>
<p class="presentation">
Bonjour, je suis
Clara, passionnée par la décoration événementielle. J’aime sublimer les
événements pour qu’ils restent gravés dans les mémoires de chacun.
Mon matériel
peut également être mis à la location sans prestation complète.
</p>
</header>
<!-- Galerie
-->
<section
id="galerie">
<h2>Nos
réalisations</h2>
<div
class="gallery">
<img src="images/photo1.jpg" alt="Événement
1">
<img src="images/photo2.jpg" alt="Événement
2">
<img src="images/photo3.jpg" alt="Événement
3">
<img src="images/photo4.jpg" alt="Événement
4">
<img src="images/photo5.jpg" alt="Événement
5">
<img src="images/photo6.jpg" alt="Événement
6">
<img src="images/photo7.jpg" alt="Événement
7">
<img src="images/photo8.jpg" alt="Événement
8">
</div>
</section>
<!-- Contact
-->
<section
id="contact">
<h2>Contactez-nous</h2>
<div
class="contact-infos">
📞
Téléphone : <a href="tel:0616258761">06 16 25 87
61</a><br>
✉️
Email : <a
href="mailto:claradealmeida0401@gmail.com">claradealmeida0401@gmail.com</a>
</div>
<form action="mailto:claradealmeida0401@gmail.com"
method="post" enctype="text/plain">
<input
type="text" name="nom"
placeholder="Votre nom" required>
<input
type="email" name="email" placeholder="Votre email" required>
<textarea name="message"
placeholder="Votre message" rows="5"></textarea>
<button type="submit">Envoyer</button>
</form>
<div
class="social">
<p>Suivez-nous sur Instagram : <a
href="https://www.instagram.com/eclat_dun_jour?igsh=MTAwYnVjbXJqam4wZA%3D%3D&utm_source=qr"
target="_blank">@eclat_dun_jour</a></p>
</div>
</section>
<!-- Footer -->
<footer>
© 2025 L'Éclat
d'un Jour - Tous droits réservés
</footer>
</body>
</html>