/* Global Styles */
body {
    font-family: 'Comic Sans MS', sans-serif;
    background-color: #ffeb3b; /* Jaune joyeux */
    margin: 0;
    padding: 0;
}

header {
    background-color: #f44336; /* Rouge énergique */
    color: white;
    padding: 20px;
    text-align: center;
}

.header-content h1 {
    font-size: 2.8rem;
    margin: 0;
}

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

/* Navigation Menu */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: #03a9f4; /* Bleu vif */
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    padding: 10px;
}

nav ul li a:hover {
    background-color: #e91e63; /* Rose éclatant */
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Main Content */
main {
    padding: 30px;
    text-align: center;
}

.hero, .about, .services, .contact {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.hero h2, .about h2, .services h2, .contact h2 {
    font-size: 2.5rem;
    color: #4caf50; /* Vert énergique */
}

.happy-img {
    max-width: 80%;
    margin: 20px auto;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.happy-img:hover {
    transform: scale(1.1);
}

/* Service List */
.service-list {
    list-style-type: none;
    padding: 0;
}

.service-list li {
    font-size: 1.3rem;
    margin: 10px 0;
    background-color: #ff9800; /* Orange énergique */
    padding: 15px;
    border-radius: 8px;
    color: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Call-to-action Button */
.cta-button {
    background-color: #4caf50;
    color: white;
    padding: 15px 30px;
    font-size: 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
}

.cta-button:hover {
    background-color: #388e3c;
    transition: background-color 0.3s ease;
}

/* Footer */
footer {
    background-color: #f44336;
    color: white;
    padding: 20px;
    text-align: center;
}

footer p {
    margin: 5px 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;
    }

    .cta-button {
        font-size: 1.2rem;
    }
}
