/*
Theme Name: Pixhell Theme
Author: Pix'hell
Version: 1.0
*/

:root {
    --main-black: #000000;
    --main-yellow: #FFFFAC;
    --main-blue: #0052FF;
    --main-white: #F7EEE4;
    --font-sofia: Sofia, sans-serif;
    --font-gish: Gishella, sans-serif;
    --font-sign: Authentic, sans-serif;
}

@font-face {
    font-family: 'Sofia';
    src: url('assets/fonts/Sofia_Pro_Regular.otf') format('opentype');
    font-style: normal;
}

@font-face {
    font-family: 'Gishella';
    src: url('assets/fonts/Gishella_Morely.otf') format('opentype');
    font-style: normal;
}

@font-face {
    font-family: 'Authentic';
    src: url('assets/fonts/Authentic_Signature.otf') format('opentype');
    font-style: normal;
}

.pad-top80 {
    padding-top: 80px
}

.pad-bottom80 {
    padding-bottom: 80px
}

.pad-top100 {
    padding-top: 100px
}

.pad-bottom100 {
    padding-bottom: 100px
}

.pad-top150 {
    padding-top: 150px
}

.pad-bottom150 {
    padding-bottom: 150px
}

.col-8-custom {
    width: 12.5%;
    /* 100% ÷ 8 */
    float: left;
}

/* ----------------------------- */
/* TYPOGRAPHY SEO + FLUID       */
/* ----------------------------- */

/* Paragraphe (texte standard) */
p {
    font-size: clamp(15px, 1.1vw, 19px);
    margin-bottom: 0 !important;
    font-family: var(--font-Montserrat);
    font-weight: 500;
}

/* H1 — Page principale */
h1 {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    line-height: 1.12;
}

/* H2 — Sous-titres principaux */
h2 {
    font-size: clamp(3rem, 4vw, 4.375rem);
    line-height: 1.1;
}

/* H3 — Sous-parties, contenu secondaire */
h3 {
    font-size: clamp(2rem, 2.2vw, 2.5rem);
    line-height: 1.1;
}

.titre_bar {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    overflow: visible;
    /* permet le débordement de la barre */
}

.titre_bar h2 {
    position: relative;
    z-index: 2;
    font-family: var(--font-sign);
    color: var(--main-blue);
    font-size: clamp(5rem, 10vw, 10rem) !important;
    opacity: 0;
    /* pour animation */
}

.titre_bar .bar {
    position: absolute;
    left: -50vw;
    /* démarre moitié écran à gauche du container */
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: 0;
    /* démarre invisible */
    background-color: var(--main-yellow);
    z-index: 1;
}

.histoire h2,
.studio h2,
.services h2,
.realisations h2,
.avis h2,
.contact h2 {
    font-family: var(--font-sign);
    color: var(--main-blue);
}

h2.circle-bg {
    position: relative;
    display: inline-block;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    /* garde les proportions de l'image */
}

.center-title {
    width: 100%;
    text-align: center;
}

.image-wrapper {
    height: auto;
    max-height: 800px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.portrait-img {
    height: auto;
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

* {
    padding: 0;
    margin: 0;
}

.clients,
.contact,
.footer {
    max-width: 100%;
    overflow: hidden;
}

html,
body {
    overflow-x: hidden;
    /* bloque tout débordement horizontal */
}

body {
    -webkit-font-smoothing: antialiased;
    /* Safari/Chrome */
    background-color: var(--main-white);
}

ul {
    list-style: none;
}

a {
    text-decoration: none
}

figure {
    margin-bottom: 0 !important
}

.no-padding > [class*=col-] {
    padding-right: 0;
    padding-left: 0
}

.split-block {
    overflow: hidden;
    /* empêche les débordements lors de l’animation */
}

.split-block .word {
    display: inline-block;
    opacity: 0;
}

.fade-block {
    opacity: 0;
    /* invisible au départ */
    transform: translateY(20px);
    /* léger décalage vertical */
}

.pan-right-block {
    opacity: 0;
    /* invisible au départ */
    transform: translateX(500px);
    /* décalé à gauche de 50px */
}

.pan-left-block {
    opacity: 0;
    /* invisible au départ */
    transform: translateX(-500px);
    /* décalé à gauche de 50px */
}

.grecaptcha-badge,
.cf-turnstile {
    display: none !important;
}

/******* RESPONSIVE NAVBAR ********/
header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10000;
}

header .container-fluid {
    width: auto;
}

.full-menu2 {
    width: 100%;
    height: 75px !important;
    position: relative;
    top: 0;
    left: 0;
    text-align: left;
    z-index: 1030;
    transition: background-color 0.3s ease, border 0.3s ease;
}

.full-menu2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

/* fausse border (invisible au début) */
.full-menu2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 7px;
    background: var(--main-yellow);

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}


