/* VARIABLES THÈME LIGHT MODERNE */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #dee2e6c4;
    --accent-color: #579581; /* Doré/Bronze haut de gamme type Tom Radday */
    --text-main: #1c1c1c;
    --text-muted: #666666;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --header-scroll-bg: var(--accent-color);
    --border-color: #eaeaea;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
}

.cw{color:white !important;}.cdk{color:black !important;}.cmain{color: var(--mainc) !important;}
.fsi18{font-size: 18px !important;}.fsi32{font-size: 32px !important;}
.h24{height:24px !important;}.h50{height:50px !important;}.h100{height:100px !important;}

.awa {
    position: fixed;
    bottom: 20px;
    z-index: 99;
    left: 20px;
}
.awa img {
    width: 64px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 100px 0;
}

.alternate-bg {
    background-color: var(--bg-secondary);
}

.subtitle {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

h2 {
    font-size: 2.6rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    color: #111;
}

.mb-50 {
    margin-bottom: 50px;
}

/* NAV BAR LIGHT (Transparent au début, blanc opale au scroll) */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background: transparent;
}

    #main-header.scrolled {
        background-color: var(--header-scroll-bg);
        padding: 15px 5%;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        /*border-bottom: 1px solid var(--border-color);*/
    }

    /* Changement de couleur des liens selon l'état du header */
    #main-header .logo a,
    #main-header .nav-menu a,
    #main-header .social-media a {
        color: #ffffff; /* Blanc par défaut sur le slider noir */
        text-decoration: none;
        transition: color 0.3s ease;
    }
    #main-header:not(.scrolled) .nav-menu a.active {
        color: var(--accent-color);
        font-weight: bold;
        text-decoration: underline;
    }

    #main-header.scrolled .logo a,
    #main-header.scrolled .nav-menu a,
    #main-header.scrolled .social-media a {
        color: var(--text-main); /* Devient sombre quand le header devient blanc */
    }

        #main-header.scrolled .nav-menu a:hover,
        #main-header.scrolled .nav-menu a.active {
            color: var(--bg-primary);
        }

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

    .logo a span {
        color: var(--accent-color);
    }

    .logo img {width:110px;}
#main-header.scrolled .logo img.dark, 
#main-header:not(.scrolled) .logo img.light {display:block;} 
#main-header.scrolled .logo img.light, 
#main-header:not(.scrolled) .logo img.dark {display:none;} 
.nav-menu a {
    margin: 0 8px;
    font-size: 0.85rem;
    letter-spacing: 0.6px;
    font-weight: 500;
} @media (max-width: 1056px){
    .nav-menu a {font-size:12px;}
} .social-media a {
    margin-left: 15px;
    font-size: 1.05rem;
} .menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
} #main-header.scrolled .menu-toggle {
    color: var(--text-main);
}
/* ASHADE HERO SLIDER EFFECT (Reste immersif et sombre en haut) */
.ashade-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
} .ashade-slider-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
} .ashade-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 2s ease-in-out, transform 7s ease-out;
} .ashade-slide.active {
        opacity: 0.7;
        transform: scale(1);
    } .ashade-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(255,255,255,1) 100%);
    z-index: 2;
} .ashade-hero-title {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
} .ashade-hero-title h1 {
        font-size: 4.5rem;
        font-weight: 300;
        letter-spacing: 4px;
        margin-bottom: 10px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .ashade-hero-title p {
        font-size: 1.2rem;
        font-weight: 300;
        letter-spacing: 1px;
        color: white;
        background: rgba(10, 0, 5, 0.1);
        padding: 10px 15px 10px 15px;
        border-radius:3px;
    }
/* ABOUT SECTION (LIGHT) */
.about-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
} .about-content {
    flex: 2;
} .about-content .main-text {
        font-size: 1.35rem;
        font-weight: 300;
        color: #333;
        margin-bottom: 25px;
        font-style: italic;
        font-family: 'Georgia', serif;
        line-height: 1.7;
    } .about-content .signature {
        font-family: 'Georgia', serif;
        font-size: 1.6rem;
        color: var(--accent-color);
        font-weight: bold;
    } .about-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-left: 2px solid var(--accent-color);
    padding-left: 30px;
} .meta-box h3 {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
} .meta-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
/* SERVICES CARDS */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
} .service-card {
    background: var(--bg-primary);
    padding: 45px 35px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
} .service-card:hover {
        border-color: var(--accent-color);
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(168,138,88,0.08);
    } .service-icon {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
} .service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 500;
    color: #111;
} .service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
/* GRID GALLERY PLAIN (LIGHT DESIGN) */
.gallery-header { 
    margin-bottom: 40px; 
    text-align: center; 
}
/* Grille responsive */
.image-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); 
    gap: 25px; 
}
/* Lien de la grille */
.grid-item { 
    display: block;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03); 
}
/* Structure de la carte Prism22 adaptative */
.prism22-card {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 3/2; /* Équivalent au ratio 320x200 mais fluide */
    overflow: hidden;
}
/* Style de l'image & Augmentation du Zoom à 1.7 */
.prism22-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 !important;
    /* Transition fluide pour le zoom 1.7x */
    transition: transform 1.8s cubic-bezier(0.25, 1, 0.5, 1);
}
/* L'effet de balayage dégradé arc-en-ciel */
.prism22-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255,0,0,.4),
        rgba(255,165,0,.4),
        rgba(255,255,0,.4),
        rgba(0,255,0,.4),
        rgba(0,255,255,.4),
        rgba(0,0,255,.4),
        rgba(180,0,255,.4)
    );
    mix-blend-mode: screen;
    opacity: 0;
    transform: skewX(-20deg) translateX(-100%);
}
/* GESTION DU HOVER COMBINÉ : Zoom 1.7x + Animation Prism */
.grid-item:hover .prism22-card img {
    transform: scale(1.7); /* Zoom augmenté à 1.7 fois */
} .grid-item:hover .prism22-overlay {
    opacity: .85;
    animation: prismMove22 1.6s ease;
}
/* Keyframes de l'effet lumineux */
@keyframes prismMove22 {
    0% {
        transform: skewX(-20deg) translateX(-100%);
    }
    100% {
        transform: skewX(-20deg) translateX(200%);
    }
}
/* SECTION DESIGN IDÉAL ET FIDÈLE A LA CAPTURE D'ÉCRAN (SHOOOTE) */
.wpo-service-section {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 1px solid var(--border-color);
} .wpo-service-section .row-title {
        margin-bottom: 50px;
    } .service-slider-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    /* Un padding en bas pour absorber le décalage de la dernière carte et éviter qu'elle ne touche la section suivante */
    padding-bottom: 60px; 
    align-items: start;
}
/* Le composant de carte mis à jour */
.wpo-service-item {
    position: relative;
    height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 35px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;

    /* EFFET D'ESCALIER : décale chaque carte de sa position originale */
    transform: translateY(calc(var(--i) * 25px));
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}
/* Overlay sombre progressif interne à la carte */
.wpo-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 100%);
    z-index: -1;
    transition: background 0.4s ease;
}
/* HOVER EFFECT : On préserve le décalage en escalier tout en ajoutant un léger effet de lévitation (-5px) */
.wpo-service-item:hover {
    transform: translateY(calc((var(--i) * 15px) - 5px));
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
} .wpo-service-item:hover::before {
    background: linear-gradient(to top, var(--accent-color, #b400ff), rgba(0,0,0,0.3) 100%);
}
/* RESPONSIVE DESIGN : Sur mobile (quand les cartes passent les unes sous les autres sur une seule colonne) */
@media (max-width: 767px) {
    .wpo-service-item {
        /* On annule l'effet d'escalier sur mobile pour garder un alignement vertical classique et propre */
        transform: translateY(0) !important; 
    }
    .wpo-service-item:hover {
        transform: translateY(-5px) !important;
    }
    .service-slider-gallery {
        padding-bottom: 0;
    }
} .wpo-service-text {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
} .wpo-service-text h3 {
        font-size: 1.4rem;
        font-weight: 400;
        letter-spacing: 0.5px;
        margin: 0;
        text-transform: capitalize;
    }
/* Le bouton rond fléché identique au thème original */
.wpo-service-icon-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
} .wpo-service-item:hover .wpo-service-icon-btn {
    background: #ffffff;
    color: var(--text-main);
    border-color: #ffffff;
    transform: rotate(-45deg);
}
/* CONTACT OVERLAY LIGHT FULLSCREEN */
.contact-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
} .contact-fullscreen.open {
        opacity: 1;
        visibility: visible;
    } .back-btn {
    position: absolute;
    top: 40px;
    right: 50px;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 500;
} .back-btn:hover {
        color: var(--accent-color);
    } .contact-content {
    text-align: center;
    max-width: 600px;
    width: 90%;
} .location-tag {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
} .contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
} .contact-link {
    color: var(--text-main);
    font-size: 2rem;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
} .contact-link i {
        color: var(--accent-color);
        margin-right: 15px;
    } .contact-link:hover {
        color: var(--accent-color);
    } .contact-categories-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
} .contact-categories-list span {
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 2px;
        color: var(--text-muted);
        font-weight: 500;
    }
/* FOOTER LIGHT */
#site-footer {
    background-color: var(--bg-secondary);
    padding: 50px 0;
    border-top: 1px solid var(--border-color);
} .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
} .footer-left p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
} .footer-right a {
    color: var(--text-muted);
    margin-left: 15px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
} .footer-right a:hover {
        color: var(--accent-color);
    }
/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background-color: rgba(255,255,255,0.98);
        display: flex;
        flex-direction: column;
        padding: 100px 40px;
        gap: 25px;
        transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        border-right: 1px solid var(--accent-color);
    }

        .nav-menu.active {
            left: 0;
        }

        .nav-menu a {
            margin: 0;
            font-size: 1.1rem;
            color: var(--text-main) !important;
        }

    .social-media {
        display: none;
    }

    .about-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-meta {
        border-left: none;
        border-top: 2px solid var(--accent-color);
        padding-left: 0;
        padding-top: 30px;
        width: 100%;
    }

    .ashade-hero-title h1 {
        font-size: 3rem;
    }
}
/* ==========================================================================
   NOUVELLE SECTION : L'EXPÉRIENCE FATNA
   ========================================================================== */
.experience-intro {
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: var(--text-muted);
    font-size: 1.1rem;
} .experience-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
} .step-card {
    position: relative;
    padding: 20px 10px;
    background: transparent;
    transition: transform 0.3s ease;
} .step-number {
    font-size: 3.5rem;
    font-weight: 200;
    color: var(--text-muted); /* Très discret en arrière-plan */
    font-family: 'Georgia', serif;
    line-height: 1;
    margin-bottom: 15px;
    transition: color 0.3s ease;
} .step-card h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-main);
    letter-spacing: 0.5px;
} .step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}
/* Effet discret au survol */
.step-card:hover {
    transform: translateY(-5px);
} .step-card:hover .step-number {
        color: var(--accent-color);
    }
/* ==========================================================================
   NOUVEAU FOOTER CREATIF & VOLUMINEUX (STYLE SHOOOTE LIGHT)
   ========================================================================== */
.wpo-site-footer-modern {
    background-color: #d5e3e2;
    padding: 100px 0 30px 0;
    border-top: 1px solid var(--border-color);
}
/* Zone supérieure textuelle XXL */
.footer-top-creative {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
} .footer-huge-text h2 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0;
    text-transform: uppercase;
    color: #111;
} .footer-huge-text h2 span {
        color: var(--accent-color);
    } .footer-hire-cta {
    max-width: 380px;
} .footer-hire-cta h3 {
        font-size: 1.25rem;
        font-weight: 500;
        margin-bottom: 5px;
        color: var(--text-main);
    } .footer-hire-cta span {
        display: block;
        color: var(--text-muted);
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
/* Lien avec bouton fléché circulaire */
.footer-arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
} .circle-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.65);
    transition: all 0.3s ease;
    color: var(--text-main);
} .footer-arrow-link:hover .circle-arrow {
    background: var(--accent-color);
    color: #fff;
    transform: translateX(5px);
} .footer-separator {
    border: 0;
    height: 1px;
    background: white;
    margin-bottom: 60px;
    max-width: 400px;
}
/* Zone du milieu en colonnes */
.footer-middle-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
} .footer-column h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--text-main);
    font-weight: 600;
} .brand-col h3 {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
} .brand-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 400px;
    margin-bottom: 20px;
} .footer-social-icons a {
    color: var(--text-muted);
    margin-right: 15px;
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
} .footer-social-icons a:hover {
        color: var(--accent-color);
        transform: translateY(-2px);
    } .links-col ul {
    list-style: none;
} .links-col ul li {
        margin-bottom: 12px;
    } .links-col ul li a {
            color: var(--accent-color);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.2s ease;
            font-weight: 600;
        } .links-col ul li a:hover {
                color: var(--accent-color);
            } .contact-col p {
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
} .contact-col p i {
        color: var(--accent-color);
        width: 15px;
    }
/* Bas du footer basique */
.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
} .footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.2s ease;
} .footer-legal-links a:hover {
        color: var(--accent-color);
    }
/* RESPONSIVE DESIGN NOUVELLES SECTIONS */
@media (max-width: 991px) {
    .footer-huge-text h2 {
        font-size: 3rem;
    }

    .footer-middle-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top-creative {
        align-items: flex-start;
        flex-direction: column;
    }
}