/* General styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Header styles */
header {
    background-color: black;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: pink;
}

/* Responsive Menu */
#menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background-color: none;
        width: 100%;
        position: absolute;
        z-index: 1;
        top: 90px;
        right: 20px;
        text-align: right;
         text-shadow: 1px 1px 0 black, -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black; /* Effet de bordure colorée */
    }

    nav ul.active {
        display: flex;
    }

    #menu-icon {
        display: block;
    }

    nav ul li {
        margin: 10px 0;
    }
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #ff0080, #00c0ff);
    color: white;
    padding: 50px 20px;
    text-align: center;
}


.slider {
    position: relative;
    max-width: 80%;
    margin: auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    text-align: center;
    background: #f0f0f0;
    border: 1px solid #ddd;
    font-size: 24px;
    height: 250px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    font-size: 24px;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

/* CTA Button */
.cta-button {
    background-color: yellow;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: orange;
}

/* Services section */
.services {
    padding: 50px 20px;
    text-align: center;
}

.services h2 {
    color: black;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.service-item {
    background: radial-gradient(circle, #ffff00, #00c0ff);
      padding: 20px;
    margin: 10px;
    border-radius: 5px;
    width: 30%;
}
.service-item:hover {
    background-color: pink;
}
.service-item img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .service-item {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .service-item {
        width: 90%;
    }
}

/* Pricing section */
.pricing {
    padding: 50px 20px;
    text-align: center;
}

.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.price-item {
    background: radial-gradient(circle, #ffff00, #ff0080);
    color: black;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    width: 30%;
}

@media (max-width: 768px) {
    .price-item {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .price-item {
        width: 90%;
    }
}

/* Testimonials section */
.testimonials {
    background-color: pink;
    color: black;
    padding: 50px 20px;
    text-align: center;
}

/* Contact section */
.contact {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}

.contact h2 {
    color: #333;
}

.contact a {
    color: blue;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

footer p {
    margin: 0;
}