.full-menu2 .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.full-menu2 .navbar-toggler:focus,
.full-menu2 .navbar-toggler:active,
.full-menu2 .open:focus,
.full-menu2 .navbar-toggler {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.full-menu2 .navbar-brand {
    display: flex;
    align-items: center;
    height: auto;
    /* ou auto si tu veux que ça s'adapte */
    padding: 5px;
    /* padding éventuel */
}

.full-menu2 .navbar-brand .picto {
    width: auto;
    /* taille fixe */
    height: 25px;
    /* taille fixe */
    object-fit: contain;
    padding-left: 10px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.picto.logo-couleur {
    display: none !important; /* on cache le logo coloré au départ */
    opacity: 0;
    transition: opacity 0.5s ease;
}

.black-bg .logo-blanc {
    display: none; /* quand on scroll, on cache le blanc */
    opacity: 0;
    transition: opacity 0.5s ease;
}

.black-bg .logo-couleur {
    display: inline-block !important; /* et on montre le coloré */
    opacity: 1;
    transition: opacity 0.5s ease;
}

.full-menu2 .navbar-collapse .navbar-nav {
    margin-left: auto;
    margin-right: 20px;
    float: right;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.7);
    transition: 0.4s all;
    display: inline-block;
    /* IMPORTANT pour que GSAP translateY fonctionne */
    position: relative;
}

.full-menu2 .navbar-toggler span {
    color: #000000;
    border: none !important;
    text-shadow: none !important;
}

.full-menu2 .open {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.navbar-toggler .open {
    display: inline-block;
}

.navbar-toggler .close {
    display: none;
}

/* Quand le menu est ouvert (pas collapsed) */
.navbar-toggler:not(.collapsed) .open {
    display: none;
}

.navbar-toggler:not(.collapsed) .close {
    display: inline-block;
}

.navbar-nav .nav-link {
    position: relative;
    display: inline-block;
    /* OBLIGATOIRE */
    z-index: 1;
}

/* barre */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    /* plus stable que top:50% */
    width: 100%;
    height: 50%;
    background-color: var(--main-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

/* animation */
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.nav-item {
    font-size: 13px;
    text-transform: uppercase;
    font-family: var(--font-gish);
    letter-spacing: 1px;
    float: left;
    margin-left: 20px;
    position: relative;
}

.stick-fixed {
    position: fixed !important;
    top: 0;
    left: 0;
}

.black-bg {
    background-color: var(--main-white);
    transition: all .3s ease-out;
}

.black-bg::after {
    transform: scaleX(1);
}

.black-bg .nav-item .nav-link {
    color: var(--main-black);
    transition: all .3s ease-out;
}

@media only screen and (max-width: 1366px) {
    .nav-item {
        margin-left: 25px;
    }
}

@media (min-width:992px) {
    .navbar-expand-md .navbar-collapse {
        flex-direction: row-reverse;
    }

    .full-menu2 .navbar .container button {
        display: none;
    }
}

@media (max-width:991px) {
    .full-menu2 {
        height: auto !important;
        min-height: 75px;
        /* plus de 75px fixe */
    }

    .full-menu2 .navbar {
        display: flex;
                flex-direction: column; /* empile le logo + collapse */
        align-items: stretch; /* étire sur toute la largeur */
        height: auto !important; /* auto pour accueillir le menu ouvert */
        padding: 0;
    }

    /* Ligne du haut : logo + burger */
    .full-menu2 .container-fluid.menu-mob {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 75px; /* hauteur fixe pour la ligne du haut */
    }

    /* Collapse s’ouvre sous la ligne du haut */
    .full-menu2 .navbar-collapse {
        width: 100%;
        position: relative; /* reste sous la ligne du haut */
        top: auto;
        max-height: none;
    }

    header .container-fluid {
        width: -webkit-fill-available;
    }

    .nav-item {
        margin-left: 0;
        font-size: 17px;
    }

    .full-menu2 .navbar .container-nav {
        display: none;
    }

    .full-menu2 .navbar {
        margin: 0;
    }

    .full-menu2 .navbar .container {
        display: flex;
    }

    .full-menu2 .navbar-nav {
        width: 100%;
        float: none !important;
        background: var(--main-white);
    }

    .full-menu2 .navbar-nav li {
        text-align: left;
        margin-left: 50px;
        text-shadow: none;
    }

    .full-menu2 .navbar-nav li:last-child {
        border-bottom: none;
    }

    .full-menu2 .navbar-nav li a {
        color: var(--main-black) !important;
        padding: 15px 0;
    }

    #navbar-list {
        background-color: var(--main-white);
    }

    .menu-mob {
        margin-left: 15px;
        margin-right: 15px;
    }

    /* Facultatif : supprimer toute transition pour sécurité */
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        transform: none;
    }

    .navbar-nav .nav-link::after {
        height: 30%;
        bottom: 16%;
    }
}

/******* FULL BACKGROUND IMAGE ********/
.full-background {
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-left: 0;
    z-index: 100;
    position: relative;
}

.full-background .row:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.15);
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero_text_container {
    width: 100vw;
    min-height: 65dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "arial";
    color: var(--main-white);
    z-index: 1;
    transform: translateY(-5%);
}

ul.hero_text_title {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-left: 0 !important;
    flex-wrap: wrap;
}

.word {
    display: flex;
}

.hero_text_title li {
    font-size: clamp(2.8rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 2px;
    overflow-y: hidden;
    padding: 0 0.05em;
    /* léger espace horizontal */
}

.hero_text_title li span {
    display: block;
    font-family: var(--font-gish);
}

.hero_text_tagline {
    font-family: var(--font-sofia);
    font-size: clamp(0.85rem, 1.4vw, 1.1rem);
    /* plus petit */
    font-weight: 300;
    /* plus fin */
    letter-spacing: 0.12em;
    /* aéré = premium */
    text-align: center;
    margin-top: 0.3em;
    /* proche du titre */
    opacity: 0.8;
    /* légèrement atténué */
    text-transform: uppercase;
    width: 80vw;
    margin-left: auto;
    margin-right: auto;
    overflow-y: hidden;
    margin-top: -0.7em;
}

.hero_text_tagline span {
    display: block;
}

.hero_text_title li:nth-child(6) {
    /* le dernier A */
    margin-right: 0.5em;
    /* espace entre ORAMAA et STUDIO */
}

.hero_text_title .word {
    display: flex;
    margin: 0;
}

    .word-1 {
        margin-right: 0.2em !important;
    }

@media screen and (max-width: 720px) {
    .hero_text_container {
        width: 90vw;
        margin-left: auto;
        margin-right: auto;
        min-height: 60dvh;
    }
    
    .hero_text_title {
        flex-wrap: nowrap;
        line-height: 0.85;
        margin-bottom: 30px;
    }
    
        .hero_text_title .word {
        width: 100%;
        justify-content: center;
        margin: 0;
    }
}

/*  video container section */
#video_container {
    margin-top: 24px;
    width: 100%;
    min-height: 67dvh;
    background: var(--black-bg);
    display: flex;
    justify-content: center;
}

#video_container video {
    width: 50%;
    height: auto;
}

@media screen and (max-width: 720px) {
    #video_container {
        margin-top: 12px;
        width: 100vw;
    }
}


.parallax-title {
    z-index: 5;
    font-family: var(--font-gish);
    height: auto;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    color: white;
    text-align: center;
    text-transform: uppercase;
}

.parallax-subtitle2 {
    font-family: var(--font-gish);
    color: white;
    text-align: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(15px, 1.1vw, 17px);
    margin-bottom: 0 !important;
    font-weight: 400;
    text-transform: uppercase;
}

.text-bottom {
    position: absolute;
    bottom: 0;
    z-index: 10000000;
    text-align: center;
    width: 100%;
    padding-bottom: 40px;
}

.text-bottom i {
    cursor: pointer;
    font-size: 35px;
    color: white;
    font-weight: 300;
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.full-background img{
    width: 50%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 50px;
}

@keyframes floating {
    from {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, 15px);
    }

    to {
        transform: translate(0, 0);
    }
}

@media (max-width:1024px) {

    .full-background .title-page,
    .header .title-page {
        width: 90%;
        letter-spacing: 2px;
    }
}

@media (max-width: 992px) {
    .social-list {
        display: none;
    }
    
    .full-background img{
    width: 70%;
    margin-bottom: 30px;
}
}

@media (orientation: landscape) and (max-width: 992px) {

    .full-background,
    .full-background .row {
        height: 100vh !important;
    }
}

/******* MON HISTOIRE ********/
.histoire .text-bloc {
    padding: 0 20px 0 150px;
    margin-top: -30px;
}

.histoire .text-bloc .bloc-circle {
    margin: 15px 0 15px 0;
}

/******* LE STUDIO ********/
.studio {
    background-color: white;
}

.studio .row,
.studio.container-fluid,
.studio .img-col {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.studio .img-col {
    height: stretch;
}

.image-cut {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-cut img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}

.studio h2 {
    font-size: clamp(7rem, 20vw, 10rem) !important;
}

.studio .text-col {
    padding: 50px;
}

.custom-list {
    list-style: none;
    margin-top: 20px;
    padding-left: 60px;
}

.custom-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
    font-size: clamp(15px, 2vw, 20px) !important;
}

.custom-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-image: var(--icon-url);
    background-size: contain;
    background-repeat: no-repeat;
}

.surligne {
    background-color: var(--main-yellow);
    padding: 10px;
    width: fit-content;
    margin-left: 100px;
    margin-bottom: 20px !important;
    margin-top: 20px !important;
}

.texte_studio, .studio ul{
    width: 90%;
    margin-right: 20%;
}

/* Petit écran : image sous le texte */
@media (max-width: 991px) {
    .img-col {
        height: auto;
    }
    
    .surligne{
        margin-left: 0;
        margin-top: 0 !important;
        margin-bottom: 40px !important;
    }
    
    .texte_studio, .studio ul{
    width: 100%;
    margin-right: 0%;
}

    .image-cut img.img-fluid {
        height: auto;
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        /* supprime le biais si besoin */
    }
}

/******* SERVICES ********/
.services {
    position: relative;
    /* nécessaire pour que ::before se place derrière */
    z-index: 1;
    /* contenu au-dessus */
}

.services h2,
.realisations h2,
.avis h2 {
    text-align: center;
    font-size: clamp(7rem, 20vw, 10rem);
}

.services h2{
    margin-bottom: 30px;
}

.services .service-bloc {
    margin-top: 20px;
    margin-bottom: 60px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.services .text-service {
    padding: 100px 0 100px 100px;
}

.services .service-bloc .right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 20px;
}

.services .service-bloc .left {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
}

.services .service-bloc h3 {
    background-color: var(--main-yellow);
    padding: 10px;
    text-transform: uppercase;
    margin-bottom: 50px;
    font-weight: 400;
    width: fit-content;
    display: flex;
    align-items: center;
    /* verticalement centré */
    gap: 10px;
    /* espace entre l'image et le texte */
}

.services .service-bloc h3 .icon-h3 {
    width: 30px;
    /* taille de l’icône, adapte selon besoin */
    height: auto;
    /* ratio conservé */
    object-fit: contain;
}

.services .service-bloc h4 {
    font-family: var(--font-gish);
    font-weight: 600;
    margin-bottom: 30px;
    line-height: inherit !important;
    overflow: visible !important;
}

.services .service-bloc p {
    padding-bottom: 30px;
}

.services .service-bloc ul {
    padding-left: 0 !important;
}

.services .service-bloc ul li {
    font-size: clamp(15px, 2vw, 20px) !important;
    font-weight: 700;
    margin-bottom: 5px;
}

    .mobile-on{
        display: none !important;
    }

/******* REALISATIONS ********/
.realisations{
    background-color: white;
}

.realisations h2 {
    padding-bottom: 50px;
    padding-top: 50px;
    text-align: center;
}

/******* AVIS ********/
.avis {
    background-color: white;
}

.avis .ti-widget {
    overflow-x: hidden;
    position: relative;
    z-index: 1;
    /* ou auto */
}

.avis iframe {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    opacity: 1 !important;
}

/* Conteneur Trustindex */
.avis .row {
    min-height: 400px;
    /* Ajuste selon ta hauteur souhaitée */
    display: flex;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease;
}

