<style>
                :root {
            --fg : #241910;
            --bg : #fefbf4;
        }
        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;}

        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        h1 {
            font-family: 'Roboto', sans-serif;
            font-size: 60px;
            font-weight: 700;
            line-height: 1.1;
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }

        #TT {
            color: white;
            font-size: 100px;
            /* Retirez display:flex, justify-content, align-items */
        }

        .outro {
            text-transform: uppercase;
            font-size: 22px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 0.25rem;
            background-color: var(--bg);
            color: var(--fg)
        }

nav {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  will-change: opacity;
  z-index: 2;
  z-index: 1000;
  background: linear-gradient(135 deg, rgba(255,255,255,0.1), rgba(255, 255, 255, 0.575));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgb(201, 115, 3);
  box-shadow: rgba(255,255,255,0);
  }

/* Alignement horizontal de la liste de liens */
nav .nav-links {
    display: flex; /* Met les liens sur une ligne */
    list-style: none;
    gap: 2rem; /* Espace entre les liens */
    margin: 0;
    padding: 0;
}

/* Style des liens */
nav .nav-links a {
    text-decoration: none;
    color: #ffffff; /* Ta couleur --fg */
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 8px;
}

/* Effet au survol ET pour la page active */
nav .nav-links a:hover, 
nav .nav-links a.active {
    background-color: rgba(255, 255, 255, 0.911); /* Fond léger */
    color: #000; /* Change la couleur au besoin */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Petite ombre pour l'effet "hover" */
    backdrop-filter: blur(5px);
    
    

        section {
            position: relative;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
        }

        canvas {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


        .header {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100vw;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            text-align: center;
            color: var(--fg);
            transform-origin: center;
            will-change: transform, opacity;
        }
        .header h1 {
            width: 50%;
            margin-bottom: 0.5rem;
        }

        .header p {
            opacity: 0.35;
        }
        .hero-img {
            position: relative;
            width: 100%;
            height: 100%;
            transform: translateZ(1000px);
            opacity: 0;
            will-change: t;
        }
    </style>