/* --- 1. VARIABLES & BASE --- */
:root {
    /* Portfolio Colors */
    --bg-main: #09090b;
    --bg-sec: #18181b;
    --accent: #3b82f6; /* Bleu Aura */
    --accent-hover: #60a5fa;
    --text-main: #f4f4f5;
    --text-muted: #a1a1aa;
    --glass-bg: rgba(24, 24, 27, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

/* --- 2. BACKGROUND --- */
.background-gradient {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden;
}
.blob {
    position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.4;
    animation: move 20s infinite alternate;
}
.blob-1 { width: 600px; height: 600px; background: #1e3a8a; top: -20%; left: -10%; }
.blob-2 { width: 500px; height: 500px; background: #581c87; bottom: 0; right: -10%; }
.blob-3 { width: 300px; height: 300px; background: #0f766e; top: 40%; left: 30%; opacity: 0.2; }
.bg-noise {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; opacity: 0.04;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MDAiIGhlaWdodD0iNTAwIj48ZmlsdGVyIGlkPSJub2lzZSI+PGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuNjUiIG51bT0iMyIgc3RpdGNoVGlsZXM9InN0aXRjaCIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNub2lzZSkiIG9wYWNpdHk9IjAuMDMiLz48L3N2Zz4=');
}
@keyframes move { from { transform: translate(0,0); } to { transform: translate(40px, -40px); } }

/* --- 3. COMPONENTS --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; }

h1, h2, h3 { font-family: var(--font-heading); color: #fff; font-weight: 700; }
.text-gradient { background: linear-gradient(135deg, #60a5fa, #c084fc); -webkit-background-clip: text; color: transparent; }

.section-title { font-size: 2.8rem; text-align: center; margin-bottom: 3rem; letter-spacing: -1px; }
.section-title-left { font-size: 2.5rem; margin-bottom: 1.5rem; line-height: 1.2; }
.subtitle-desc { text-align: center; font-size: 1.15rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 4rem auto; line-height: 1.6; }

.glass-panel {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px); border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 26px;
    border-radius: 10px; font-weight: 600; text-decoration: none; transition: 0.3s; cursor: pointer; border: none; font-size: 0.95rem;
}
.btn-primary { background: var(--accent); color: #000; border: 1px solid transparent; box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 0 30px rgba(59, 130, 246, 0.5); }
.btn-outline { background: transparent; color: var(--text-main); border: 1px solid var(--glass-border); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* Bouton contact Navbar - Pas de soulignement au survol */
.btn-contact { background: rgba(255,255,255,0.1); color: white; border-radius: 50px; padding: 8px 20px; font-size: 0.9rem; transition: all 0.3s ease; text-decoration: none;}
.btn-contact:hover { background: var(--accent); color: black; text-decoration: none; }

/* --- 4. NAVBAR --- */
.navbar { position: fixed; top: 20px; left: 0; width: 100%; z-index: 1000; display: flex; justify-content: center; pointer-events: none; }
.nav-container { 
    pointer-events: auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 12px 30px; 
    border-radius: 100px;
    gap: 40px; 
}
.glass-nav { background: rgba(9, 9, 11, 0.8); backdrop-filter: blur(12px); border: 1px solid var(--glass-border); box-shadow: 0 10px 30px rgba(0,0,0,0.3); width: fit-content; min-width: 600px; }

.logo { font-weight: 800; font-size: 1.3rem; color: white; letter-spacing: -0.5px; text-decoration: none; white-space: nowrap; }
.logo .dot { color: var(--accent); font-size: 1.5rem; line-height: 0; }

.nav-links { display: flex; gap: 25px; align-items: center; }
.nav-links a:not(.btn-contact) { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; text-decoration: none; transition: 0.2s; }
.nav-links a:not(.btn-contact):hover { color: white; }
.mobile-menu-btn { display: none; background: none; border: none; color: white; cursor: pointer; pointer-events: auto; }

/* Menu Mobile Overlay */
.mobile-nav-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(9, 9, 11, 0.98); backdrop-filter: blur(15px);
    z-index: 2000; display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.4s ease;
}
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }
.close-menu-btn { position: absolute; top: 30px; right: 30px; background: none; border: none; color: white; cursor: pointer; }
.close-menu-btn i { width: 32px; height: 32px; }
.mobile-links { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.mobile-link { font-size: 1.5rem; color: white; text-decoration: none; font-weight: 600; font-family: var(--font-heading); }
.mobile-contact { margin-top: 20px; font-size: 1.1rem; padding: 15px 40px; }

/* --- 5. HERO --- */
.hero { padding-top: 180px; min-height: 95vh; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }

.status-badge {
    display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px;
    background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 50px; color: #4ade80; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem;
}
.pulse { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); } }

.hero h1 { font-size: 3.8rem; line-height: 1.15; margin-bottom: 1.5rem; letter-spacing: -1px; }
.hero .bio { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 550px; line-height: 1.7; }
.hero-actions { display: flex; gap: 15px; align-items: center; flex-wrap: wrap; }
.socials { display: flex; gap: 10px; margin-left: 10px; }
.socials a { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--glass-border); border-radius: 10px; color: var(--text-muted); transition: 0.3s; }
.socials a:hover { border-color: var(--accent); color: var(--accent); background: rgba(59, 130, 246, 0.1); }

/* Code Window */
.code-window { padding: 25px; transform: perspective(1000px) rotateY(-8deg) rotateX(5deg); transition: 0.5s ease; background: #1e1e2e; position: relative; margin-left: 20px; }
.hero-visual:hover .code-window { transform: perspective(1000px) rotateY(0) rotateX(0); }
.window-header { display: flex; justify-content: space-between; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.dots span { width: 12px; height: 12px; border-radius: 50%; display: inline-block; margin-right: 6px; }
.dots span:nth-child(1) { background: #ef4444; } .dots span:nth-child(2) { background: #eab308; } .dots span:nth-child(3) { background: #22c55e; }
.title { font-family: monospace; font-size: 0.85rem; color: #6b7280; }
.window-body { font-family: 'Fira Code', monospace; font-size: 0.95rem; color: #a5b4fc; line-height: 1.8; }
.keyword { color: #c678dd; } .string { color: #98c379; } .var { color: #e06c75; } .function { color: #61afef; }
.indent { padding-left: 20px; } .double-indent { padding-left: 40px; }
.floating-icon { position: absolute; width: 55px; height: 55px; background: var(--bg-sec); border: 1px solid var(--glass-border); border-radius: 14px; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 25px rgba(0,0,0,0.3); color: var(--accent); }
.i1 { top: -25px; right: -25px; } .i2 { bottom: 30px; left: -35px; } .i3 { bottom: -25px; right: 30px; }

/* --- 6. ABOUT --- */
.grid-2-col-wide { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; }
.about-content p { margin-bottom: 1.5rem; color: var(--text-muted); font-size: 1.05rem; }
.interests-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.tag { background: rgba(255,255,255,0.05); padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; display: flex; align-items: center; gap: 8px; border: 1px solid var(--glass-border); color: var(--text-main); transition: 0.3s; }
.tag:hover { border-color: var(--accent); background: rgba(59, 130, 246, 0.1); }
.tag i { width: 16px; color: var(--accent); }

.about-stats { display: flex; flex-direction: column; gap: 25px; }
.detail-card { padding: 30px; }
.detail-card h3 { font-size: 1.2rem; margin-bottom: 20px; color: var(--accent); border-bottom: 1px solid var(--glass-border); padding-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.timeline-mini .mini-item { margin-bottom: 15px; font-size: 0.95rem; color: var(--text-muted); padding-left: 15px; border-left: 2px solid var(--glass-border); }
.timeline-mini strong { color: white; display: block; margin-bottom: 2px; }
.lang-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; font-size: 0.95rem; }
.bar { width: 60%; height: 6px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; }
.fill { height: 100%; background: var(--accent); }

/* --- 7. PARCOURS --- */
.timeline { border-left: 2px solid rgba(255,255,255,0.1); margin-left: 20px; padding-left: 50px; max-width: 800px; margin: 0 auto; }
.timeline-item { position: relative; margin-bottom: 60px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { position: absolute; left: -59px; top: 0px; width: 18px; height: 18px; border-radius: 50%; background: var(--bg-main); border: 2px solid var(--text-muted); transition: 0.3s; }
.timeline-dot.current { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 15px var(--accent); }
.timeline-content { padding: 35px; position: relative; transition: 0.3s; }
.timeline-content:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-5px); }
.timeline-content .date { color: var(--accent); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 8px; }
.timeline-content h3 { font-size: 1.5rem; margin-bottom: 5px; }
.timeline-content h4 { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 15px; font-weight: 500; }
.experience-list { list-style: none; padding: 0; margin: 20px 0; }
.experience-list li { margin-bottom: 12px; padding-left: 20px; position: relative; color: var(--text-muted); font-size: 0.95rem; }
.experience-list li::before { content: "•"; color: var(--accent); position: absolute; left: 0; font-weight: bold; font-size: 1.2rem; line-height: 1; }
.tags-mini { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.tags-mini span { font-size: 0.75rem; background: rgba(255,255,255,0.08); padding: 4px 10px; border-radius: 6px; color: #e2e8f0; border: 1px solid transparent; }
.tags-mini span:hover { border-color: var(--glass-border); background: rgba(255,255,255,0.12); }

/* --- 8. SECTION AURA (Version Product Design) --- */
.aura-section { overflow: hidden; }

/* NOUVEAU : Bloc Contexte Aura */
.aura-context { padding: 40px; margin-bottom: 30px; text-align: left; }
.aura-context-grid { gap: 30px; align-items: center; }
.aura-brand-small { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.brand-icon-small { background: var(--accent); color: black; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-weight: 700; font-size: 1.1rem; }
.aura-desc h3 { font-size: 1.5rem; margin: 0; color: white; }
.aura-desc p { color: var(--text-muted); font-size: 1rem; margin-bottom: 20px; }

/* KPI Aura */
.kpi-row { display: flex; gap: 20px; margin-top: 20px; }
.kpi-item { display: flex; flex-direction: column; border-left: 2px solid var(--glass-border); padding-left: 15px; }
.kpi-val { font-weight: 700; font-size: 1.1rem; color: white; }
.kpi-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; }

/* Visuel Abstrait Écosystème */
.ecosystem-visual { position: relative; width: 100%; height: 250px; display: flex; align-items: center; justify-content: center; }
.center-node { width: 100px; height: 100px; background: var(--glass-bg); border: 2px solid var(--accent); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 10; font-size: 0.75rem; font-weight: 700; color: white; box-shadow: 0 0 30px rgba(59, 130, 246, 0.2); }
.center-node i { margin-bottom: 5px; color: var(--accent); }
.satellite-node { position: absolute; width: 80px; height: 80px; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--text-muted); z-index: 5; }
.satellite-node i { margin-bottom: 3px; width: 18px; }
.s1 { top: 20px; left: 50px; }
.s2 { bottom: 20px; left: 80px; }
.s3 { top: 50%; right: 30px; transform: translateY(-50%); }

.aura-tech-showcase { padding: 60px; text-align: left; }
.aura-tech-header { text-align: center; margin-bottom: 50px; }
.aura-brand-large { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 15px; }
.brand-icon-large { font-size: 1.8rem; font-weight: 800; background: var(--accent); color: black; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 12px; }
.aura-brand-large h3 { font-size: 2.2rem; margin: 0; }
.aura-tech-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.tech-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-bottom: 50px; }
.tech-card { background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); padding: 30px; border-radius: 16px; transition: 0.3s; }
.tech-card:hover { background: rgba(255,255,255,0.05); transform: translateY(-5px); border-color: var(--accent); }
.tech-icon { color: var(--accent); margin-bottom: 15px; }
.tech-card h4 { font-size: 1.2rem; margin-bottom: 10px; color: white; font-weight: 600; }
.tech-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

.tech-stack-bar { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 15px; padding-top: 20px; border-top: 1px solid var(--glass-border); }
.tech-label { color: var(--text-muted); font-weight: 600; font-size: 0.9rem; margin-right: 10px; }
.stack-badge { background: rgba(59, 130, 246, 0.1); color: #60a5fa; padding: 6px 14px; border-radius: 6px; font-size: 0.85rem; font-family: monospace; border: 1px solid rgba(59, 130, 246, 0.2); }

/* --- 9. COMPÉTENCES --- */
.skills-wrapper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.skill-col { padding: 35px; background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); border-radius: 20px; transition: 0.3s; }
.skill-col:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); }
.skill-col h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 25px; font-size: 1.3rem; }
.skill-col h3 i { color: var(--accent); }
.skill-tags span { display: inline-block; background: rgba(59, 130, 246, 0.1); padding: 8px 14px; border-radius: 8px; font-size: 0.9rem; margin: 0 6px 8px 0; border: 1px solid rgba(59, 130, 246, 0.2); color: #e2e8f0; }

/* --- 10. CONTACT --- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; padding: 60px; align-items: start; }
.contact-text h2 { font-size: 2rem; margin-bottom: 1rem; }
.contact-text p { color: var(--text-muted); margin-bottom: 35px; }
.contact-coords { display: flex; flex-direction: column; gap: 30px; }
.coord-item { display: flex; gap: 15px; align-items: center; color: var(--text-main); transition: 0.3s; }
.coord-item i { color: var(--accent); width: 24px; }
.coord-item .label { display: block; font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }

/* Email en blanc pour lisibilité */
.coord-item a.value, .coord-item .value { 
    font-size: 1.05rem; 
    font-weight: 600; 
    color: var(--text-main); 
    text-decoration: none; 
    transition: 0.3s; 
}
.coord-item a.value:hover { color: var(--accent); }

/* CORRECTION : Force la couleur blanche pour les liens tel et mail (évite le bleu par défaut des navigateurs mobiles) */
.coord-item a {
    color: var(--text-main) !important;
    text-decoration: none;
    transition: 0.3s;
}

.coord-item a:hover {
    color: var(--accent) !important;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: var(--text-muted); }
.form-group input, .form-group textarea { width: 100%; padding: 15px; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); border-radius: 10px; color: white; font-family: inherit; font-size: 1rem; transition: 0.3s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,0.1); }
.full-width { width: 100%; }

/* --- 11. FOOTER --- */
footer { padding: 50px 0; border-top: 1px solid var(--glass-border); margin-top: 100px; background: #050506; }
.footer-container { display: flex; justify-content: space-between; align-items: center; }
.logo-footer { font-weight: 800; font-size: 1.2rem; color: white; }
.footer-right a { color: var(--text-muted); margin-left: 30px; font-size: 0.95rem; text-decoration: none; transition: 0.3s; }
.footer-right a:hover { color: var(--accent); }

/* --- 12. SECTION PROJETS (NOUVEAU CSS) --- */
.filters-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.project-card {
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.3);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background-color: #1a1a1c;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

/* Overlay lien sur l'image */
.project-links {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(9, 9, 11, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: 0.3s ease;
}

.project-card:hover .project-links {
    opacity: 1;
}

.project-links a {
    width: 45px; height: 45px;
    background: white;
    color: black;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: 0.2s;
}

.project-links a:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.project-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-tags {
    margin-bottom: 15px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag-mini {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(59, 130, 246, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.project-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.project-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tech-stack-mini {
    margin-top: auto;
    display: flex;
    gap: 10px;
    font-family: monospace;
    font-size: 0.8rem;
    color: #64748b;
}

.project-card.hide {
    display: none;
}

/* --- 13. SECTION AVENIR (FUTURE) --- */
.future-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    /* C'EST ICI QUE SE JOUE L'ESPACE : */
    padding: 60px; 
}

.future-content {
    display: flex;
    gap: 40px; /* Espace entre l'icone et le texte */
    align-items: center;
    max-width: 900px;
}

.future-icon-wrapper {
    width: 80px; height: 80px;
    background: var(--accent);
    color: black;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; /* Empêche l'icône de s'écraser */
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
}

.future-icon-wrapper i { width: 40px; height: 40px; }

.future-text-content { text-align: left; }
.future-text-content h2 { font-size: 2rem; margin-bottom: 1rem; color: white; }
.future-text-content p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero { padding-top: 140px; text-align: center; }
    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-text { display: flex; flex-direction: column; align-items: center; }
    .hero h1 { font-size: 3rem; }
    .bio { margin: 0 auto 2.5rem auto; }
    .hero-actions { justify-content: center; }
    .code-window { display: none; }
    
    .grid-2-col-wide { grid-template-columns: 1fr; gap: 50px; }
    .contact-layout { grid-template-columns: 1fr; padding: 30px; gap: 40px; }
    .skills-wrapper { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: 1fr; }

    /* Nav Responsive */
    .glass-nav { width: 90%; min-width: auto; padding: 10px 20px; gap: 0; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    .contact-layout { padding: 25px; }
    .btn { width: 100%; }
    .hero-actions { flex-direction: column; width: 100%; }
    .socials { margin: 10px 0 0 0; justify-content: center; }
    .footer-container { flex-direction: column; gap: 20px; text-align: center; }
    .footer-right a { margin: 0 10px; }
    .aura-tech-showcase { padding: 30px 20px; }
    .future-layout { padding: 30px; } /* Moins d'espace sur mobile */
    .future-content { flex-direction: column; text-align: center; gap: 20px; }
}

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }