.hero {
    display: flex;
    justify-content: space-between; 
    align-items: flex-start;
    padding: 40px 80px;
    gap: 40px;
    max-width: 1400px;
    min-height: 600px;
    margin: 0 auto;
}
.hero-right {
    flex: 0 0 550px;
    display: flex;
    flex-direction: column;
    border: none;
    padding: 0;
    outline: none;
    align-items: flex-end;
    align-self: flex-end;
}

.hero-left {
    flex: 1; 
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-right img {
    width: 220px;
    height: auto;
    mix-blend-mode: darken;
}

.boussole-bloc {
    display: flex;
    align-items: center;
    gap: 14px;
}

.boussole-bloc img {
    width: 100px;
    height: auto;
}

.cap-texte {
    font-family: monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cap-texte strong {
    display: block;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    white-space: nowrap;
}

.cta-buttons {
  padding-left: 80px;
}
/*----------------- PAGE CARNET - PAVILLONS ------------*/

.pavillons-row {
    display: flex;
    gap: 8px;
    margin: 16px 0;
}

.pavillons-row img {
    width: 56px;
    height: 56px;
    object-fit: cover;
}
/*----------------- PAGE CARNET - POSITION DU CARNET ------------*/

.position-carnet {
    border: 1px solid #1A1A1A;
    background-color: #F7F4EF;
    padding: 30px;
    width: 100%;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.journal-barre-fond {
    width: 100%;
    height: 6px;
    background-color: #d1d1cf;
    border-radius: 3px;
    margin: 8px 0;
}

.journal-barre-remplie {
    height: 100%;
    width: 1.4%; 
    background-color: #E8C547;
}

.journal-dates {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-family: monospace;
    font-size: 10px;
}

.position-carnet-stats {
    display: flex;
    gap: 25px;
    font-size: 14px;
    border-top: 1px solid #1A1A1A;
    padding-top: 15px;
}

/*----------------- PAGE CARNET - FILTRES ------------*/

.filtres-bar {
    display: flex;
    align-items: center;
    gap: 60px; 
    padding: 0 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.filtre-groupe {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filtre-tri-groupe {
    margin-left: auto;
}

.filtre-btn {
    padding: 6px 16px;
    border: 1px solid #1A1A1A;
    border-radius: 20px;
    background: transparent;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
}

.filtre-btn-actif {
    background: #E8C547;
    border-color: #E8C547;
}

.filtre-tag {
    padding: 6px 14px;
    border: 1px solid #1A1A1A;
    border-radius: 20px;
    background: #F7F4EF;
    font-size: 12px;
    font-family: 'Inter', sans-serif; 
}

.filtre-tri-lien {
    text-decoration: underline;
    color: #1A1A1A;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
}
/*-----------------Mise en page globale de la section Carnet ------------*/

.journal-container {
    display: flex;
    gap: 80px;
    padding: 0px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- Style des entrées (gauche) --- */
.journal-liste {
    display: flex;
    flex-direction: column;
    padding: 0 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.entree {
    display: flex;
    gap: 20px;
    padding: 40px 0;
    border-bottom: 1px solid #d1d1cf;
    align-items: flex-start;
}

.entree-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.entree-contenu {
    flex: 1;
}

.meta-data {
    font-family: monospace;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
}

.entree-titre {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 8px 0;
}

.entree-desc {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.entree-tags .tag {
    font-family: monospace;
    font-size: 11px;
    padding: 4px 8px;
    border: 1px solid #ddd;
    margin-right: 8px;
}

/* --- Style de la colonne latérale (droite) --- */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.profile-card {
    border: 1px solid #1a1a1a;
    padding: 30px;
    background: #fff;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #1a1a1a;
}

.profile-bio {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.link-apropos {
    font-weight: 700;
    text-decoration: underline;
    color: #1a1a1a;
}

