/* Styles globaux */
body {
    font-family: 'Arial', sans-serif;
    background-image: url('IMG/fancy-cushion.jpg');
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    color: #fff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
}

/* Header */
header {
    padding: 15px 0;
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section générale */
h2 {
    font-size: 28px;

    margin-bottom: 20px;
    font-weight: 700;
}

h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Texte des sections */
p {
    font-size: 16px;
    color: #000;
    margin-bottom: 30px;
    text-align: center;
}

/* Galerie d'images - Ajout de flexbox pour le positionnement */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.image-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.image-item:hover img {
    transform: scale(1.05);
}

.image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

/* Galerie audio */
.audio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.audio-item {
    text-align: center;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audio-item img {
    width: 80%;
    margin-bottom: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.audio-item audio {
    width: 100%;
    margin-top: 10px;
    border-radius: 8px;
}

.audio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.audio-item:hover img {
    transform: scale(1.05);
}

/* Spotify Embed */
iframe {
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-bottom: 40px;
}

/* Footer */
footer {
    background: linear-gradient(#000, #222);
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    margin-top: 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }

    .image-item, .audio-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    iframe {
        height: 130px;
    }
}
