/* Variables de couleur */
        :root {
            --dark-purple: #2C1B47;
            --medium-purple: #5E3F8C;
            --light-purple: #9575CD;
            --light-accent: #D1C4E9;
            --text-light: #E1E1E1;
            --text-dark: #2C1B47;
            --shadow-purple: rgba(44, 27, 71, 0.5);
        }
        
        /* Reset et styles de base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Georgia', serif;
            color: var(--text-light);
            background-color: var(--dark-purple);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        ul {
            list-style: none;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        /* Bouton */
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--medium-purple);
            color: white;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background-color: var(--light-purple);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px var(--shadow-purple);
        }
        
        /* Container */
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Header */
        header {
            background-color: var(--dark-purple);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .logo-container img {
            height: 50px;
        }
        
        .logo-container h1 {
            margin-left: 15px;
            font-size: 1.5rem;
            color: var(--light-accent);
        }
        
        /* Navigation Desktop */
        .desktop-menu {
            display: flex;
            gap: 25px;
        }
        
        .desktop-menu a {
            padding: 8px 15px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        
        .desktop-menu a:hover {
            background-color: var(--medium-purple);
        }
        
        /* Menu Burger */
        .menu-btn {
            display: none;
            cursor: pointer;
            width: 30px;
            height: 25px;
            position: relative;
            z-index: 1010;
            background: none;
            border: none;
        }
        
        .menu-btn span,
        .menu-btn::before,
        .menu-btn::after {
            content: '';
            display: block;
            width: 100%;
            height: 3px;
            background: var(--light-accent);
            position: absolute;
            left: 0;
            transition: all 0.3s ease;
        }
        
        .menu-btn span {
            top: 50%;
            transform: translateY(-50%);
        }
        
        .menu-btn::before {
            top: 0;
        }
        
        .menu-btn::after {
            bottom: 0;
        }
        
        .menu-btn.open span {
            opacity: 0;
        }
        
        .menu-btn.open::before {
            transform: rotate(45deg) translate(5px, 6px);
        }
        
        .menu-btn.open::after {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        
        /* Menu Mobile */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background: var(--medium-purple);
            padding: 80px 25px 25px;
            transition: right 0.3s ease;
            z-index: 1000;
            overflow-y: auto;
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-menu li {
            margin-bottom: 20px;
            padding-left: 10px;
            border-left: 3px solid var(--light-purple);
        }
        
        .mobile-menu a {
            display: block;
            padding: 10px 0;
            font-size: 1.1rem;
            transition: color 0.3s;
        }
        
        .mobile-menu a:hover {
            color: var(--light-purple);
        }
        
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }
        
        .overlay.active {
            display: block;
        }
        
        /* Section Hero avec vidéo */
        .hero {
            height: 100vh;
            min-height: 600px;
            position: relative;
            display: flex;
            align-items: center;
            padding-top: 80px;
            overflow: hidden;
        }
        
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(44, 27, 71, 0.6);
            z-index: -1;
        }
        
        .hero-content {
            max-width: 600px;
        }
        
        .hero-title {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
            color: var(--light-accent);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero-text {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--light-accent);
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        /* Section Portfolio */
        .portfolio {
            padding: 80px 0;
            background-color: var(--dark-purple);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            color: var(--light-accent);
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--light-purple);
            margin: 15px auto 0;
        }
        
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .gallery-item {
            background: var(--medium-purple);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .gallery-img {
            height: 220px;
            object-fit: cover;
        }
        
        .gallery-content {
            padding: 20px;
        }
        
        .gallery-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: white;
        }
        
        .gallery-desc {
            color: var(--light-accent);
        }

        /* Lightbox */
        .lightbox {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background: rgba(0, 0, 0, 0.9);
        }

        .lightbox-content {
        display: block;
        margin: 5% auto;
        max-width: 90%;
        max-height: 80vh;
        border-radius: 10px;
        }

        #caption {
        text-align: center;
        color: #ccc;
        padding: 10px;
        }

        .close {
        position: absolute;
        top: 20px;
        right: 35px;
        color: white;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
        }

        .close:hover {
        color: red;
        }
        
        /* Section About */
        .about {
            background: var(--medium-purple);
            padding: 80px 0;
        }
        
        .about-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-img {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--light-purple);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            flex-shrink: 0;
        }
        
        .about-content {
            flex: 1;
        }
        
        .about-title {
            font-size: 2rem;
            margin-bottom: 25px;
            color: white;
        }
        
        .about-text {
            margin-bottom: 15px;
            color: var(--light-accent);
        }
        
        /* Section Contact */
        .contact {
            padding: 80px 0;
            background: var(--dark-purple);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: var(--medium-purple);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            color: white;
        }
        
        .form-input {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 5px;
            background: var(--light-accent);
            font-family: inherit;
            font-size: 1rem;
        }
        
        textarea.form-input {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background: var(--dark-purple);
            padding: 40px 0 20px;
            border-top: 1px solid var(--medium-purple);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .footer-content .logo{
            display: flex;
            align-items: center;
            height: 50px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            transform: scale(1.1);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--medium-purple);
            color: var(--light-accent);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .about-container {
                flex-direction: column;
                text-align: center;
            }
            
            .about-img {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .menu-btn {
                display: block;
            }
            
            .desktop-menu {
                display: none;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-text {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                min-height: 500px;
            }
            
            .gallery {
                grid-template-columns: 1fr;
            }
            
            .mobile-menu {
                width: 100%;
                max-width: none;
            }
        }