/* style.css */

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #ff9a9e, #fad0c4);
    color: #333;
}

header {
    background-color: #ff6f61;
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ffd700;
}

section {
    padding: 40px 20px;
    text-align: center;
}

section#presentation {
    background-color: #ffe4e1;
}

section#artistes {
    background-color: #e0ffff;
}

section#galerie {
    background-color: #fafad2;
}

section#melanie {
    background-color: #e6e6fa; /* Lavande claire */
    font-style: italic;
}

h2 {
    color: #ff4500;
    margin-bottom: 20px;
}

p, li {
    font-size: 18px;
    line-height: 1.6;
}

a {
    color: #008b8b;
}

a:hover {
    text-decoration: underline;
    color: #00ced1;
}

.photo {
    width: 250px;
    margin: 10px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.photo:hover {
    transform: scale(1.05);
}

footer {
    background-color: #20b2aa;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
}
