/* Variables CSS */
:root {
    --color-primary: #00d4ff;
    --color-dark: #0a0e27;
    --color-accent: #ff6b35;
}

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

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 5px;
}

/* Vignette */
.vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 14, 39, 0.4) 70%, rgba(10, 14, 39, 0.8) 100%);
}

/* Animations de base */
/*.fade-in {*/
/*    animation: fadeIn 1s ease-in-out;*/
/*}*/

/*@keyframes fadeIn {*/
/*    from { opacity: 0; transform: translateY(20px); }*/
/*    to { opacity: 1; transform: translateY(0); }*/
/*}*/

/*.slide-in-left {*/
/*    animation: slideInLeft 1s ease-out;*/
/*}*/

/*@keyframes slideInLeft {*/
/*    from { opacity: 0; transform: translateX(-100px); }*/
/*    to { opacity: 1; transform: translateX(0); }*/
/*}*/

/*.slide-in-right {*/
/*    animation: slideInRight 1s ease-out;*/
/*}*/

/*@keyframes slideInRight {*/
/*    from { opacity: 0; transform: translateX(100px); }*/
/*    to { opacity: 1; transform: translateX(0); }*/
/*}*/

/*.scale-in {*/
/*    animation: scaleIn 0.8s ease-out;*/
/*}*/

/*@keyframes scaleIn {*/
/*    from { opacity: 0; transform: scale(0.8); }*/
/*    to { opacity: 1; transform: scale(1); }*/
/*}*/

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Nav styles */
nav.scrolled {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* Liens */
a {
    transition: color 0.3s ease;
}

/* Support pour l'image de fond hero */
.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

/* Animation gradient qui bouge */
@keyframes gradient-flow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.animate-gradient-flow {
    animation: gradient-flow 4s ease infinite;
}

/* Glow pulsant */
@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
    }
}

/* Point qui pulse */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
