/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0b0f19; /* Modifié : Noir -> Bleu Nuit */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* TITRE */
.main-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    font-style: italic;
    text-transform: uppercase;
}

.title-underline {
    width: 80px;
    height: 2px;
    background-color: #ffffff;
    margin: 20px auto 80px;
    opacity: 0.3;
}

/* GRID LAYOUT */
.content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* CÔTÉ TEXTE */
.text-side {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #cccccc;
}

.text-side p {
    margin-bottom: 30px;
    position: relative;
}

.text-side span {
    color: #00f2ff;
    font-weight: bold;
    margin-right: 10px;
}

/* CÔTÉ VISUEL (TERMINAL + NAV) */
.visual-side {
    position: relative;
    padding-right: 120px;
}

/* TERMINAL */
.terminal-window {
    background-color: rgba(19, 26, 44, 0.6); /* Modifié : Fond plus cohérent avec le bleu nuit */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
    font-family: 'JetBrains Mono', monospace;
    transition: border-color 0.4s ease;
}

.terminal-window:hover {
    border-color: rgba(0, 242, 255, 0.4);
}

.terminal-header {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.cmd-line {
    margin-bottom: 25px;
}

.label {
    color: #666666;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.response {
    color: #ffffff;
    font-size: 0.85rem;
    padding-left: 15px;
}

.highlight {
    color: #00f2ff;
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    .visual-side {
        padding-right: 0;
        margin-top: 40px;
    }
}