<!DOCTYPE html>

<html lang="fr">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Sébastien Delbos — Blancpixel</title>

    <style>

        :root { --black: #000; --white: #fff; }

        body { background: var(--white); color: var(--black); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }

        .wrapper { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

        header { padding: 60px 0; display: flex; justify-content: space-between; align-items: center; }

        .logo-site { width: 140px; height: auto; }

        section { padding: 60px 0; border-top: 1px solid #eee; }

        .no-border { border: none; }

        .intro-text { font-size: 2.5rem; line-height: 1.1; letter-spacing: -1px; max-width: 900px; margin-bottom: 20px; font-weight: 600; }

        .sub-intro { font-size: 1.2rem; color: #555; max-width: 750px; line-height: 1.5; margin-bottom: 60px; }

        

        /* Galerie */

        .gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; margin-bottom: 40px; }

        .item { margin-bottom: 20px; text-decoration: none; color: inherit; }

        .item img { width: 100%; height: auto; display: block; transition: transform 0.3s ease; border: 1px solid #f0f0f0; }

        .item img:hover { transform: scale(1.02); }

        .cap { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 12px; color: #999; font-weight: bold; }


        /* Footer */

        footer { padding: 80px 0; border-top: 1px solid #eee; display: flex; justify-content: space-between; align-items: flex-end; }

        .contact-link { font-size: 2rem; text-decoration: none; color: #000; font-weight: 600; border-bottom: 3px solid #000; }

        .coords { text-align: right; font-size: 0.95rem; line-height: 1.7; }


        @media (max-width: 768px) {

            .intro-text { font-size: 1.8rem; }

            .gallery { grid-template-columns: 1fr; }

            footer { flex-direction: column; align-items: flex-start; gap: 30px; }

        }

    </style>

</head>

<body>


<div class="wrapper">

    <header>

        <img src="logo blancpixel.png" alt="Blancpixel" class="logo-site">

        <div style="font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; font-weight: bold;">Est. 2000</div>

    </header>


    <section class="no-border">

        <div class="intro-text">Direction Artistique, Édition & Formation PAO.</div>

        <div class="sub-intro">Expertise technique certifiée et vision créative pour vos projets print et digitaux.</div>


        <div class="gallery">

            <div class="item">

                <img src="3volets-salonhoche-paris.jpg" alt="Salons Hoche">

                <div class="cap">Édition — Salons Hoche Paris</div>

            </div>

            <div class="item">

                <img src="vieille-tv7.jpg" alt="Blancpixel Concept">

                <div class="cap">Identité — Variations Blancpixel</div>

            </div>

            <div class="item">

                <img src="affiche-entrevous-pao.jpg" alt="Affiche Entre Vous">

                <div class="cap">Affiche — Alexandra Duvivier</div>

            </div>

            <div class="item">

                <img src="coffret-dvd-dominique-duvivier.jpg" alt="Packaging DVD">

                <div class="cap">Packaging — Coffret Final Secrets</div>

            </div>

            <div class="item">

                <img src="covering-boite.jpg" alt="Grey Goose">

                <div class="cap">Volume — Boîte Grey Goose</div>

            </div>

            <div class="item">

                <img src="livre-larouteduthe.jpg" alt="Livre La Route du Thé">

                <div class="cap">Livre — Direction Artistique</div>

            </div>

            <div class="item">

                <img src="vieille-tv4.jpg" alt="Expertise Couleur">

                <div class="cap">Technique — Gestion de la couleur</div>

            </div>

            <div class="item">

                <img src="jaquette-lachineseveille.jpg" alt="Jaquette DVD">

                <div class="cap">Édition — La Chine s'éveille</div>

            </div>

        </div>

    </section>


    <footer>

        <a href="mailto:sebdelbos@gmail.com" class="contact-link">Démarrer un projet</a>

        <div class="coords">

            <strong>Sébastien Delbos</strong><br>

            06 73 18 75 99<br>

            La Garenne-Colombes

        </div>

    </footer>

</div>


</body>

</html>