:root {
            --primary-gold: #D4AF37;
            --gold-light: #F4E4BC;
            --gold-dark: #B8941F;
            --text-dark: #1a1a1a;
            --text-light: #666;
            --bg-light: #fafafa;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background: var(--bg-light);
            font-weight: 300;
            letter-spacing: -0.01em;
            padding-top: 80px;
        }

        /* Correction pour la taille du logo navbar */
        .navbar-logo-professional {
            width: 50px !important;
            height: 50px !important;
            max-width: 50px !important;
            max-height: 50px !important;
        }

        /* Correction pour le texte de la navbar sur une seule ligne */
        .navbar-brand-text {
            white-space: nowrap !important;
            overflow: visible !important;
            text-overflow: clip !important;
            display: inline !important;
            width: auto !important;
            max-width: none !important;
        }

        /* Correction pour l'alignement du bouton "ESPACE PRO" */
        .btn-cta-professional span {
            display: inline-block !important;
            line-height: 1.2 !important;
            vertical-align: middle !important;
            letter-spacing: 0.05em !important;
        }

        /* Section héros avec style fr/index.php */
        .hero-section {
            background: 
                linear-gradient(135deg, 
                    rgba(0, 0, 0, 0.85) 0%,         
                    rgba(26, 26, 26, 0.8) 30%,     
                    rgba(40, 40, 40, 0.7) 70%,     
                    rgba(0, 0, 0, 0.9) 100%        
                ),
                url('https://djprestigesound.be/images/dj_bg.jpg') center/cover;
            min-height: 80vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
            background-attachment: fixed;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="20" cy="30" r="1.5" fill="%23D4AF37" opacity="0.3"/><circle cx="180" cy="60" r="1" fill="%23F4E4BC" opacity="0.4"/><circle cx="50" cy="150" r="0.8" fill="%23D4AF37" opacity="0.2"/><circle cx="150" cy="20" r="1.2" fill="%23C9A961" opacity="0.3"/><circle cx="100" cy="100" r="0.6" fill="%23D4AF37" opacity="0.5"/><circle cx="30" cy="170" r="1" fill="%23F4E4BC" opacity="0.3"/></svg>') repeat;
            animation: float 25s ease-in-out infinite, shimmer 15s ease-in-out infinite alternate;
            z-index: 1;
            opacity: 0.6;
        }

        @keyframes shimmer {
            0% { opacity: 0.4; }
            100% { opacity: 0.8; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .invitation-badge {
            background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-block;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            animation: pulse 3s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #ffffff;
            text-shadow: 0 0 20px rgba(0, 0, 0, 1), 3px 3px 6px rgba(0, 0, 0, 1), -1px -1px 2px rgba(0, 0, 0, 1);
            position: relative;
        }
        
        .hero-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #D4AF37, transparent);
            border-radius: 2px;
        }

        .code-highlight {
            background: rgba(0,0,0,0.5);
            padding: 1rem 2rem;
            border-radius: 10px;
            font-family: 'Space Grotesk', monospace;
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            margin: 1.5rem 0;
            border: 2px solid rgba(255,255,255,0.4);
            color: #ffffff;
            text-shadow: 2px 2px 4px rgba(0,0,0,1);
        }

        /* Styles du catalogue original */
        .page-catalogue {
            background: white;
            margin: 2rem auto;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            overflow: hidden;
            max-width: 1200px;
        }

        .cover {
            background: #f8f6f0;
            color: #2a2a2a;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: stretch;
            padding: 60px;
            gap: 60px;
            min-height: 600px;
        }

        .cover h1 {
            font-family: 'Fraunces', serif;
            font-size: 4rem;
            font-weight: 600 !important;
            margin-bottom: 20px;
            color: #000000 !important;
            letter-spacing: -0.04em;
            line-height: 0.9;
            font-style: italic;
        }

        .cover .subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 1.2rem;
            font-weight: 600 !important;
            margin-bottom: 3rem;
            color: #000000 !important;
            letter-spacing: 0.1em;
            line-height: 1.4;
        }

        .salon-info {
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(26, 26, 26, 0.08);
            padding: 3rem;
            border-radius: 10px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.06);
            position: relative;
        }

        .salon-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary-gold) 0%, rgba(212, 175, 55, 0.3) 100%);
        }

        .salon-info h2 {
            color: #000000 !important;
            font-size: 1.8rem;
            margin-bottom: 2rem;
            font-family: 'Fraunces', serif;
            font-weight: 600 !important;
            font-style: italic;
        }

        .detail-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 1.2rem;
        }

        .detail-label {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.7rem;
            font-weight: 800 !important;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: #000000 !important;
            min-width: 60px;
        }

        .detail-content {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 600 !important;
            line-height: 1.5;
            color: #000000 !important;
        }

        .detail-content.highlight {
            color: var(--primary-gold);
            font-weight: 400;
        }

        .logo-circle {
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: rgba(26, 26, 26, 0.03);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(212, 175, 55, 0.15);
            position: relative;
            margin: 0 auto;
        }

        .main-logo {
            width: 200px;
            height: 200px;
            object-fit: contain;
            opacity: 0.95;
        }

        .signature-photo {
            position: absolute;
            top: -30px;
            right: -40px;
            width: 100px;
            height: 130px;
            object-fit: cover;
            border-radius: 8px;
            opacity: 0.2;
            z-index: 1;
            filter: grayscale(80%) sepia(10%) hue-rotate(30deg);
        }

        /* Content pages */
        .content-page {
            padding: 3rem;
            position: relative;
            display: flex;
            gap: 40px;
        }

        .left-column, .right-column {
            flex: 1;
            position: relative;
            z-index: 2;
        }

        .watermark {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 100px;
            height: 100px;
            opacity: 0.08;
            z-index: 1;
        }

        .watermark img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        h2 {
            font-family: 'Fraunces', serif;
            font-size: 3rem;
            font-weight: 400;
            color: #0a0f1c;
            margin-bottom: 2.5rem;
            position: relative;
            padding-bottom: 20px;
            letter-spacing: -0.01em;
            font-style: italic;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 140px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-gold) 0%, rgba(212, 175, 55, 0.3) 80%, transparent 100%);
            border-radius: 1px;
        }

        h3 {
            font-family: 'Fraunces', serif;
            font-size: 1.8rem;
            font-weight: 400;
            color: #1a1f2e;
            margin: 30px 0 18px 0;
            letter-spacing: -0.01em;
            font-style: italic;
        }

        /* Photo galleries */
        .photo-gallery {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 8px;
            margin-bottom: 20px;
        }

        .gallery-photo {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 8px;
            opacity: 0.95;
            transition: opacity 0.3s;
        }

        .gallery-photo.large {
            grid-column: span 2;
            height: 180px;
        }

        .gallery-photo.tall {
            grid-row: span 2;
            height: 328px;
        }

        .gallery-photo.mega {
            grid-column: span 2;
            grid-row: span 2;
            height: 328px;
        }

        .bottom-gallery {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 8px;
            margin-top: 25px;
        }

        .bottom-photo {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
            opacity: 0.95;
        }

        .bottom-photo.wide {
            grid-column: span 2;
            height: 200px;
        }

        .bottom-photo.tall {
            grid-row: span 2;
            height: 368px;
        }

        .vally-signature {
            text-align: center;
            font-size: 12px;
            color: #999;
            font-style: italic;
            margin-top: 10px;
        }

        .ceremony-photo {
            width: 200px;
            height: 130px;
            object-fit: cover;
            border-radius: 8px;
            float: right;
            margin: 0 0 20px 20px;
            opacity: 0.8;
            filter: grayscale(20%);
        }

        /* Stats grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 40px 0;
        }

        .stat-box {
            text-align: center;
            padding: 30px;
            background: #f8f9fa;
            border-radius: 10px;
            transition: transform 0.3s;
        }

        .stat-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .stat-number {
            font-family: 'Fraunces', serif;
            font-size: 56px;
            font-weight: 500;
            color: var(--primary-gold);
            display: block;
            font-style: italic;
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
            letter-spacing: -0.02em;
        }

        .stat-label {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 11px;
            font-weight: 400;
            text-transform: uppercase;
            color: #666;
            margin-top: 15px;
            letter-spacing: 0.1em;
        }

        /* Package cards */
        .package-card {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            position: relative;
        }

        .package-card.featured {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
            color: white;
        }

        .package-card h3 {
            font-family: 'Fraunces', serif;
            font-size: 1.8rem;
            font-weight: 400;
            margin-bottom: 1rem;
            font-style: italic;
        }

        .price {
            font-family: 'Fraunces', serif;
            font-size: 3rem;
            font-weight: 500;
            color: var(--primary-gold);
            margin: 2rem 0;
            font-style: italic;
        }

        .package-card.featured .price {
            color: white;
        }

        .old-price {
            text-decoration: line-through;
            color: #ffffff;
            text-shadow: 0 0 10px rgba(0, 0, 0, 1), 2px 2px 4px rgba(0, 0, 0, 1), -1px -1px 2px rgba(0, 0, 0, 1);
            font-size: 2rem;
            margin-right: 20px;
            opacity: 0.8;
        }

        .package-card.featured .old-price {
            color: #ffffff;
            text-shadow: 0 0 10px rgba(0, 0, 0, 1), 2px 2px 4px rgba(0, 0, 0, 1), -1px -1px 2px rgba(0, 0, 0, 1);
        }

        .badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #ff4444;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        ul {
            list-style: none;
            padding: 0;
        }

        ul li {
            padding: 12px 0;
            padding-left: 32px;
            position: relative;
            line-height: 1.55;
            font-size: 0.95rem;
        }

        ul li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-gold);
            font-weight: 600;
            font-size: 1.1rem;
        }

        .package-card.featured ul li:before {
            color: white;
        }

        /* Services grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin: 40px 0;
        }

        .service-item {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            border-left: 4px solid var(--primary-gold);
            position: relative;
            overflow: hidden;
        }

        .service-bg-image {
            position: absolute;
            top: 0;
            right: 0;
            width: 120px;
            height: 100%;
            object-fit: cover;
            opacity: 0.08;
            z-index: 1;
        }

        .service-item h4,
        .service-item p {
            position: relative;
            z-index: 2;
        }

        .service-item h4 {
            font-family: 'Fraunces', serif;
            font-size: 1.6rem;
            font-weight: 400;
            margin-bottom: 20px;
            color: #1a1f2e;
            font-style: italic;
        }

        /* Testimonials */
        .testimonial {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 20px;
            position: relative;
            font-style: italic;
        }

        .testimonial:before {
            content: '"';
            font-size: 60px;
            color: var(--primary-gold);
            position: absolute;
            top: -10px;
            left: 20px;
        }

        .testimonial-author {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 400;
            color: #1a1f2e;
            margin-top: 20px;
            letter-spacing: 0.02em;
            font-size: 14px;
        }

        .rating {
            color: var(--primary-gold);
            font-size: 20px;
            margin-bottom: 10px;
        }

        /* Pricing tables */
        .pricing-table {
            margin-bottom: 20px;
        }

        .price-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            transition: background-color 0.3s;
        }

        .price-item:hover {
            background-color: rgba(212, 175, 55, 0.05);
            padding-left: 10px;
            padding-right: 10px;
            border-radius: 6px;
        }

        .price-item.special {
            background-color: rgba(212, 175, 55, 0.1);
            border-radius: 6px;
            padding: 12px 15px;
            margin: 5px 0;
        }

        .price-item.bestseller {
            background-color: rgba(212, 175, 55, 0.15);
            border-radius: 6px;
            padding: 12px 15px;
            margin: 5px 0;
        }

        .service-name {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 300;
            color: #1a1a1a;
            flex: 1;
            line-height: 1.4;
        }

        .price-amount {
            font-family: 'Fraunces', serif;
            font-size: 16px;
            font-weight: 500;
            font-style: italic;
            color: var(--primary-gold);
            margin-left: 20px;
            min-width: 60px;
            text-align: right;
        }

        /* Team photos */
        .team-photos {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
            position: relative;
            z-index: 2;
        }

        .team-member {
            text-align: center;
        }

        .team-photo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(212, 175, 55, 0.6);
            margin-bottom: 8px;
            transition: transform 0.3s, border-color 0.3s;
        }

        .team-photo:hover {
            transform: scale(1.1);
            border-color: var(--primary-gold);
        }

        .team-name {
            font-size: 12px;
            color: var(--primary-gold);
            font-weight: 500;
            font-family: 'Space Grotesk', sans-serif;
        }

        /* Contact section */
        .contact-section {
            background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 100%);
            color: white;
            padding: 60px;
            text-align: center;
            border-radius: 20px;
            margin: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .contact-section h2 {
            color: #ffffff !important;
            font-weight: 600 !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .contact-item {
            text-align: center;
        }

        .contact-item h4 {
            font-family: 'Space Grotesk', sans-serif;
            color: var(--primary-gold);
            margin-bottom: 15px;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .cover {
                grid-template-columns: 1fr;
                padding: 2rem;
                gap: 2rem;
            }
            
            .cover h1 {
                font-size: 2.5rem;
            }
            
            .invitation-title {
                font-size: 2rem;
            }
            
            .content-page {
                flex-direction: column;
                padding: 2rem 1rem;
            }
            
            h2 {
                font-size: 2rem;
            }

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

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

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

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

            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Animation */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .fade-in {
            animation: fadeIn 1s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Animations pour les icônes */
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        @keyframes swing {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(15deg); }
            75% { transform: rotate(-15deg); }
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }
        
        @keyframes flicker {
            0%, 100% { opacity: 1; }
            25% { opacity: 0.8; }
            50% { opacity: 0.9; }
            75% { opacity: 0.85; }
        }
        
        @keyframes twinkle {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.2) rotate(180deg); }
        }
        
        /* Animations pour les cartes de formules */
        .package-card {
            transition: all 0.3s ease;
        }
        
        .package-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        
        .package-card.featured {
            animation: glow 2s infinite alternate;
        }
        
        @keyframes glow {
            from { box-shadow: 0 0 20px rgba(212,175,55,0.3); }
            to { box-shadow: 0 0 30px rgba(212,175,55,0.6); }
        }

