/* ===== RESET ET BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #2A2A2A;
    --primary-light: #F5F5F5;
    --accent-blue: #0056A3;
    --accent-yellow: #F4D52B;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --border-color: #E0E0E0;
    --font-main: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-main);
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--primary-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* ===== PAGE D'ACCUEIL ===== */
.home-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.home-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 40px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.home-header .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
}

.home-header .logo img {
    height: 40px;
    vertical-align: middle;
    margin-right: 10px;
}

.home-header .logo h1 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.1em;
}

.header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.home-nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.home-nav a {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-light);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    padding: 10px 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.home-nav a:hover {
    border-bottom-color: var(--text-light);
}

.home-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.background-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
    z-index: 1;
}

/* Voile dégradé : assure la lisibilité du texte blanc (header + footer) même
   sur des visuels clairs (captures de modélisation sur fond blanc), sans
   assombrir le centre de l'image. */
.background-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0) 25%,
        rgba(0, 0, 0, 0) 70%,
        rgba(0, 0, 0, 0.55) 100%
    );
    pointer-events: none;
}

.home-footer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--text-light);
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 300;
}

.home-footer a {
    color: var(--text-light);
    opacity: 0.8;
}

.home-footer a:hover {
    opacity: 1;
}

/* Citation d'accroche sur la page d'accueil, en incrustation sur le visuel. */
.home-tagline {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    z-index: 5;
    max-width: 380px;
    margin: 0;
    color: var(--text-light);
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.4;
    text-align: right;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .home-tagline {
        left: 20px;
        right: 20px;
        max-width: none;
        font-size: 1.3rem;
    }
}

/* ===== PAGES STANDARD ===== */
.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    background-color: transparent;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Header sur la page d'accueil */
body.home-page .header {
    padding: 20px 40px;
    position: absolute;
    left: 0;
    right: 0;
}

.header .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-dark);
}

.header .logo h1 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-dark);
    letter-spacing: 0.05em;
}

/* Header sur page d'accueil - texte blanc */
body.home-page .header .logo h1 {
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

body.home-page .header .nav-main a {
    color: var(--text-light);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

body.home-page .header .lang-current {
    color: var(--text-light);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

/* Menu à droite */
.nav-main {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-main a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-dark);
    padding: 5px 0;
    position: relative;
}

.nav-main a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-main a:hover::after {
    width: 100%;
}

.nav-main a.active::after {
    width: 100%;
}

/* Menu déroulant de langue */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-current {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-dark);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-current:hover {
    background-color: rgba(0, 86, 163, 0.1);
}

.lang-current::after {
    content: '▼';
    font-size: 0.7rem;
    color: var(--primary-dark);
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.lang-dropdown:hover .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu a {
    display: block;
    padding: 10px 15px;
    color: var(--primary-dark);
    font-size: 0.9rem;
    font-weight: 300;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.lang-menu a:last-child {
    border-bottom: none;
}

.lang-menu a:hover {
    background-color: var(--primary-light);
    color: var(--accent-blue);
}

.main {
    flex: 1;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 30px 40px;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    height: 40px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-address {
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== BOUTONS ===== */
.download-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--accent-blue);
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.download-button:hover {
    background-color: #00407A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 86, 163, 0.3);
}

/* ===== PAGE PROJETS ===== */
.projects-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.projects-filters button {
    padding: 8px 16px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.projects-filters button:hover {
    background-color: var(--primary-light);
    border-color: var(--accent-blue);
}

.projects-filters button.active {
    background-color: var(--accent-blue);
    color: var(--text-light);
    border-color: var(--accent-blue);
}

/* Mosaïque de projets */
.projects-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.project-tile {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.project-tile:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 2px var(--accent-yellow);
}

.project-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.project-tile:hover img {
    transform: scale(1.1);
}

.project-tile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    color: var(--text-light);
}

.project-tile:hover .project-tile-overlay {
    transform: translateY(0);
}

/* Sur tactile (pas de hover fiable) : légendes visibles en permanence,
   plutôt que masquées derrière un survol qui n'existe pas. */
@media (hover: none) {
    .project-tile-overlay {
        transform: translateY(0);
    }
}

.project-tile h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.project-tile p {
    font-size: 0.85rem;
    opacity: 0.9;
}

@media (max-width: 1200px) {
    .projects-mosaic {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .projects-mosaic {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .projects-mosaic {
        grid-template-columns: 1fr;
    }
}

/* ===== PAGE BUREAU ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.8;
}

.about-text {
    max-width: 800px;
    margin: 40px 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== PAGE BUREAU : équipe / outils / partenaires ===== */
.partner-logo {
    display: block;
    max-width: 140px;
    max-height: 50px;
    width: auto;
    height: auto;
    margin-bottom: 12px;
    object-fit: contain;
}

.team-section h2,
.tools-section h2,
.partners-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--primary-dark);
}

/* Liens externes mis en avant (site partenaire, etc.) : se démarquent du
   texte courant par une forme de pastille plutôt qu'un simple lien souligné. */
.link-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background-color: rgba(0, 86, 163, 0.08);
    border-radius: 20px;
    color: var(--accent-blue);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.link-chip::after {
    content: '\2192';
}

.link-chip:hover {
    background-color: rgba(0, 86, 163, 0.15);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
    margin-top: 10px;
}

.tool-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background-color: var(--primary-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-yellow);
}

.tool-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    border-radius: 50%;
    background-color: var(--accent-blue);
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.85rem;
}

.tool-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--primary-dark);
}

.tool-card p {
    font-size: 0.85rem;
    color: var(--text-dark);
    opacity: 0.8;
}

.partners-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.partner-card {
    padding: 20px;
    background-color: var(--primary-light);
    border: 1px solid var(--border-color);
}

.partner-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.partner-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

/* ===== CHARTE GRAPHIQUE ===== */
.charte-content h2 {
    margin-top: 2rem;
}

.charte-content p {
    margin-bottom: 0.75rem;
}

.logo-links a {
    color: var(--accent-blue);
}

.logo-links a:hover {
    text-decoration: underline;
}

.color-swatch {
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 8px;
    border-radius: 3px;
    border: 1px solid var(--border-color);
}

.color-swatch--dark {
    background-color: var(--primary-dark);
}

.color-swatch--white {
    background-color: var(--text-light);
}

.color-swatch--blue {
    background-color: var(--accent-blue);
}

.color-swatch--yellow {
    background-color: var(--accent-yellow);
}

/* ===== PAGE PROJET INDIVIDUEL ===== */
.project-header {
    margin-bottom: 40px;
}

/* La page projet.html est générée dynamiquement (pas de .lang-block dupliqué
   FR/EN comme sur les autres pages) : on lui applique directement le même
   centrage / la même largeur max que .lang-block .project-header ailleurs. */
.project-page .project-header {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    padding: 0 20px;
}

.project-header-image {
    width: 100%;
    height: 50vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    margin-bottom: 20px;
}

.project-header-image.is-clickable {
    cursor: pointer;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 8px;
}

.project-meta span {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.project-content {
    max-width: 800px;
    margin: 0 auto;
}

.project-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--primary-dark);
}

