/* =========================================
   ARCHITEKIA // MASTER STYLESHEET
   Version: 2.0 (Quantum Interface)
   ========================================= */

/* --- 0. CORE SYSTEM & VARIABLES --- */
:root {
    /* COLORS */
    --neon-orange: #ff9f1c;
    --neon-orange-glow: rgba(255, 159, 28, 0.6);
    --neon-cyan: #00f3ff;
    --neon-cyan-glow: rgba(0, 243, 255, 0.4);
    
    /* BACKGROUNDS */
    --glass-panel: rgba(10, 10, 12, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --holo-bg: rgba(10, 15, 25, 0.8);
    
    /* TYPOGRAPHY */
    --font-tech: 'JetBrains Mono', monospace; 
    --font-hud: 'Inter', sans-serif;
    --font-future: 'Orbitron', monospace; /* Header & Titres */
}

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

body {
    background-color: #000; /* Le canvas JS gère les étoiles */
    color: #eee;
    font-family: var(--font-hud);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex; flex-direction: column;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- 1. HEADER (FLOATING & FUTURISTIC) --- */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 50px;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none; /* Click-through pour les étoiles */
}

.header-content {
    width: 100%; max-width: 1400px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    pointer-events: auto;
}

.logo {
    font-family: var(--font-future);
    font-weight: 800; 
    color: var(--neon-orange);
    text-shadow: 0 0 15px rgba(255, 159, 28, 0.4);
    font-size: 1.5rem; 
    letter-spacing: 2px; 
    text-transform: uppercase;
}

/* NAVIGATION MENU */
.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-item {
    position: relative;
    font-family: var(--font-future);
    color: var(--neon-cyan);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-shadow: 0 0 8px var(--neon-cyan-glow);
    transition: all 0.3s ease;
    padding-bottom: 5px;
    opacity: 0;
    animation: fadeGlitchIn 0.8s ease-out forwards 0.5s;
}

.nav-item:hover {
    color: var(--neon-orange);
    text-shadow: 0 0 12px var(--neon-orange-glow), 0 0 5px var(--neon-cyan);
    transform: scale(1.05);
}

/* Soulignement Néon Progressif */
.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-orange));
    box-shadow: 0 0 10px var(--neon-orange);
    transition: width 0.3s ease-out;
}

.nav-item:hover::after {
    width: 100%;
}

/* --- 2. GLOBAL CONTAINERS --- */
.app-container { 
    flex: 1; 
    width: 100%; 
    max-width: 900px; 
    margin: 120px auto 40px; 
    padding: 0 20px; 
    position: relative; 
    z-index: 2; 
}

.holo-container {
    background: var(--holo-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px; 
    padding: 40px;
    backdrop-filter: blur(10px);
    position: relative; 
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 
        0 0 10px rgba(0, 243, 255, 0.05), 
        inset 0 0 20px rgba(0, 0, 0, 0.5);
    animation: borderPulse 5s infinite alternate;
}

/* TITRES */
.holo-title {
    font-family: var(--font-future);
    font-size: 2.2rem; 
    color: var(--neon-orange);
    text-align: center; 
    margin-bottom: 20px; 
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(255, 159, 28, 0.5);
    animation: text-flicker 4s infinite alternate;
}

/* --- 3. INPUTS & TEXTAREAS --- */
.neuron-input-wrapper { position: relative; margin: 30px 0; }

textarea#raw-input {
    width: 100%; height: 300px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--neon-cyan);
    font-family: var(--font-tech); 
    font-size: 1rem; 
    padding: 25px;
    border-radius: 8px; 
    resize: none; 
    outline: none;
    transition: 0.3s;
    box-shadow: inset 0 0 20px rgba(0,0,0,1);
}

textarea#raw-input:focus {
    background: rgba(0,0,0,0.8);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.15), inset 0 0 10px rgba(0, 243, 255, 0.05);
}

/* --- 4. BUTTONS --- */
.btn-quantum {
    background: rgba(255, 159, 28, 0.02);
    border: 1px solid var(--neon-orange);
    color: var(--neon-orange);
    padding: 18px 50px;
    font-family: var(--font-future); 
    font-weight: 700; 
    letter-spacing: 3px;
    cursor: pointer; 
    position: relative; 
    overflow: hidden; 
    transition: all 0.3s ease;
    text-transform: uppercase;
    animation: softPulse 3s infinite ease-in-out;
}

.btn-quantum:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    animation: none;
    border-color: #555;
    color: #555;
}

.btn-quantum:hover:not(:disabled) {
    background: var(--neon-orange); 
    color: #000;
    box-shadow: 0 0 35px var(--neon-orange-glow), inset 0 0 10px var(--neon-orange);
    animation: none;
    transform: scale(1.02);
    letter-spacing: 5px;
}