/* Classe pour fade-in */
.avis .row.visible {
    opacity: 1;
}

/* Bloc review */
.ti-review-item {
    padding: 20px;
    color: var(--main-black);
    background-color: var(--main-white);
    /*border: 2px solid var(--main-blue);*/
    border-radius: 10px;
    margin: 0 15px;
    transition: all 0.35s ease !important;
    will-change: transform, background-color, box-shadow, border;
}

/* Hover effet clean */
.ti-review-item:hover {
    /*border: 2px solid var(--main-yellow);*/
    background-color: var(--main-yellow);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Texte */
.ti-widget.ti-goog .ti-review-content .ti-inner {
    font-family: var(--font-sofia) !important;
}

/******* CLIENTS ********/
.clients .titre_bar2 {
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
    overflow: visible;
    /* permet à la barre de dépasser */
}

.clients .titre_bar2 h2 {
    position: relative;
    font-family: var(--font-sign);
    color: var(--main-blue);
    font-size: clamp(5rem, 10vw, 10rem) !important;
    display: inline-block;
    padding-left: 100px;
    z-index: 2;
    opacity: 0;
    /* pour fade-in */
}

.clients .titre_bar2 .bar {
    position: absolute;
    left: -30vw;
    /* commence moitié écran à gauche */
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: 0;
    /* commence invisible */
    background-color: var(--main-yellow);
    z-index: 1;
}

.clients .row {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.clients .row div {
    padding-left: 25px;
    padding-right: 25px;
    margin-bottom: 25px;
}

.fade-block img:hover {
    transform: scale(1.05);
    transition: all 0.2s ease;
}

/******* CONTACT ********/
.contact {
    background-color: white;
}

.image-cut {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.contact .img-col {
    height: stretch;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.contact .image-cut img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.contact h2 {
    font-size: clamp(7rem, 20vw, 10rem) !important;
}

.contact-form h2 {
    font-family: var(--font-sign);
    font-size: clamp(2rem, 7vw, 5rem) !important;
}

.contact ul {
    margin-bottom: 0 !important;
    padding-top: 30px;
    padding-left: 0;
}

.contact ul li {
    margin-bottom: 30px;
}

.contact ul li::before {
    transform: none !important;
    top: 0 !important;
    width: 20px;
    margin-top: 10px;
    height: 20px;
}

.contact .text-col {
    padding-left: 100px;
    padding-right: 50px;
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Inputs de base */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 20px;
    border: 6px solid var(--main-white);
    background: transparent;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Placeholder comme label */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #999;
    font-weight: 400;
}

/* Animation au focus */
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 input:hover,
.wpcf7 textarea:hover,
.wpcf7 .file-label:hover {
    border-color: var(--main-yellow);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    outline: none;
    transform: scale(1.02);
}

/* Conteneur du champ fichier */
.wpcf7 .file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    /* centre verticalement et horizontalement */
    position: relative;
    width: 100%;
    border: 6px solid var(--main-white);
    padding: 12px 15px;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Texte / bouton à l'intérieur */
.wpcf7 .file-label span {
    pointer-events: none;
    /* laisse passer le clic vers l'input */
    text-align: center;
    width: 100%;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

/* Cache le vrai input */
.wpcf7 input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    cursor: pointer;
    /* permet de cliquer n'importe où sur le label */
}

/* Base du bouton submit */
.wpcf7-submit {
    position: relative;
    display: inline-block;
    font-size: 22px;
    text-transform: uppercase;
    font-family: var(--font-gish);
    letter-spacing: 1px;
    padding: 12px 30px;
    color: var(--main-black);
    /* couleur du texte */
    background-color: transparent;
    /* transparent comme menu */
    border: none;
    cursor: pointer;
    overflow: hidden;
    /* pour contenir la bande */
    z-index: 1;
    /* texte au-dessus */
    transition: color 0.3s ease;
    /* si tu veux changer couleur texte */
}

/* Bande animée derrière le texte */
.wpcf7-submit::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    /* barre en bas du bouton */
    width: 100%;
    height: 50%;
    /* 50% de la hauteur du bouton */
    background-color: var(--main-yellow);
    /* couleur de la bande */
    transform: scaleX(0);
    /* commence cachée */
    transform-origin: left;
    transition: transform 0.3s ease;
    /* animation comme menu */
    z-index: -1;
    /* derrière le texte */
}

/* Au hover ou focus : la bande s’étend */
.wpcf7-submit:hover::after,
.wpcf7-submit:focus::after {
    transform: scaleX(1);
    /* pleine largeur */
}

.contact .info-reseaux{
    margin-bottom: 50px;
    margin-top: 50px;
}

.info-reseaux ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-reseaux li {
    display: flex;
    align-items: center;
    width: fit-content;
    font-family: var(--font-gish);
    gap: 10px;
    margin-bottom: 10px !important;
    font-size: clamp(15px, 2vw, 20px) !important;
}

.info-reseaux span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;  /* taille fixe = tout aligné */
    height: 35px;
    border-radius: 50%;
    background: transparent; /* adapte à ton design */
    color: var(--main-blue);
    font-size: clamp(15px, 2vw, 20px) !important;
}

.info-reseaux a {
    color: var(--main-black);
    text-decoration: none;
    border: none;
    font-family: var(--font-gish);
    font-size: inherit;
    background-color: transparent;
    transition: .4s all
}

.info-reseaux li:hover a {
    color: var(--main-blue);
    transition: all 0.3s ease;
}

.info-reseaux li:hover span i{
    color: var(--main-yellow);
filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
    transform: scale(1.3);
        transition: all 0.3s ease;
}

/******* FOOTER ********/
footer .mentions {
    padding: 20px 0;
    background-color: var(--main-white);
    text-align: center;
    font-family: var(--font-gish);
    color: var(--main-black);
}

footer .small {
    font-size: clamp(10px, 1.1vw, 13px);
}

footer .mentions p {
    margin: 0 0 5px;
    width: 90%;
    margin-left: auto;
    margin-right: auto
}

footer .mentions a,
footer .mentions button {
    color: var(--main-black);
    text-decoration: none;
    border: none;
    font-family: var(--font-gish);
    background-color: transparent;
    transition: .4s all
}

footer .mentions a:hover {
    color: var(--main-blue);
    transition: color 0.3s;
}

/******* MENTIONS + PRIVACY UNIFIÉ ********/
/* HERO (commun) */
.page-id-135 .full-background,
.page-id-3 .full-background{
    height: 50vh !important;
    background-image: url(https://oramaa.fr/wp-content/uploads/2026/03/ORAMAA_0007-scaled.jpg) !important;
    background-size: cover;
    background-position: center;
}

/* RESET HEADER FOOTER */
.page-id-135 header,
.page-id-135 footer,
.page-id-3 header,
.page-id-3 footer{
    display: none;
}

/* CONTAINER (on aligne la 135 sur la 3) */
.page-id-135 .mentions,
.page-id-3 .privacy {
    max-width: 80%;
    margin: 0 auto;
    padding: 80px 20px;
}

/* H1 IDENTIQUE */
.page-id-135 .mentions h1,
.page-id-3 .privacy h1 {
    font-family: var(--font-sign);
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--main-blue);
    margin-bottom: 20px;
}

/* H2 IDENTIQUE */
.page-id-135 .mentions h2,
.page-id-3 .privacy h2 {
    font-family: var(--font-gish);
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    margin-top: 50px;
    margin-bottom: 15px;
    display: inline-block;
    background-color: var(--main-yellow);
    padding: 5px 12px;
}

/* BAR (upgrade de la 135) */
.page-id-135 .mentions .bar,
.page-id-3 .privacy .bar {
    display: block;
    width: 100%;
    height: 20px;
    background: var(--main-yellow);
    margin-bottom: 50px;
}

/* SECTIONS */
.page-id-135 .mentions .section,
.page-id-3 .privacy .section {
    margin-bottom: 30px;
}

/* TEXTE */
.page-id-135 .mentions p,
.page-id-3 .privacy p {
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: clamp(15px, 1.1vw, 18px);
}

/* LIENS */
.page-id-135 .mentions a,
.page-id-3 .privacy a {
    color: var(--main-blue);
    text-decoration: none;
    position: relative;
}

/* effet hover clean */
.page-id-135 .mentions a::after,
.page-id-3 .privacy a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: var(--main-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.page-id-135 .mentions a:hover::after,
.page-id-3 .privacy a:hover::after {
    transform: scaleX(1);
}

/* CTA (tu l’avais déjà) */
.page-id-3 .wpcf7-submit,
.page-id-135 .wpcf7-submit{
    color: #000000 !important;
    margin-top: 50px;
}


/* HISTOIRE */
@media (max-width: 992px) {
    .titre_bar {
        display: inline-block;
        /* container s'adapte au texte */
        position: relative;
        justify-content: center !important;
        text-align: right;
        /* texte toujours centré via le container parent si besoin */
        margin: 0 auto;
        /* centre le container */
    }

    .titre_bar h2 {
        display: inline-block;
        position: relative;
        z-index: 2;
    }

    .titre_bar .bar {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: calc(100% + 50px);
        /* largeur = texte + 50px */
        height: 50%;
        background-color: var(--main-yellow);
        z-index: 1;
    }
}

@media (max-width: 1200px) {
    .histoire .text-bloc {
        padding: 0 20px 0 80px;
    }
}

@media (max-width: 992px) {
    .histoire .row {
        flex-direction: column-reverse;
        text-align: center;
    }

    .histoire .text-bloc {
        padding: 0 20px;
        margin-top: 30px;
    }

    .histoire .image-wrapper {
        width: 70%;
    }

    .histoire .bloc-circle h2 {
        font-size: clamp(3rem, 8vw, 6rem);
    }
}

/* STUDIO */
@media (max-width: 1200px) {
    .studio .text-col {
        padding: 30px;
        margin-bottom: 50px;
        margin-top: 50px;
        margin-left: auto;
        margin-right: auto;
    }

    .studio h2 {
        font-size: clamp(5rem, 15vw, 8rem) !important;
    }
    
        .services .text-service {
    padding: 20px 0 20px 20px;
}
}

@media (max-width: 992px) {  
    .studio .img-col, .contact .img-col{
        width: 60vw;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-top: 80px;
    }

    .image-cut img {
        clip-path: none;
        object-fit: contain;
        height: auto;
    }

    .image-cut img.img-fluid {
        clip-path: none;
    }
    
    .studio ul{
        padding: 20px 20px;
    }
}

/* SERVICES */
@media (max-width: 992px) {
    .services .service-bloc {
        flex-direction: column !important;
        text-align: center;
    }

    .services .text-service,
    .services .img-service {
        width: 100%;
        padding: 0 20px;
    }

    .services .img-service{
        margin-top: 50px;  
        margin-bottom: 30px;
    }
    
    .services h3 img.icon-h3 {
        display: block;
        margin: 0 auto 10px auto;
    }

    .services .service-bloc .right,
    .services .service-bloc .left {
        text-align: center;
        align-items: center;
    }
    
    .services h3 {
    font-size: clamp(1.5rem, 2vw, 2rem);
}
    
        
    .mobile-none{
        display: none !important;
    }
    
    .mobile-on{
        display: flex !important;
    }
}

/* REALISATIONS */
@media (max-width: 992px) {
    .realisations .center-title h2, .avis .center-title h2, .services .center-title h2 {
        font-size: clamp(3rem, 8vw, 5rem);
    }

    .mix-gallery {
        padding: 0 15px;
    }
}

/* AVIS */
@media (max-width: 992px) {    
    .avis .ti-review-item{
        margin-bottom: 30px;
    }
    
    .avis .center-title{
        margin-bottom: 50px;
    }
}

/* CLIENTS */
@media (max-width: 992px) {
    .clients .row {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .clients .titre_bar2 h2 {
    font-size: clamp(3rem, 10vw, 8rem) !important;
        padding-left: 70px;
    }
    
     .clients .titre_bar2 .bar {
        top: 50%;
        transform: translateY(-50%);
        width: calc(100% + 100px) !important;
        z-index: 1;
    }
}

/* CONTACT */
@media (max-width: 992px) {
    .info-reseaux li {justify-content: center;
     width: 100%;}
    
    .contact.container-fluid{
            padding-right: 0 !important;
    padding-left: 0 !important;
    }
    
    .contact .row {
        flex-direction: column;
        text-align: center;
    }

    .contact .text-col{
        margin-top: 80px;
    }
    
    .contact .text-col{
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .center-title h2 {
        font-size: clamp(5rem, 10vw, 7rem) !important;
    }

    .contact ul.custom-list {
        padding-left: 0;
        text-align: left;
        
    }
}
