/* --- static/css/style.css --- */

:root {
    --bg-dark: #050505;
    --cyber-blue: #2d1b4e;
    --neon-orange: #ff9f43;
    --neon-bright: #ff6b6b;
    --text-main: #e0e0e0;
    --text-dim: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.05);
    --border: 1px solid rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    background-image: linear-gradient(135deg, #000000 0%, #1a0b2e 50%, #111 100%);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
}

/* Effet Scanlines */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), 
                linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    z-index: 999;
}

/* Navigation */
/* --- NAVIGATION --- */
nav {
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.9);
    border-bottom: var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Le Logo */
.logo { 
    font-weight: bold; 
    font-size: 1.4rem; 
    color: white; 
    text-transform: uppercase; 
    letter-spacing: 2px;
}
.logo span { color: var(--neon-orange); }


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

/* Les liens du menu */
.nav-links a { 
    text-decoration: none; 
    color: var(--text-dim); 
    margin-left: 25px;
    font-size: 0.9rem; 
    transition: 0.3s;
}
.nav-links a:hover { color: var(--neon-orange); text-shadow: 0 0 8px var(--neon-orange); }

/* Le bouton de langue */
.lang-switch {
    margin:0px;
}

.lang-switch a {
    text-decoration: none;
    color: var(--text-dim);
    transition: 0.3s;
}

.lang-switch a:hover { color: var(--neon-orange); }
.lang-switch .active { 
    color: var(--neon-orange); 
    font-weight: normal; 
    text-shadow: 0 0 1px var(--neon-orange); 
}

/* RESPONSIVE (Mobile) */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-right div[style*="width: 1px"] { display: none; }
}

/* Hero Section */
.hero {
    height: 85vh; display: flex; flex-direction: column; 
    justify-content: center; align-items: flex-start; padding: 0 10%;
}
.hero h1 { 
    font-size: 3rem; margin-bottom: 20px; line-height: 1.2;
    background: linear-gradient(to right, #fff, #a5a5a5);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p { 
    font-size: 1.2rem; margin-bottom: 40px; color: var(--neon-orange);
    border-left: 3px solid var(--neon-orange); padding-left: 15px; max-width: 600px;
}



/* Boutons */
.btn {
    background: transparent; color: var(--neon-orange); padding: 12px 35px;
    text-decoration: none; font-weight: bold; border: 2px solid var(--neon-orange);
    transition: 0.3s; text-transform: uppercase; letter-spacing: 1px;
}
.btn:hover { background: var(--neon-orange); color: black; box-shadow: 0 0 20px var(--neon-orange); }

/* Sections */
section { padding: 80px 10%; }
h2 { 
    color: white; margin-bottom: 50px; font-size: 2rem; 
    border-bottom: 1px solid var(--neon-orange); display: inline-block; padding-bottom: 10px;
}

/* Services */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px;
}
.service-card {
    background: var(--glass); border: var(--border); padding: 30px; transition: 0.3s;
}
.service-card:hover { 
    transform: translateY(-5px); border-color: var(--neon-orange); box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.service-card h3 { color: var(--neon-orange); margin-top: 0; }

/* Clients */
.clients { background: rgba(0,0,0,0.3); }
.client-logos { display: flex; justify-content: flex-start; flex-wrap: wrap; gap: 30px; }
.client-tag {
    background: #1a1a1a; color: var(--text-dim); border: 1px solid #333;
    padding: 10px 25px; font-size: 0.9rem; border-radius: 4px;
}
.client-tag:hover { border-color: var(--neon-orange); color: white; }

/* Footer */
footer { border-top: var(--border); padding: 40px 10%; text-align: center; font-size: 0.8rem; color: var(--text-dim); }

/* Mobile */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .nav-links { display: none; }
    section { padding: 50px 5%; }
}

.lang-switch {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    margin-right: 20px;
}

.lang-switch a {
    text-decoration: none;
    color: var(--text-dim);
    padding: 2px 5px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.lang-switch a:hover {
    color: var(--neon-orange);
}

.lang-switch a.active {
    color: var(--neon-orange);
    border: 1px solid var(--neon-orange);
    background: rgba(255, 159, 67, 0.1); 
    font-weight: bold;
}