 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --purple: #772dec;
            --pink: #e04e8e;
            --dark: #3d3d4e;
            --gray: #5a5a6e;
            --light-gray: rgba(255, 255, 255, 0.6);
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: url('images/az.png') center/cover no-repeat fixed;
            background-attachment: fixed;
            background-size: cover;
            color: var(--dark);
            overflow-x: hidden;
            position: relative;
        }

        /* Overlay texturé subtil pour plus de profondeur */
        
        

        

        .gradient-blob {
            display: none;
        }

        /* Navigation optimisée avec effet glassmorphism */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1.2rem 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
            border-bottom: 1.5px solid rgba(255, 255, 255, 0.6);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--dark);
            text-decoration: none;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
        }

        .logo:hover {
            transform: translateY(-2px);
            color: var(--purple);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--purple), var(--pink));
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Sections optimisées - espaces réduits */
        section {
            min-height: auto;
            padding: 3rem 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        section:first-of-type {
            min-height: 100vh;
            padding-top: 6rem;
        }

        .container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
        }

        /* Cards modernisées avec transparence et flou */
        .card {
            background: rgba(255, 255, 255, 0.45);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 2rem;
            padding: 2.5rem;
            box-shadow: 0 8px 30px rgba(119, 45, 236, 0.08);
            border: 1.5px solid rgba(255, 255, 255, 0.6);
            transition: all 0.3s ease;
        }

        .card:hover {
            box-shadow: 0 12px 40px rgba(119, 45, 236, 0.12);
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.5);
            border: 1.5px solid rgba(255, 255, 255, 0.8);
        }

        /* Hero Section */
       #hero .hero-content {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 2rem;
            align-items: center;
            justify-content: center;
            max-width: 900px;
            margin: 0 auto;
}

        .hero-text h1 {
            font-size: 4.5rem;
            font-weight: 800;
            color: var(--dark);
            line-height: 0.95;
            margin-bottom: 1rem;
            letter-spacing: -2px;
        }

        .hero-location {
            color: rgb(51, 51, 51);
            margin-bottom: 1.2rem;
            font-weight: 500;
        }

        .hero-description {
            font-size: 1rem;
            color: rgb(51, 51, 51);
            line-height: 1.65;
            margin-bottom: 2rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* Boutons optimisés */
        .btn {
            display: inline-block;
            padding: 0.9rem 1.8rem;
            background: linear-gradient(135deg, var(--purple), var(--pink));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(119, 45, 236, 0.2);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(119, 45, 236, 0.35);
        }

        .btn-secondary {
            display: inline-block;
            padding: 0.9rem 1.8rem;
            background: white;
            color: var(--purple);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            border: 2px solid var(--purple);
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--purple);
            color: white;
            transform: translateY(-3px);
        }

        /* Images optimisées avec lazy loading suggéré */
        .blob-image {
            width: 350px;
            height: 350px;
            border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
            background: linear-gradient(135deg, #d946ef, #8b5cf6);
           
            overflow: hidden;
            position: relative;
            box-shadow: 0 20px 50px rgba(119, 45, 236, 0.2);
            animation: morph 8s ease-in-out infinite;
        }

        
        @keyframes morph {
            0%, 100% { border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%; }
            50% { border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%; }
        }

        .image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        
            

        }

        .image-placeholder img {
            width: 140%;
            height: 100%;
            object-fit: cover;
        }

        /* Section À propos optimisée */
        #about {
            padding: 2rem 2rem 3rem;
        }

        #about .container {
            max-width: 900px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: #5a5a6e;
            margin-bottom: 2rem;
            letter-spacing: -1px;
            text-align: center;
        }

        .about-content {
             display: block;
}

        .about-description {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--gray);
        }

        .boldd {
            font-weight: 700;
            color: var(--dark);
        }

        .bolld{
            font-weight: 800;
            color: #e01caf;

        }


        /* Compétences */
        /* Compétences - disposition en grille */
.skills-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.skills-section {
    margin-top: 0;
}

