body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('fond.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
}

.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 50px;
    font-family: 'Playfair Display', serif;
}

}

/* Ajout pour la page Nos Réalisations */
.realisations-container {
    background: url('fond.png') no-repeat center center fixed;
    background-size: cover;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
}

footer h2 {
    font-size: 24px;
}

footer p a {
    color: #fff;
    text-decoration: none;
}

.container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero .subtitle {
    font-size: 24px;
    font-family: 'Arial', sans-serif;
    margin-top: 10px;
    color: #fff;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 50px;
}

.artists {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.artist {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
}

.artist h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 10px;
}

.artist p {
    font-size: 16px;
    margin-bottom: 10px;
}

.artist a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}