 /*  
Theme Name: André Citroën V1
Theme URI: http://matthieulaporte.com/
Description: MATT
Version: Version : V.1.2026
Author: Matthieu Laporte
Author URI: http://matthieulaporte.com/
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

/* typo couleurs general */
html {
    width: 100%;
    padding: 0;
    margin: 0;
    display: block;
    background-color: #ffffff; 
    scroll-behavior: smooth;
}
body {

    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    padding: 0;
    margin: 0;
    border: 0;
    background-color: #ffffff; 
}
/* Forcer le corps à ne pas scroller */
body.no-scroll {
    overflow: hidden; /* Supprime le scroll */
    height: 100%; /* Empêche le contenu de dépasser */
}

strong, b {
    font-weight: 500;
}
span {
    font-weight: 800;
}
h1 {
float: left;
font-size: 20px;
font-weight: 800;
height: auto;
letter-spacing: 1.5px;
margin-bottom: 40px;
padding: 0px 10px 0px 10px;
width: 100%;
text-transform: uppercase;
line-height: 30px;
}
h1 a {
    border-bottom: 0px solid #000;
    padding-bottom: 2px;
}
h2 {
font-family: 'Cinzel', serif;
font-size: 26px;
font-weight: 800;
height: auto;
letter-spacing: 0.5px;
padding: 0;
line-height: 35px;
text-transform: initial;
margin-top: 0;
}
h3 {
    font-size: 22px;
    font-weight: 400;
    height: auto;
    letter-spacing: 0.8px;
    line-height: 35px;
    color: #111;
    margin-bottom: 40px;
}
h3 strong {
    font-weight: 800;
}
h3 a {
    color: #121212;
    text-decoration: none;
    display: inline-block;
    border-bottom: 1px solid #eee;
}
h3 a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #000;
    transition: width .3s;	
        
}
h3 a:hover::after  {
    width: 100%;
    transition: width .3s;
        
}
h4 {
    color: #121212;
    font-size: 32px;
    font-variant: small-caps;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
    padding: 0;
}
p {
font-size: 16px;
line-height: 28px;
}
p a {
    text-decoration: none; /* Désactive le soulignage par défaut */
    color: #111;
    border: 0;
    /* On prépare les propriétés pour la transition */
    text-decoration-color: transparent; 
    text-underline-offset: 5px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

p a:hover {
    text-decoration: none; /* Active le soulignage au survol */
    text-decoration-color: #c0c0c0;
    text-underline-offset: 0px;
    /* Pas besoin de répéter la transition ici, elle est héritée de l'état parent */
}
li {
    font-size: 16px;
    line-height: 27px;
    font-weight: 400;
    letter-spacing: 0.4px;
    margin-top: 0;
}

blockquote {
margin: 0;
padding: 20px 10% 20px 10%;
font-style: italic;
width: 100%;
text-transform: uppercase;
}
hr {
    width: 100%;
    margin-bottom: 20px;
    border-top: 0px solid #fff;
    margin-top: 20px;
    height: 0px;
}
a {
    border: medium none;
    text-decoration: none;
    color: #000000;
    cursor:pointer;
}
img {
    -webkit-touch-callout: none !important; /* Bloque le menu iOS */
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    pointer-events: auto; /* Garder auto pour que le JS capture le clic */
    -webkit-user-drag: none !important;
}

/* Optionnel : Empêcher le clic droit natif via CSS sur certains navigateurs */
.no-select {
    -webkit-tap-highlight-color: transparent;
}
a img {
	border:0px;
}

*, *:before, *:after {
    box-sizing: border-box;
}