/* --- Vincent Production - Styles Premium --- */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Outfit:wght@300;400;600&display=swap');

:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-color: #ffffff;
    --secondary-text: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    margin: 0;
    cursor: none;
    background-color: var(--bg-color);
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, .impact-text {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

/* --- Layout & Spacing --- */
.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

main {
    flex: 1;
    padding-bottom: 5rem; /* Espace pour ne pas coller au footer */
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

/* --- Footer --- */
footer {
    width: 100%;
    padding: 4rem 2rem;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 20;
}

/* --- Curseur Lentille Magique --- */
.magic-lens {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    backdrop-filter: grayscale(100%) contrast(1.2);
    -webkit-backdrop-filter: grayscale(100%) contrast(1.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    will-change: transform;
    display: none; /* Cache sur mobile par défaut */
}

@media (min-width: 768px) {
    .magic-lens { display: block; }
}

/* --- Hero Section --- */
.hero-video-container {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 50;
    height: 100vh;
}

/* --- Project Cards --- */
.project-card-image {
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.5s ease;
}

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

/* --- Glassmorphism --- */
.glass-effect {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
