* {
    padding: 0;
    margin: 0;
}

body {
    background-color: #010314;
    color: #eeedf0;
    font-family: system-ui;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body[data-theme="light"] {
    background-color: #eeedf0;
    color: #010314;
}

body[data-theme="light"] .theme-label,
body[data-theme="light"] .lang-label,
body[data-theme="light"] .nav-link {
    color: #010314;
}

body[data-theme="light"] h1:before,
body[data-theme="light"] li:before,
body[data-theme="light"] .dots,
body[data-theme="light"] .cli-fill,
body[data-theme="light"] .section-title:before,
body[data-theme="light"] .info-list li:before,
body[data-theme="light"] .available {
    color: #e39c02;
}

body[data-theme="light"] .info-text,
body[data-theme="light"] .info-value {
    color: #010314;
}

body[data-theme="light"] .nav-link:hover {
    text-decoration-color: #e39c02;
}

h1 {
    font-size: xxx-large;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    width: 100%;
}

h1:before {
    content: ">";
    padding-right: 10px;
    color: #f0a607;
    flex-shrink: 0;
}

.description {
    font-size: 14px;
    text-transform: capitalize;
    text-align: right;
}

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

li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

li:before {
    content: "+_ ";
    color: #f0a607;
    flex-shrink: 0;
}

.project-name {
    text-transform: lowercase;
    flex-shrink: 0;
}

.dots {
    flex: 1;
    border-bottom: 2px dotted #f0a607;
    margin: 0 10px;
    height: 1px;
}

.status {
    flex-shrink: 0;
}

.done {
    text-transform: capitalize;
    color: #eeedf0;
}

.in-progress {
    text-transform: capitalize;
    color: deeppink;
}

.client-desc {
    margin-top: 10px;
    font-size: 15px;
}

.client-title {
    margin-top: 30px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    width: 100%;
}

.client-title:before {
    content: "__";
    color: #f0a607;
}

.container-base {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.center-div {
    width: 30vw;
    min-width: 400px;
}

.text-hover {
    cursor: none;
}

/* Navigation en haut */
.top-nav {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-left {
    display: flex;
    gap: 10px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-label {
    color: #eeedf0;
    font-size: 12px;
}

.nav-link {
    color: #eeedf0;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
    text-align: right;
}

.nav-link:hover {
    text-decoration: underline;
    text-decoration-color: #f0a607;
}

/* CLI Fill pour les tirets */
.name-text {
    flex-shrink: 0;
}

.cli-fill {
    flex: 1;
    margin-left: 10px;
    overflow: hidden;
    white-space: nowrap;
    color: #f0a607;
    opacity: 0.8;
}

.cli-fill::after {
    font-size: 12px;
    content: "..........................................................................................................................................................................................";
}

.info-section {
    margin-top: 30px;
}

.section-title {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

.section-title:before {
    content: "__";
    color: #f0a607;
    padding-right: 10px;
}

.info-content {
    margin-left: 20px;
}

.info-text {
    font-size: 14px;
    line-height: 1.6;
    color: #eeedf0;
    text-align: justify;
    margin-bottom: 15px;
}

.info-list {
    font-size: 15px;
}

.info-list li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.info-list li:before {
    content: "+_ ";
    color: #f0a607;
    flex-shrink: 0;
}

.info-label {
    text-transform: lowercase;
    flex-shrink: 0;
}

.info-value {
    flex-shrink: 0;
    color: #eeedf0;
}

.available {
    color: #f0a607;
    text-transform: capitalize;
}

.theme-label {
    color: #eeedf0;
    font-size: 12px;
}

/* Footer */
.bottom-footer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 10px;
    z-index: 1000;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .center-div {
        width: 80vw;
        min-width: auto;
    }

    h1 {
        font-size: xx-large;
    }

    .top-nav {
        top: 15px;
        left: 15px;
        right: 15px;
    }

    .nav-link {
        font-size: 14px;
    }

    .info-text {
        text-align: left;
        font-size: 13px;
    }

    .info-content {
        margin-left: 10px;
    }

    .bottom-footer {
        bottom: 15px;
        right: 15px;
    }
}
