/* Styles de base */
body {
    font-family: 'Comic Sans MS', sans-serif; /* Un style décalé et amusant */
    margin: 0;
    padding: 0;
    background-color: #ffeb3b; /* Jaune vif ! */
}

header {
    background-color: #f50057; /* Rose flashy */
    color: #fff;
    padding: 20px;
    text-align: center;
    transform: rotate(-1.5deg); /* Tilt pour un effet décalé */
}

.header-content h1 {
    margin: 0;
    font-size: 3rem;
    text-shadow: 2px 2px #000; /* Ombre fun */
}

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

/* Menu de navigation */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: #03a9f4; /* Bleu flashy */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    padding: 15px;
    transform: rotate(-5deg); /* Plus de folie */
}

nav ul li a:hover {
    background-color: #f50057; /* Effet inverse sur hover */
    border-radius: 10px;
    padding: 15px 30px;
}

/* Sections */
main {
    padding: 30px;
}

section {
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    color: #d500f9; /* Violet punchy */
    text-shadow: 2px 2px #000;
}

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

.crazy-img {
    width: 80%;
    border-radius: 20px;
    transform: rotate(3deg); /* Effet tordu */
}

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

.wild-list li {
    font-size: 1.5rem;
    color: #d500f9;
    margin: 10px 0;
}

/* Pied de page */
footer {
    background-color: #f50057;
    color: white;
    text-align: center;
    padding: 20px;
    transform: rotate(1deg);
}

footer p {
    margin: 10px 0;
}

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

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

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

    section h2 {
        font-size: 2rem;
    }
}
