    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
    }

    body {
            font-family: 'Playfair Display', 'Georgia', serif;
            line-height: 1.6;            
            color: #2c2c2c;             
            background: linear-gradient(135deg, #fdfbfb 0%, #f7f3f0 100%); 
            overflow-x: hidden;          
    }

    /* Navigation */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2rem 8%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        position: sticky;
        top: 0;
        z-index: 1000;
        animation: slideDown 0.6s ease;
    }

    @keyframes slideDown {
        from {
            transform: translateY(-100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .logo {
        font-size: 2.2rem;
        font-weight: 700;
        font-style: italic;
        list-style: none;
        background: linear-gradient(135deg, #d4a574 0%, #b88a5c 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: 1px;
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 3rem;
    }

    .nav-links a {
        text-decoration: none;
        color: #5a5a5a;
        font-size: 1.05rem;
        font-weight: 500;
        position: relative;
        transition: color 0.3s;
        letter-spacing: 0.5px;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #d4a574, #b88a5c);
        transition: width 0.3s ease;
    }

    .nav-links a:hover {
        color: #d4a574;
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    /* Section Hero */
    .hero-section {
        padding: 6rem 8%;
        text-align: center;
        background: linear-gradient(135deg, #ffffff 0%, #f9f6f3 100%);
        position: relative;
        overflow: hidden;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

    .hero-title {
        font-size: 4.5rem;
        font-style: italic;
        font-weight: 400;
        margin-bottom: 4rem;
        color: #2c2c2c;
        position: relative;
        letter-spacing: 2px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
    }

    .hero-title::after {
        content: '';
        display: block;
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, #d4a574, #b88a5c);
        margin: 1.5rem auto;
        border-radius: 2px;
    }

    .hero-gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }


    .hero-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
        transition: transform 0.4s ease;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    .hero-image-box::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(184, 138, 92, 0.1) 100%);
        opacity: 0;
        transition: opacity 0.4s;
        z-index: 1;
    }

    .hero-image-box:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 20px 60px rgba(212, 165, 116, 0.25);
    }

    .hero-image-box:hover::before {
        opacity: 1;
    }

    /* Section Portfolio */
    .portfolio-section {
        padding: 6rem 8%;
        background: linear-gradient(135deg, #fdfbfb 0%, #ffffff 100%);
        position: relative;
    }

    .section-title {
        font-size: 3.5rem;
        text-align: center;
        margin-bottom: 4rem;
        font-style: italic;
        font-weight: 400;
        color: #2c2c2c;
        letter-spacing: 2px;
        position: relative;
    }

    .section-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, #d4a574, #b88a5c);
        margin: 1rem auto;
        border-radius: 2px;
    }

    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 4rem;
        max-width: 1500px;
        margin: 0 auto;
    }

    .portfolio-item {
        text-align: center;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 12px;
        transition: all 0.4s ease;
    }

    .portfolio-item:hover {
        background: rgba(255, 255, 255, 1);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
        transform: translateY(-10px);
    }

    .portfolio-item h3 {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
        font-style: italic;
        font-weight: 500;
        color: #d4a574;
        letter-spacing: 1px;
    }

    .portfolio-description {
        font-size: 1.05rem;
        margin-bottom: 2rem;
        color: #6a6a6a;
        font-style: italic;
        line-height: 1.8;
    }

    .portfolio-image {
        aspect-ratio: 3/4;
        border-radius: 8px;
        background: linear-gradient(135deg, #f5f0eb 0%, #ebe4dd 100%);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .portfolio-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
        transition: transform 0.4s ease;
    }

    .portfolio-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(212, 165, 116, 0.2) 0%, rgba(184, 138, 92, 0.2) 100%);
        opacity: 0;
        transition: opacity 0.4s;
        z-index: 1;
    }

    .portfolio-image:hover {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(212, 165, 116, 0.3);
    }

    .portfolio-image:hover::after {
        opacity: 1;
    }

    /* Section Contact */
    .contact-section {
        padding: 6rem 8%;
        background: linear-gradient(135deg, #2c2c2c 0%, #3a3a3a 100%);
        position: relative;
        overflow: hidden;
    }

    .contact-section::before {
        content: '';
        position: absolute;
        top: -30%;
        left: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

    .contact-section .section-title {
        color: #f5f0eb;
    }

    .contact-content {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 4rem;
        align-items: center;
        max-width: 1300px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .contact-item {
        text-align: center;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(212, 165, 116, 0.2);
        transition: all 0.4s ease;
    }

    .contact-item:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(212, 165, 116, 0.2);
    }

    .contact-label {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #d4a574;
        font-weight: 500;
        letter-spacing: 1px;
    }

    .graphikito-link{
        font-size: 2.1rem;
        color: #f5f0eb;
        text-decoration: none;
        transition: all 0.3s;
        display: inline-block;
    }

    .portfolio-link {
        font-size: 1.1rem;
        color: #f5f0eb;
        text-decoration: none;
        transition: all 0.3s;
        display: inline-block;
    }

    .contact-link {
        font-size: 1.1rem;
        color: #f5f0eb;
        text-decoration: none;
        transition: all 0.3s;
        display: inline-block;
    }

    .contact-link:hover {
        color: #d4a574;
        transform: scale(1.05);
    }

    .instagram-link {
        color: #E4405F;
        font-weight: 600;
        font-size: 1.3rem;
    }

    .instagram-link:hover {
        color: #ff6b9d;
    }


    .contact-photo::before {
        content: '';
        position: absolute;
        inset: 8px; 
        background: white;
        border-radius: 50%;
        z-index: 1;
    }

    .contact-photo {
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background: linear-gradient(135deg, #d4a574 0%, #b88a5c 100%);
        position: relative;
        overflow: hidden; 
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contact-photo img {
        width: 92%; 
        height: 92%;
        object-fit: cover;
        border-radius: 50%;
        z-index: 2;
    }

    .contact-photo:hover {
        transform: scale(1.05) rotate(2deg);
        box-shadow: 0 20px 80px rgba(212, 165, 116, 0.5);
    }

    .portfolio-header {
        padding: 5rem 8% 3rem;
        text-align: center;
        background: linear-gradient(135deg, #ffffff 0%, #f9f6f3 100%);
        border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    }

    .portfolio-main-title {
        font-size: 4rem;
        font-style: italic;
        font-weight: 400;
        color: #2c2c2c;
        margin-bottom: 1rem;
        letter-spacing: 2px;
    }

    .portfolio-subtitle {
        font-size: 1.2rem;
        color: #6a6a6a;
        font-style: italic;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.8;
    }

    /* Sections de galerie */
    .gallery-section {
        padding: 4rem 8%;
        background: linear-gradient(135deg, #fdfbfb 0%, #ffffff 100%);
        border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    }

    .gallery-title {
        font-size: 3rem;
        font-style: italic;
        font-weight: 500;
        color: #d4a574;
        margin-bottom: 2.5rem;
        letter-spacing: 1px;
    }

    .gallery-container {
        position: relative;
        display: flex;
        align-items: center;
        gap: 1.5rem;
        max-width: 1600px;
        margin: 0 auto;
    }

    .gallery-wrapper {
        flex: 1;
        overflow: hidden;
        border-radius: 12px;
        position: relative;
    }

    .gallery-track {
        display: flex;
        gap: 2rem;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        width: max-content;
        padding: 0 1rem;
    }

    .gallery-track.no-transition {
        transition: none;
    }

.hero-image-box {
    aspect-ratio: 3/4;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f0eb 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    isolation: isolate; 
}

.gallery-item {
    width: calc((100vw - 12rem) / 4);
    max-width: 350px;
    aspect-ratio: 3 / 4; 
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #f5f0eb;
    position: relative;
    isolation: isolate;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center; 
    display: block;
    transition: transform 0.5s ease;
    border-radius: 8px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.contact-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a574 0%, #b88a5c 100%);
    position: relative;
    overflow: hidden; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-photo img {
    width: 92%; 
    height: 92%;
    object-fit: cover;
    border-radius: 50%;
    z-index: 2;
}

.gallery-item:hover img {
    transform: scale(1.1);
    border-radius: 8px;
}

.gallery-item::after {
    display: none;
}
#mariage-gallery .gallery-item,
#sport-gallery .gallery-item,
#portrait-gallery .gallery-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gallery-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a574 0%, #b88a5c 100%);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    flex-shrink: 0;
}

.gallery-nav:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.5);
}

.gallery-nav:active {
    transform: scale(0.95);
}

.bottom-menu {
    padding: 3rem 8%;
    text-align: center;
    background: linear-gradient(135deg, #f9f6f3 0%, #ffffff 100%);
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.bottom-menu-text {
    font-size: 1.2rem;
    color: #6a6a6a;
    font-style: italic;
}

.footer {
    padding: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #d4a574;
    font-size: 1rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 5%;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-photo {
        order: 1;
        margin: 0 auto;
        width: 200px;
        height: 200px;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

/* --- Style Prestations en Ligne --- */

.prestation-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espace entre les cases */
}

.prestation-item-row {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.prestation-item-row:hover {
    transform: scale(1.02);
    border-color: #d4a574;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.1);
}

.prestation-item-row.highlighted {
    border-left: 5px solid #d4a574;
}

.p-title {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c2c2c;
}

.p-desc {
    flex: 2;
    font-style: italic;
    color: #6a6a6a;
    font-size: 0.95rem;
    padding: 0 20px;
}

.p-price {
    flex: 0.5;
    text-align: right;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #d4a574;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .prestation-item-row {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .p-desc {
        padding: 10px 0;
    }
}


.about-container-new {
    padding: 4rem 8% 8rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fdfbfb 0%, #f7f3f0 100%);
}

.about-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 5rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.about-visual-side {
    position: relative;
    animation: slideInLeft 1s ease;
}

.about-image-wrapper {
    aspect-ratio: 4/5;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-text-side {
    text-align: left;
    padding-right: 2rem;
}

.about-title-fix {
    text-align: left;
    margin-bottom: 2.5rem;
}

.about-title-fix::after {
    margin: 1.5rem 0; /* Aligne la barre dorée à gauche */
}

.about-lead-text {
    font-size: 2rem;
    line-height: 1.3;
    color: #2c2c2c;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 500;
}

.about-main-description {
    font-size: 1.15rem;
    color: #6a6a6a;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.about-quote-box {
    padding-left: 2rem;
    border-left: 3px solid #d4a574;
    margin-top: 2rem;
}

.about-quote-box p {
    font-size: 1.4rem;
    color: #b88a5c;
    font-style: italic;
    line-height: 1.6;
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Style de la surcouche (Lightbox) */
.lightbox {
    display: none; /* Caché par défaut */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Fond noir transparent */
    cursor: zoom-out;
}

/* L'image à l'intérieur */
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

/* Bouton de fermeture */
.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Curseur sur les images du portfolio pour indiquer qu'elles sont cliquables */
.gallery-item img {
    cursor: zoom-in;
}



@media (max-width: 768px) {
    
    body {
        font-size: 14px; 
    }

    .navbar {
        flex-direction: column;
        padding: 1.5rem 5%;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.2rem;
        flex-wrap: wrap; 
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .hero-section {
        padding: 3rem 5%;
    }

    .hero-title {
        font-size: 2.2rem; 
        margin-bottom: 2.5rem;
    }

    .hero-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-section {
        padding: 4rem 5%;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr; 
        gap: 3rem;
    }

    .gallery-section {
        padding: 3rem 5%;
    }

    .gallery-title {
        font-size: 2rem;
        text-align: center;
    }

    .gallery-item {
        width: calc(100vw - 4rem); 
        max-width: 300px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .prestation-item-row {
        flex-direction: column; 
        text-align: center;
        gap: 0.8rem;
        padding: 1.5rem;
    }

    .p-desc {
        padding: 0;
    }

    .p-price {
        text-align: center;
        font-size: 1.3rem;
    }

    .about-container-new {
        padding: 2rem 5% 5rem;
    }

    .about-grid-layout {
        grid-template-columns: 1fr; 
        gap: 3rem;
    }

    .about-text-side {
        padding-right: 0;
        text-align: center;
    }

    .about-title-fix {
        text-align: center;
    }

    .about-title-fix::after {
        margin: 1.5rem auto;
    }

    .about-lead-text {
        font-size: 1.5rem;
    }

    .about-quote-box {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid #d4a574;
        padding-top: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr; 
        gap: 2rem;
    }

    .contact-photo {
        order: -1; 
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .logo {
        font-size: 1.8rem;
    }
}