/* --- 1. css --- */

body {
    background-color: #fff;
    color: #333;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.5px;
}

h1,
h2 {
    font-weight: 300;
    text-transform: uppercase;
}



.scroll-down {
    display: inline-block;
    font-size: 2rem;
    color: #999;
    text-decoration: none;
}

.current {
    color: #444;
}

.past {
    color: #bbb;
}

.lang-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #f7f7f7;
    border: 1px solid #ccc;
    border-radius: 50px;
    font-size: 0.9rem;
    padding: 5px 12px;
    cursor: pointer;
    opacity: 0.8;
}

.lang-btn:hover {
    opacity: 1;
}


/* --- 2. LE CSS SPÉCIFIQUE À CONTENTTOOLS  --- */
/* Centré par défaut pour images et vidéos */
[data-editable] iframe,
[data-editable] img,
[data-editable] video,
.center-block {
    /* J'ajoute une classe générique au cas où */
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    clear: both;
}

#news p {
    margin-bottom: 10px;
    /* Espace entre les lignes */
    line-height: 1.6;
}

/* Vos classes de couleur (déjà existantes normalement, mais vérifiez) */
.current {
    color: #444;
    font-weight: bold;
    /* Optionnel : met en gras l'actuelle */
}

.past {
    color: #bbb;
}

.align-left {
    float: left;
    margin-right: 15px;
    margin-left: 0;
    /* Annule le margin-auto */
    margin-bottom: 10px;
}

.align-right {
    float: right;
    margin-left: 15px;
    margin-right: 0;
    /* Annule le margin-auto */
    margin-bottom: 10px;
}

/* Alignement Texte */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}


img.hero-img {
    /* 1. LARGEUR : On utilise !important pour interdire à ContentTools de dépasser 400px */
    max-width: 565px !important;
    width: 100%;

    /* 2. HAUTEUR : On n'utilise PAS !important. 
       Cela permet à l'image de calculer sa hauteur par rapport à la largeur de 400px 
       sans entrer en conflit avec l'éditeur. */
    height: auto;

    /* 3. CENTRAGE */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* --- 3. MENU HAMBURGER --- */
.menu-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9999;
}

.menu-icon {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: relative;
    z-index: 10000;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 1px;
    /* Très fin */
    background-color: #333;
    position: absolute;
    transition: all 0.3s ease;
}

.menu-icon span:nth-child(1) {
    top: 0;
}

.menu-icon span:nth-child(2) {
    top: 9px;
}

.menu-icon span:nth-child(3) {
    top: 18px;
}

/* Animation croix */
.menu-container.active .menu-icon span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.menu-container.active .menu-icon span:nth-child(2) {
    opacity: 0;
}

.menu-container.active .menu-icon span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

.menu-items {
    position: absolute;
    top: 40px;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 4px;
    width: 200px;
    text-align: right;

    /* Caché par défaut */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.menu-container.active .menu-items {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-items a {
    display: block;
    padding: 10px 0;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.menu-items a:hover {
    color: #999;
}

/* --- 4. IMAGES CÔTE À CÔTE (Exhibition) --- */
.joined-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    /* Collées */
    flex-wrap: wrap;
    /* Permet le passage à la ligne sur très petits écrans si besoin, ou nowrap pour forcer */
}

.joined-images img {
    margin: 0 !important;
    /* Annule le centrage auto de hero-img */
    max-width: 50% !important;
    /* Pour qu'elles tiennent côte à côte sur mobile */
    height: auto;
    object-fit: cover;
    /* Optionnel, pour garder le ratio */
}