@media (max-width: 968px) {
    .skills-wrapper {
        grid-template-columns: 1fr;
    }
}

        .skills-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--purple);
            display: inline-block;
        }

        .competences-list {
            list-style: none;
            margin-top: 1rem;
        }

        .competences-list li {
            padding: 0.65rem 0;
            color: var(--gray);
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .competences-list li:hover {
            color: var(--purple);
            transform: translateX(5px);
        }

        .competences-list li::before {
            content: "▸";
            color: var(--purple);
            font-weight: bold;
            display: inline-block;
            width: 1.5rem;
        }

        /* Grille logiciels */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
            gap: 1.2rem;
            margin-top: 1.2rem;
        }

        .skill-card {
            text-align: center;
            transition: all 0.3s ease;
        }

        .skill-card:hover {
            transform: translateY(-8px);
        }

        .skill-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 0.6rem;
            background: white;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }

        .skill-card:hover .skill-icon {
            box-shadow: 0 8px 25px rgba(119, 45, 236, 0.15);
        }

        .skill-icon.ps { background: url(images/photoshop.png) center/60px no-repeat; }
        .skill-icon.ai { background: url(images/illustrator.png) center/60px no-repeat; }
        .skill-icon.lr { background: url(images/lightroom.png) center/60px no-repeat; }
        .skill-icon.figma { background: #27272f url(images/figma.svg) center/30px no-repeat; }
        .skill-icon.krita { background: url(images/krita.png) center/60px no-repeat; }
        .skill-icon.vscode { background: url(images/vsc.png) center/50px no-repeat; }

        .skill-name {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--dark);
        }

        /* Projets */
        #projects {
            padding: 2rem 2rem 3rem;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.8rem;
            margin-top: 2rem;
        }

        .project-card {
            background: rgba(255, 255, 255, 0.45);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 1.8rem;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(119, 45, 236, 0.08);
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            border: 1.5px solid rgba(255, 255, 255, 0.6);
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(119, 45, 236, 0.18);
            background: rgba(255, 255, 255, 0.5);
            border: 1.5px solid rgba(255, 255, 255, 0.8);
        }

        .project-image {
            height: 220px;
            background-size: cover;
            background-position: center;
            transition: transform 0.3s ease;
        }

        .project-card:hover .project-image {
            transform: scale(1.05);
        }

        .variant-1 { background: url(images/mojo_mock.png) center/cover; }
        .variant-2 { background: url(images/ddd_paperbag.png) center/cover; }
        .variant-3 { background: url(images/serigraphie_resultat_1.jpg) center/cover; }
        .variant-4 { background: url(images/podcast.png) center/cover; }
        .variant-5 { background: url(images/baba.png) center/cover; }
        .variant-6 { background: url(images/etiquette_v2.png) center/cover; }
        .variant-7 { background: url(images/open_dump.png) center/cover; }

        .project-content {
            padding: 1.5rem;
        }

        .project-meta {
            display: flex;
            gap: 0.6rem;
            margin-bottom: 0.8rem;
            align-items: center;
        }

        .project-category {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--purple);
            background: rgba(119, 45, 236, 0.1);
            padding: 0.4rem 0.9rem;
            border-radius: 50px;
        }

        .project-year {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--gray);
        }

        .project-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.6rem;
        }

        .project-link {
            color: var(--purple);
            font-weight: 600;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Contact */
        #contact {
            padding: 2rem 2rem 3rem;
        }

        #contact .card {
            text-align: center;
        }

        .contact-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .social-links {
            display: flex;
            gap: 1.2rem;
            justify-content: center;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 55px;
            height: 55px;
            background: white;
            border-radius: 50%;
            color: var(--purple);
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
            font-size: 1.2rem;
        }

        .social-link:hover {
            background: linear-gradient(135deg, var(--purple), var(--pink));
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(119, 45, 236, 0.25);
        }

        /* Footer avec effet glassmorphism */
        footer {
            padding: 1.5rem 2rem;
            text-align: center;
            color: var(--gray);
            background: rgba(255, 255, 255, 0.45);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-top: 1.5px solid rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 968px) {
            #hero .hero-content,
            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 3rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .blob-image {
                width: 250px;
                height: 250px;
                margin: 0 auto;
            }

            .nav-links {
                gap: 1rem;
                font-size: 0.85rem;
            }

            section {
                padding: 2rem 1.5rem;
            }

            .skills-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }