        :root {
            --gold: #daa700;
            --gold-light: #e8c46c;
            --gold-dark: #b88a00;
            --dark: #1a1a1a;
            --light: #f5f5f5;
            --gray: #e4e1e1;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light);
            color: #333;
            overflow-x: hidden;
        }
        
        /* Navigation */
        .navbar {
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand img {
            height: 50px;
        }
        
        .nav-link {
            font-weight: 500;
            margin: 0 0.5rem;
            position: relative;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after,
        .nav-link.active:after {
            width: 100%;
        }
        
        .gold-nav {
            color: var(--gold) !important;
            font-weight: 600;
        }
        
        /* Hero Section */
        .hero-section {
            position: relative;
            padding: 5rem 0;
            background: linear-gradient(135deg, rgba(218, 167, 0, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
            overflow: hidden;
        }
        
        .hero-section:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(135deg, rgba(218, 167, 0, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .profile-container {
            position: relative;
            overflow: hidden;
            border-radius: 1rem;
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        
        .profile-container:hover {
            transform: scale(1.02);
        }
        
        .profile-container img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .gold-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(218, 167, 0, 0.3) 0%, rgba(218, 167, 0, 0) 70%);
            pointer-events: none;
        }
        
        .hero-title {
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .gold-text {
            color: var(--gold);
        }
        
        .alias-badge {
            position: absolute;
            top: -1.2rem;
            left: 0;
            font-size: 0.8rem;
            background: var(--gold);
            color: white;
            padding: 0.2rem 0.8rem;
            border-radius: 2rem;
            font-weight: 500;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            color: #666;
            margin-bottom: 1.5rem;
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--gold);
            color: white;
            border-radius: 50%;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: var(--gold-dark);
            transform: translateY(-3px);
        }
        
        .gold-diagonal-divider {
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom right, transparent 49.5%, var(--gold) 50%);
            z-index: 1;
        }
        
        /* Section Styles */
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 3rem;
            font-weight: 700;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60%;
            height: 4px;
            background: var(--gold);
        }
        
        .gold-underline {
            position: relative;
        }
        
        .gold-underline:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gold);
        }
        
        .intro-section {
            background-color: rgba(232, 196, 108, 0.1);
            padding: 3rem 0;
            border-radius: 1rem;
        }
        
        .intro-text {
            font-size: 1.25rem;
            line-height: 1.7;
        }
        
        .gold-highlight {
            color: var(--gold);
            font-weight: 600;
        }
        
        /* Services Section */
        .service-card {
            background: white;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--gold);
            margin: 1.5rem 0;
        }
        
        .service-card .card-body {
            padding: 2rem;
        }
        
        .service-title {
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        /* Portfolio Section */
        .portfolio-card {
            position: relative;
            border-radius: 1rem;
            overflow: hidden;
            margin-bottom: 2rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .portfolio-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .portfolio-card:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-card:hover .portfolio-img {
            transform: scale(1.05);
        }
        
        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, var(--dark) 0%, #2c2c2c 100%);
            color: white;
            padding: 5rem 0;
        }
        
        .contact-form {
            background: white;
            border-radius: 1rem;
            padding: 2.5rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        
        .form-control {
            border: 2px solid #eee;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 0.25rem rgba(218, 167, 0, 0.25);
        }
        
        .btn-gold {
            background: var(--gold);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-gold:hover {
            background: var(--gold-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(218, 167, 0, 0.3);
        }
        
        /* Call to Action */
        .cta-section {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            padding: 4rem 0;
            color: white;
            text-align: center;
        }
        
        .cta-title {
            font-weight: 700;
            margin-bottom: 2rem;
        }
        
        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .social-links a {
            color: white;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            color: var(--gold);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 2rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-section {
                padding: 3rem 0;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .profile-container {
                margin-bottom: 2rem;
            }
            
            .gold-diagonal-divider {
                height: 60px;
                bottom: -30px;
            }
        }

            .testimonial-card {
      background: #2c2c2c;
      border-radius: 1rem;
    }

    .testimonial-card blockquote {
      font-style: italic;
    }

    .testimonial-card p {
      font-weight: 600;
    }

        .performance-card {
      background: white;
      border-radius: 1rem;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      padding: 2rem;
      transition: all 0.3s ease;
    }

    .performance-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 15px 25px rgba(0,0,0,0.1);
    }

        .alias-badge {
      font-size: 0.75rem;
      background-color: var(--gold);
      color: white;
      padding: 0.2rem 0.5rem;
      border-radius: 0.3rem;
      position: absolute;
      top: -1.0rem;
      left: 0;
    }

        .gold-line {
      width: 40px;
      height: 3px;
      background-color: var(--gold);
    }

        .hero-section-about {
      padding: 5rem 0;
    }

        .text-gold {
      color: var(--gold);
    }

        .gold-underline {
      border-bottom: 3px solid var(--gold);
      display: inline-block;
    }

    /* ===========================================
   NAVBAR CSS - DESKTOP ET MOBILE
   =========================================== */

/* Variables pour la navbar */
:root {
    --gold: #daa700;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Navigation de base */
.navbar {
    padding: 0.8rem 0;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(10px);
}

/* Navbar qui rétrécit au scroll */
.navbar.scrolled {
    padding: 0.5rem 0;
}

/* Logo */
.navbar-brand img {
    height: 45px;
    transition: height 0.3s ease;
}

/* Liens de navigation */
.nav-link {
    font-weight: 500;
    margin: 0 0.3rem;
    position: relative;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

/* Effet de soulignement animé */
.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

/* États hover et actif */
.nav-link:hover,
.nav-link.active {
    background: rgba(218, 167, 0, 0.1);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 60%;
}

/* Lien actif en doré */
.gold-nav {
    color: var(--gold) !important;
    font-weight: 600;
}

/* États de focus pour l'accessibilité */
.nav-link:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* ===========================================
   RESPONSIVE MOBILE
   =========================================== */

@media (max-width: 991px) {
    /* Menu mobile avec fond et ombre */
    .navbar-collapse {
        background: white;
        margin-top: 1rem;
        border-radius: 1rem;
        box-shadow: var(--shadow);
        padding: 1rem;
    }
    
    /* Liens dans le menu mobile */
    .nav-link {
        padding: 1rem !important;
        margin: 0.25rem 0;
        border-radius: 0.5rem;
    }
}

@media (max-width: 768px) {
    /* Navbar plus compacte sur mobile */
    .navbar {
        padding: 0.5rem 0;
    }
    
    /* Logo plus petit sur mobile */
    .navbar-brand img {
        height: 40px;
    }
}