.project-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.project-content ul {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

.project-content li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.project-gallery-single {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 2rem auto;
    max-width: 1000px;
    padding: 0 20px;
}

.project-gallery-single img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.project-gallery-single img:hover {
    opacity: 0.85;
}

/* ===== Lightbox : ouvre une image de la page projet en grand, à sa taille
   réelle (l'image n'est jamais agrandie au-delà de ses dimensions naturelles,
   juste réduite si besoin pour tenir dans l'écran). Ouverte/fermée en JS via
   js/project-detail.js (classe .active + attribut aria-hidden). */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background-color: rgba(20, 20, 20, 0.92);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

body.lightbox-open {
    overflow: hidden;
}

.lightbox-image {
    max-width: 92vw;
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    border-radius: 50%;
    color: var(--text-light);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    width: 44px;
    height: 44px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    border-radius: 50%;
    color: var(--text-light);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    width: 48px;
    height: 48px;
    opacity: 0.9;
    transition: opacity 0.2s ease, background-color 0.2s ease;
}

.lightbox-nav:hover,
.lightbox-close:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.65);
}

.lightbox-prev {
    left: 10px;
}

.lightbox-next {
    right: 10px;
}

@media (max-width: 600px) {
    .lightbox-close {
        top: 10px;
        right: 15px;
        width: 38px;
        height: 38px;
        font-size: 1.6rem;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }

    .lightbox-prev {
        left: 6px;
    }

    .lightbox-next {
        right: 6px;
    }
}

/* ===== PAGE CONTACT ===== */
.contact-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
    margin: 2rem 0;
}

.contact-info {
    flex: 1 1 320px;
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info a {
    color: var(--accent-blue);
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-invite {
    margin-top: 16px;
    font-style: italic;
    color: var(--text-dark);
    opacity: 0.85;
}

/* Carte OpenStreetMap : réduite et à côté de l'adresse plutôt qu'en pleine
   largeur sous le contenu. */
.map-container {
    flex: 1 1 320px;
    max-width: 420px;
    min-height: 260px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

@media (max-width: 700px) {
    .map-container {
        max-width: none;
        min-height: 220px;
    }
}

.contact-form-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.contact-form-container {
    max-width: 600px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form button[type="submit"] {
    padding: 12px 28px;
    background-color: var(--accent-blue);
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button[type="submit"]:hover {
    background-color: #00407A;
}

.contact-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-status {
    margin-top: 14px;
    font-size: 0.9rem;
}

.form-status--success {
    color: #1a7a3c;
}

.form-status--error {
    color: #b02a2a;
}

/* ===== STYLES POUR G1 PROTO LEICHT ===== */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.project-figure {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.project-figure img {
    width: 100%;
    height: auto;
    display: block;
}

.project-figure figcaption {
    padding: 15px;
    text-align: center;
    background: var(--primary-dark);
    color: var(--text-light);
    font-size: 0.9rem;
}

.project-text {
    max-width: 800px;
    margin: 30px auto;
    line-height: 1.8;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .project-gallery {
        grid-template-columns: 1fr;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav-main {
        gap: 20px;
        margin-top: 10px;
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .main {
        padding: 20px;
    }
    
    .page-title {
        font-size: 2rem;
    }
}

/* Style pour les blocs bilingues */
.lang-block {
    width: 100%;
    display: block;
}

/* Assurer que le contenu reste centré */
.lang-block .page-header,
.lang-block .about-text,
.lang-block .team-section,
.lang-block .partners-section,
.lang-block .contact-container,
.lang-block .legal-content,
.lang-block .charte-content,
.lang-block .project-header,
.lang-block .project-description,
.lang-block .projects-filters,
.lang-block .projects-mosaic,
.lang-block .tools-section {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    padding: 0 20px;
}