/* Imports des polices Google */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=JetBrains+Mono:wght@400;700&display=swap');

/* Base */
body { 
    background-color: #0a0a0a; 
    color: #e5e5e5; 
    font-family: 'Inter', sans-serif; 
    overflow-x: hidden; 
}

/* Typographie Technique */
h1, h2, h3, h4, .font-tech { 
    font-family: 'JetBrains Mono', monospace; 
    letter-spacing: -0.02em; 
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.fade-in-section { 
    animation: fadeIn 0.5s ease-out; 
}

/* Navigation : État Actif */
.nav-link.active { 
    color: #38bdf8; 
    border-bottom: 1px solid #38bdf8; 
}

/* Styles du Slider (Accueil) */
.slider-container { 
    position: relative; 
    overflow: hidden; 
    height: 500px; 
    border: 1px solid #2a2a2a; 
    background: #121212; 
}

.slide { 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    opacity: 0; 
    transition: opacity 0.6s ease-in-out; 
    display: flex; flex-direction: column; justify-content: center; 
    padding: 4rem; 
    pointer-events: none; 
}

.slide.active { 
    opacity: 1; 
    pointer-events: auto; 
}

/* Image de fond du slider */
.slide-bg { 
    position: absolute; 
    inset: 0; 
    z-index: 0; 
    opacity: 0.6; 
    object-fit: cover; 
	filter: contrast(120%);
    /*filter: grayscale(100%) contrast(120%); */
    transition: transform 6s ease; 
}

.slide.active .slide-bg { 
    transform: scale(1.05); 
}

.slide-content { 
    position: relative; 
    z-index: 10; 
    max-width: 800px; 
}

/* Scrollbar Personnalisée */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #333; }
::-webkit-scrollbar-thumb:hover { background: #38bdf8; }