/* Reset de styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    padding: 0;
    margin: 0;
}

header {
    background-color: #ff4500; /* orange fluo */
    padding: 10px 0;
    text-align: center;
}

nav h1 {
    color: #fff;
    font-size: 30px;
}

main {
    padding: 20px;
}

.tabs {
    display: flex;
    flex-direction: column;
}

.tab-list {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.tab-item {
    padding: 10px 20px;
    background-color: #222;
    color: #fff;
    cursor: pointer;
    margin: 0 10px;
    transition: background-color 0.3s;
    border-radius: 5px;
}

.tab-item.active {
    background-color: #ff4500; /* orange fluo */
}

.tab-item:hover {
    background-color: #444;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    text-align: center;
    padding: 20px;
    background-color: #333;
    border-radius: 5px;
}

/* Style pour les images dans chaque section */
.section-image {
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Responsive design */
@media (max-width: 768px) {
    .tab-list {
        flex-direction: column;
    }

    .tab-item {
        margin: 10px 0;
    }

    .section-image {
        width: 100%;
    }
}