.btn-ghost {
    background: transparent;
    border: none;
    color: #666;
    font-family: var(--font-future);
    cursor: pointer;
    transition: 0.3s;
}
.btn-ghost:hover { color: #fff; }

/* --- 5. MATRIX HUD (STEP 2) --- */
.matrix-hud {
    position: relative;
    background: rgba(5, 8, 15, 0.9);
    border: 1px solid rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.hud-corner {
    position: absolute;
    width: 30px; height: 30px;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan-glow);
    opacity: 0.7;
    transition: all 0.3s;
}
.top-left { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.top-right { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.bottom-left { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.bottom-right { bottom: -2px; right: -2px; border-left: none; border-top: none; }

.matrix-hud:hover .hud-corner { width: 40px; height: 40px; opacity: 1; }

.instruction-text {
    font-family: var(--font-tech);
    color: #888;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.blink { animation: blinker 1s linear infinite; color: var(--neon-orange); }
@keyframes blinker { 50% { opacity: 0; } }

/* Cyber Input */
.cyber-input-group { margin-bottom: 40px; }
.input-label {
    font-family: var(--font-future);
    color: var(--neon-orange);
    font-size: 0.8rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.input-wrapper {
    display: flex;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0,0,0,0.5);
    transition: 0.3s;
}
.input-wrapper:focus-within {
    border-color: var(--neon-orange);
    box-shadow: 0 0 15px rgba(255, 159, 28, 0.2);
}
.input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-family: var(--font-tech);
    font-size: 1.1rem;
    padding: 15px 20px;
    outline: none;
}

.btn-lock {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--neon-orange);
    font-family: var(--font-future);
    padding: 0 25px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.btn-lock:hover {
    background: var(--neon-orange);
    color: black;
    box-shadow: 0 0 20px var(--neon-orange-glow);
}

/* Modules Grid */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}
.module-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px;
    text-align: center;
    transition: 0.3s;
    opacity: 0.4;
    position: relative;
    overflow: hidden;
}
.module-card.active-module {
    opacity: 1;
    border-color: var(--neon-cyan);
    background: rgba(0, 243, 255, 0.05);
    box-shadow: inset 0 0 15px rgba(0, 243, 255, 0.1);
    transform: scale(1.02);
}
.mod-name { font-family: var(--font-future); color: #fff; font-size: 1rem; margin-bottom: 5px; }
.active-module .mod-name { color: var(--neon-cyan); text-shadow: 0 0 5px var(--neon-cyan); }
.mod-role { font-family: var(--font-tech); font-size: 0.7rem; color: #666; }
.mod-status {
    width: 6px; height: 6px;
    background: #333;
    border-radius: 50%;
    margin: 0 auto 10px;
    box-shadow: 0 0 0 1px #444;
}
.active-module .mod-status { background: var(--neon-cyan); box-shadow: 0 0 8px var(--neon-cyan); }

/* Console */
.console-log {
    font-family: var(--font-tech);
    font-size: 0.8rem;
    color: var(--neon-orange);
    padding: 10px;
    border-left: 2px solid var(--neon-orange);
    background: rgba(255, 159, 28, 0.05);
    margin-bottom: 30px;
    min-height: 40px;
    display: flex; align-items: center;
}
.action-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1);
}

/* --- 6. BLUEPRINT (STEP 3) --- */
.blueprint-list { list-style: none; padding: 0; }
.blueprint-item {
    font-family: var(--font-tech);
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
    font-size: 0.9rem;
}
.portal-btn {
    display: block;
    margin-bottom: 15px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: 4px;
    transition: 0.3s;
    font-family: var(--font-hud);
    border: 1px solid transparent;
}
.portal-btn:hover {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--neon-cyan);
    transform: translateX(10px);
}

/* --- 7. FOOTER --- */
.mega-footer {
    background: rgba(5, 5, 5, 0.9);
    border-top: 1px solid #222;
    padding: 60px 20px;
    margin-top: auto;
    z-index: 10;
    backdrop-filter: blur(20px);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-col h4 {
    color: #666;
    font-family: var(--font-tech);
    font-size: 0.7rem;
    margin-bottom: 25px;
    border-bottom: 1px solid #333;
    display: inline-block;
}
.eco-link {
    position: relative;
    display: block; width: fit-content;
    color: #888; font-size: 0.9rem;
    margin-bottom: 15px; cursor: pointer;
    font-family: var(--font-hud);
}
.eco-link strong { color: #ccc; transition: 0.3s; }
.eco-link:hover strong { color: var(--neon-cyan); text-shadow: 0 0 8px var(--neon-cyan); }

/* Tooltips */
.eco-link::after {
    content: attr(data-holo);
    position: absolute;
    bottom: 140%; left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(10, 15, 25, 0.95);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 8px 12px; font-size: 0.75rem;
    font-family: var(--font-tech);
    white-space: nowrap;
    opacity: 0; visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 0 15px var(--neon-cyan-glow);
    z-index: 100;
}
.eco-link::before {
    content: ''; position: absolute;
    bottom: 120%; left: 50%; margin-left: -5px;
    border-width: 5px; border-style: solid;
    border-color: var(--neon-cyan) transparent transparent transparent;
    opacity: 0; transition: all 0.3s;
}
.eco-link:hover::after { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.eco-link:hover::before { opacity: 1; }

/* --- 8. UTILITIES & ANIMATIONS --- */
.hidden { display: none !important; }
.step-view { animation: fadeUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); }

@keyframes softPulse {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 159, 28, 0.2); border-color: rgba(255, 159, 28, 0.5); }
    50% { box-shadow: 0 0 15px rgba(255, 159, 28, 0.4); border-color: rgba(255, 159, 28, 1); scale: 1.01; }
}
@keyframes borderPulse {
    0% { border-color: rgba(255, 255, 255, 0.08); box-shadow: 0 0 10px rgba(0, 243, 255, 0.05); }
    100% { border-color: rgba(255, 159, 28, 0.3); box-shadow: 0 0 20px rgba(0, 243, 255, 0.1), 0 0 10px rgba(255, 159, 28, 0.1); }
}
@keyframes fadeGlitchIn {
    0% { opacity: 0; transform: translateY(-10px); clip-path: inset(50% 0 50% 0); }
    20% { opacity: 1; clip-path: inset(0 0 0 0); }
    40% { opacity: 0.8; transform: skew(2deg); }
    60% { opacity: 1; transform: skew(0deg); }
    80% { opacity: 0.9; }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes text-flicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; transform: skewX(0); }
    93% { opacity: 0.8; transform: skewX(2deg); }
    94% { opacity: 1; transform: skewX(0); }
    96% { opacity: 0.9; transform: skewX(-1deg); }
    98% { opacity: 1; }
}
@keyframes fadeUp { 
    from { opacity: 0; transform: translateY(30px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* --- 9. MOBILE --- */
@media (max-width: 768px) {
    .main-header { padding: 15px 20px; }
    .nav-menu { display: none; }
    .holo-title { font-size: 1.5rem; }
    .btn-quantum { width: 100%; padding: 15px; }
    .eco-link::after, .eco-link::before { display: none; }
    .app-container { margin-top: 100px; }
}

/* --- VARIABLES GLOBALES & THEME --- */
:root {
    --neon-cyan: #00f3ff;
    --neon-orange: #ff9d00;
    --neon-green: #0aff0a;
    --bg-dark: #050505;
    --glass-bg: rgba(20, 20, 20, 0.75);
    --glass-border: 1px solid rgba(0, 243, 255, 0.2);
    --font-tech: 'Courier New', Courier, monospace; 
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: #eee;
    font-family: var(--font-main);
    margin: 0;
    overflow-x: hidden;
    /* Fond grille "Cyberpunk" subtil */
    background-image: linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* --- UTILITAIRES --- */
.hidden { display: none !important; }
.text-center { text-align: center; }
.blink { animation: blinker 1.5s linear infinite; }

@keyframes blinker { 
    50% { opacity: 0.3; } 
}

/* --- STRUCTURE PRINCIPALE (HOLO CONTAINER) --- */
.step-view {
    min-height: 85vh; /* Prend presque tout l'écran */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.holo-container {
    background: var(--glass-bg);
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.15), inset 0 0 30px rgba(0, 243, 255, 0.05);
    padding: 50px;
    border-radius: 8px;
    width: 100%;
    max-width: 900px;
    position: relative;
    backdrop-filter: blur(8px); /* Effet de flou derrière la vitre */
}

.holo-title {
    font-family: var(--font-tech);
    color: #fff;
    text-shadow: 0 0 10px var(--neon-cyan);
    margin-top: 0;
    letter-spacing: 3px;
    font-weight: bold;
}

/* --- INPUTS & TEXTAREAS --- */
.neuron-input-wrapper textarea {
    width: 100%;
    height: 180px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #444;
    color: var(--neon-cyan);
    padding: 20px;
    font-family: var(--font-tech);
    font-size: 1rem;
    resize: none;
    outline: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.neuron-input-wrapper textarea:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

/* --- BOUTONS QUANTUM --- */
.btn-quantum {
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 15px 40px;
    font-family: var(--font-tech);
    font-size: 1.1rem;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-quantum:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
}

.btn-quantum:disabled {
    border-color: #444;
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
    background: transparent;
}

.btn-ghost {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-family: var(--font-tech);
    text-decoration: underline;
    margin-top: 20px;
    font-size: 0.9rem;
    transition: 0.3s;
}
.btn-ghost:hover { color: var(--neon-cyan); text-shadow: 0 0 5px var(--neon-cyan); }

/* --- HUD DECORATION (Step 2) --- */
.matrix-hud { position: relative; }

.hud-corner {
    position: absolute;
    width: 25px; height: 25px;
    border-color: var(--neon-cyan);
    border-style: solid;
    opacity: 0.8;
}
.top-left { top: -2px; left: -2px; border-width: 3px 0 0 3px; }
.top-right { top: -2px; right: -2px; border-width: 3px 3px 0 0; }
.bottom-left { bottom: -2px; left: -2px; border-width: 0 0 3px 3px; }
.bottom-right { bottom: -2px; right: -2px; border-width: 0 3px 3px 0; }

.instruction-text {
    font-family: var(--font-tech);
    color: #aaa;
    margin-bottom: 30px;
}

/* --- CHAMPS OBJECTIFS --- */
.cyber-input-group {
    margin: 30px 0;
    text-align: left;
}
.input-label {
    font-family: var(--font-tech);
    font-size: 0.8rem;
    color: var(--neon-cyan);
    margin-bottom: 8px;
}
.input-wrapper { display: flex; gap: 10px; }

#user-objective {
    flex-grow: 1;
    background: rgba(0,0,0,0.5);
    border: 1px solid #444;
    color: white;
    padding: 12px;
    font-family: var(--font-tech);
    font-size: 1rem;
    outline: none;
}
#user-objective:focus { border-color: var(--neon-cyan); }

.btn-lock {
    background: #1a1a1a;
    border: 1px solid #444;
    color: #888;
    cursor: pointer;
    padding: 0 20px;
    font-family: var(--font-tech);
    transition: 0.3s;
}
.btn-lock:hover { border-color: #fff; color: #fff; }

.btn-lock.locked {
    background: var(--neon-orange);
    color: #000;
    border-color: var(--neon-orange);
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255, 157, 0, 0.4);
}

/* --- MODULES GRID --- */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.module-card {
    border: 1px solid #333;
    background: rgba(0,0,0,0.3);
    padding: 15px;
    text-align: center;
    opacity: 0.3;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.95);
}

.module-card.active {
    opacity: 1;
    border-color: var(--neon-green);
    background: rgba(10, 255, 10, 0.05);
    box-shadow: inset 0 0 15px rgba(10, 255, 10, 0.1), 0 0 10px rgba(10, 255, 10, 0.2);
    transform: scale(1);
}

.mod-status {
    width: 10px; height: 10px;
    background: #333;
    border-radius: 50%;
    margin: 0 auto 10px;
    transition: 0.3s;
}
.module-card.active .mod-status {
    background: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green);
}

.mod-name { font-weight: bold; color: #fff; margin-bottom: 5px; }
.mod-role { font-size: 0.8rem; color: #888; font-family: var(--font-tech); }

/* --- CONSOLE SYSTEME --- */
.console-log {
    background: #000;
    border: 1px solid #333;
    border-left: 3px solid var(--neon-cyan);
    color: #aaa;
    font-family: var(--font-tech);
    font-size: 0.85rem;
    padding: 15px;
    height: 100px
	
	
	/* --- Header & Nav --- */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    position: relative;
    background: #000; /* Assure-toi d'avoir un fond */
}

/* Burger Menu caché par défaut sur Desktop */
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 100;
}

.burger-menu .bar {
    width: 25px;
    height: 2px;
    background-color: var(--neon-blue, #0ff); /* Ta couleur néon */
    transition: 0.3s;
}

/* --- VERSION MOBILE (< 768px) --- */
@media (max-width: 768px) {
    .burger-menu {
        display: flex; /* On affiche le burger */
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Caché à droite */
        width: 70%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--neon-orange);
        z-index: 99;
    }

    .nav-menu.active {
        right: 0; /* On le fait glisser */
    }

    .nav-item {
        font-size: 1.2rem;
        margin: 15px 0;
    }

    /* Animation du burger en croix quand ouvert */
    .burger-menu.open .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .burger-menu.open .bar:nth-child(2) { opacity: 0; }
    .burger-menu.open .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* --- VERSION DESKTOP (> 769px) --- */
@media (min-width: 769px) {
    .nav-menu {
        display: flex;
        gap: 20px;
        position: static;
        width: auto;
        height: auto;
        background: none;
        border: none;
    }
}