<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Rien à voir ici / Nothing to see here - Photographie</title>
    
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLMDJc5fE9dI3+dI1n3F7E7n1O3A2pL+3c2tFw1pA5jP6/4eG8A+y/k7H7O3f5w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
    
    <style>
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            background-color: #222; /* Arrière-plan sombre */
            color: #eee;
            text-align: center;
            overflow: hidden;
        }

        .container {
            padding: 30px;
            background-color: #333;
            border-radius: 15px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
            max-width: 600px;
            margin: 20px;
            position: relative;
            z-index: 1;
        }

        /* Style pour l'icône Font Awesome */
        .camera-icon {
            font-size: 5em; 
            color: #FFD700; /* Or */
            margin-bottom: 25px;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
        }

        h1 {
            font-size: 2.8em;
            color: #FFD700; 
            margin-bottom: 0.5em;
            letter-spacing: 2px;
        }

        p {
            font-size: 1.1em;
            margin-bottom: 1.5em;
            line-height: 1.6;
        }

        a {
            color: #00BFFF; 
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2em;
            padding: 12px 25px;
            border: 2px solid #00BFFF;
            border-radius: 30px;
            transition: background-color 0.4s ease, color 0.4s ease, transform 0.3s ease;
        }

        a:hover {
            background-color: #00BFFF;
            color: white;
            transform: translateY(-3px);
        }

        .language-separator {
            margin: 15px 0;
            font-style: italic;
            color: #888;
            font-size: 0.9em;
        }

        /* Effets décoratifs (facultatifs mais gardés pour le style) */
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=');
            opacity: 0.05;
            pointer-events: none;
            z-index: 0;
        }

        .lens-effect {
            position: absolute;
            width: 80px;
            height: 80px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            filter: blur(20px);
            z-index: 0;
            animation: floatLens 8s infinite ease-in-out;
        }

        .lens-effect:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
        .lens-effect:nth-child(2) { bottom: 20%; right: 10%; width: 60px; height: 60px; animation-delay: 2s; }
        .lens-effect:nth-child(3) { top: 30%; right: 25%; width: 100px; height: 100px; animation-delay: 4s; }

        @keyframes floatLens {
            0% { transform: translate(0, 0) scale(1); opacity: 0.05; }
            50% { transform: translate(20px, 30px) scale(1.05); opacity: 0.08; }
            100% { transform: translate(0, 0) scale(1); opacity: 0.05; }
        }
    </style>
</head>
<body>
    
<div class="lens-effect"></div>
    <div class="lens-effect"></div>
    <div class="lens-effect"></div>

    <div class="container">
        <i class="fas fa-camera-retro camera-icon"></i> 

        <h1>Rien à voir ici.</h1>
        <p class="language-separator">***</p>
        
        <h1>Nothing to see here.</h1>
        
        <p>En tant que passionné(e) de photographie, je n'ai pas oublié de vous diriger vers mon portfolio et mes créations. / As a photography enthusiast, I haven't forgotten to direct you to my portfolio and creations.</p>
        <a href="https://jacquesfournier.me" target="_blank">jacquesfournier.me</a>
    </div>
</body>
</html>