* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

header {
    background: #232526;
    color: #bbfcfb;
    padding: 12px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

header ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
}

header a {
    color: #bbfcfb;
    text-decoration: none;
    font-weight: bold;
    font-size: 17px;
    transition: color 0.2s;
}

header a:hover {
    color: #fff;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #18191a;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding-top: 60px;
    flex-direction: column;
}

.slider-container {
    width: 90%;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 20px;
}

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

.slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.slide img {
    width: 65%;
    height: auto;
    border-radius: 20px;
}

.content {
    position: absolute;
    right: 5%;
    width: 30%;
    text-align: left;
    margin-left: 40px;
    padding-left: 20px;
}

.content small {
    font-size: 1.2rem;
    color: #aaa;
    display: block;
    margin-bottom: 10px;
}

.content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;  /* Correction ici, le texte h1 est maintenant blanc */
}

.btn {
    display: inline-block;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #f0f0f0;
}

.dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dots button {
    border: none;
    background-color: #555;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dots button.active {
    background-color: #fff;
}

.dots button:hover {
    background-color: #aaa;
}
