body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* Fond avec flou + couleur incrustée */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("fond.png") center/cover no-repeat;
    filter: blur(50px);
    z-index: -2;
    transform: scale(1.1);
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #087697;
    mix-blend-mode: darken;
    opacity: 0.6;
    z-index: -1;
    animation: bgPulse 8s ease-in-out infinite alternate;
}

@keyframes bgPulse {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 0.8;
    }
}

.container {
    max-width: 700px;
    margin: 30px auto;
    background: #fdf6e3;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    animation: fadeIn 1.5s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    text-align: center;
    margin-bottom: 15px;
    animation: slideDown 1.2s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header img {
    height: 80px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

h1 {
    font-family: "Brush Script MT", cursive;
    font-size: 2.2em;
    margin: 5px 0;
    color: #003366;
}

.slogan {
    font-weight: bold;
    color: #004d80;
    margin-top: 5px;
    animation: pulse 2.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        letter-spacing: 1px;
    }

    50% {
        opacity: 0.7;
        letter-spacing: 3px;
    }
}

hr {
    border: none;
    border-top: 2px solid #004d80;
    margin: 20px 0;
}

h2 {
    color: #004d80;
    font-size: 1.3em;
    margin-bottom: 10px;
}

/* Icônes animées */
h2 span.icon {
    display: inline-block;
    font-size: 1.4em;
    animation: bounceIn 1s ease;
    transition: transform 0.4s ease, color 0.4s ease;
}

h2 span.icon:hover {
    transform: rotate(15deg) scale(1.2);
    color: #00bcd4;
    cursor: pointer;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    60% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

section {
    animation: fadeSection 1s ease forwards;
    opacity: 0;
}

section:nth-of-type(1) {
    animation-delay: 0.5s;
}

section:nth-of-type(2) {
    animation-delay: 1s;
}

section:nth-of-type(3) {
    animation-delay: 1.5s;
}

@keyframes fadeSection {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    font-size: 1em;
    border-bottom: 1px dashed #ccc;
    transition: all 0.3s ease;
}

ul li:hover {
    background: rgba(99, 214, 250, 0.1);
    transform: scale(1.02);
    box-shadow: 0 0 8px rgba(99, 214, 250, 0.5);
    border-radius: 5px;
    cursor: pointer;
}

.prix {
    font-weight: bold;
    color: #008080;
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #333;
    animation: fadeIn 2s ease forwards;
    opacity: 0;
    animation-delay: 2s;
}

footer em {
    display: block;
    margin-top: 8px;
    font-style: italic;
    color: #004d80;
}
