/* Reset pour harmoniser le style entre les navigateurs */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background-color: #f0e6f6;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Style pour l'en-tête du site */
header {
    background: linear-gradient(135deg, #ff4081, #673ab7);
    color: white;
    padding: 50px 20px;
    text-align: center;
    border-bottom-left-radius: 50px 20px;
    border-bottom-right-radius: 50px 20px;
}

header h1 {
    margin: 0;
    font-size: 32px;
    text-shadow: 2px 2px 5px #ff80ab;
}

header p {
    margin-top: 10px;
    font-size: 16px;
    color: #e0bee0;
    text-shadow: 1px 1px 3px #ba68c8;
}

/* Style pour la navigation */
nav {
    background-color: #ff7043;
    padding: 15px;
    text-align: center;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    margin: 0 15px;
    background-color: #26c6da;
    border-radius: 20px;
    display: inline-block;
    transition: background-color 0.4s ease, transform 0.2s ease;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px #00796b;
}

nav a:hover {
    background-color: #00897b;
    transform: scale(1.1);
}

/* Style pour le contenu avec des formes fantaisistes */
.content {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #7e57c2;
    text-shadow: 2px 2px 5px #d1c4e9;
}

.wavy-background {
    position: relative;
    padding: 50px;
    background: linear-gradient(145deg, #ffcc80, #ffa726);
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.wavy-background::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: inherit;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 50%);
}

.wavy-background::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: inherit;
    clip-path: polygon(0 50%, 100% 100%, 100% 0, 0 100%);
}

.wavy-item {
    background-color: #ffeb3b;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 250px;
    height: 250px;
    padding: 30px;
    margin: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.wavy-item:hover {
    transform: rotate(10deg) scale(1.05);
}

.wavy-item img {
    max-width: 80%;
    border-radius: 50%;
    margin-bottom: 20px;
}

.wavy-item h3 {
    font-size: 24px;
    color: #3e2723;
}

.wavy-item p {
    font-size: 14px;
    color: #444;
}

/* Style pour le pied de page */
footer {
    background: linear-gradient(135deg, #26c6da, #00acc1);
    color: white;
    text-align: center;
    padding: 20px;
    border-top-left-radius: 50px 20px;
    border-top-right-radius: 50px 20px;
    font-size: 14px;
    position: relative;
}

footer p {
    font-size: 16px;
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .wavy-item {
        width: 180px;
        height: 180px;
    }

    nav a {
        display: block;
        margin: 10px 0;
    }
}
