/* Style global */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1e1e2e;
    /* Fond sombre pour correspondre au style entreprise */
    color: #dddddd;
    /* Texte clair */
}

/* Barre de navigation */
#taskbar {
    background-color: #29293d;
    color: white;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    /* Ombre ajoutée */
}

#navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

#nav-links {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
}

#nav-links li {
    margin: 0 10px;
}

#nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

#nav-links a:hover {
    color: #f47521;
    /* Orange clair */
}

/* Contenu principal */
main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    background-color: #29293d;
    /* Fond sombre */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    text-align: center;
}

h1 {
    color: #f47521;
    margin-bottom: 30px;
    font-size: 28px;
}

/* Section des cartes */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 20px;
}

.card {
    background-color: #2b2b2b;
    border: 1px solid #444;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 300px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.card h2 {
    font-size: 1.5em;
    color: #f47521;
    margin-bottom: 10px;
}

.card p {
    color: #dddddd;
    font-size: 1em;
    margin-bottom: 20px;
}

.card .button {
    display: inline-block;
    padding: 10px 15px;
    background-color: #f47521;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.card .button:hover {
    background-color: #e36202;
    transform: scale(1.05);
}

/* Section des détails du projet */
.project-details {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background-color: #29293d;
    /* Fond sombre */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.project-details article {
    margin-bottom: 20px;
}

.project-details h2 {
    font-size: 1.5em;
    color: #f47521;
    margin-bottom: 15px;
}

.project-details p {
    font-size: 1em;
    color: #dddddd;
    line-height: 1.8;
}

/* Pied de page */
footer {
    background-color: #29293d;
    color: #dddddd;
    padding: 10px 20px;
    text-align: center;
}