/* Styles de base */
body {
    font-family: 'Arial Black', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #00e676; /* Vert fluo */
}

header {
    background-color: #ff1744; /* Rouge vif */
    color: #fff;
    padding: 20px;
    text-align: center;
    animation: shake 1s infinite; /* Animation déjantée */
}

.header-content h1 {
    font-size: 3.5rem;
    letter-spacing: 3px;
    text-shadow: 4px 4px #000; /* Ombre imposante */
}

.phone-number {
    font-size: 1.5rem;
    margin-top: 10px;
}

/* Animation shake */
@keyframes shake {
    0% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
    100% { transform: rotate(-2deg); }
}

/* Menu de navigation */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    background-color: #2979ff; /* Bleu flash */
}

nav ul li a {
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    padding: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #d500f9; /* Violet surprenant */
}

/* Sections */
main {
    padding: 40px;
    text-align: center;
}

section h2 {
    font-size: 2.8rem;
    color: #ff3d00; /* Orange punchy */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 3px 3px #000;
}

section p {
    font-size: 1.3rem;
    color: #333;
    max-width: 800px;
    margin: 10px auto;
}

.wild-img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Liste fun */
.crazy-list {
    list-style: none;
    padding-left: 0;
}

.crazy-list li {
    font-size: 1.5rem;
    color: #fff;
    background-color: #ff4081;
    margin: 10px 0;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Pied de page */
footer {
    background-color: #ff1744;
    color: white;
    text-align: center;
    padding: 20px;
}

footer p {
    margin: 10px 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin-bottom: 10px;
    }

    .header-content h1 {
        font-size: 2.5rem;
    }

    .phone-number {
        font-size: 1.2rem;
    }

    section h2 {
        font-size: 2rem;
    }

    section p {
        font-size: 1.1rem;
    }
}
