body {
    margin: 0;
    font-family: 'Bahnschrift', sans-serif;
    background: #fff;
    color: rgb(64, 64, 64);
}

.container {
    display: flex;
    height: 100vh;
}

.sidebar {
    width: 250px;
    padding-left: 1.5cm;
    padding-top: 20px;
    background: #fff;
    box-sizing: border-box;
}

.sidebar h1 {
    margin-bottom: 2em;
}

.sidebar h1 .titre-lien {
    font-family: 'Times New Roman', serif;
    font-size: 26px;
    color: #000;
    font-weight: normal;
    text-decoration: none;
    line-height: 0.95;
    display: inline-block;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    margin-bottom: 0.5em;
}

.sidebar a {
    font-family: 'Bahnschrift', sans-serif;
    font-size: 9pt;
    color: rgb(120, 120, 120);
    text-decoration: none;
}

.sidebar a:hover {
    text-decoration: underline;
}

.content {
    flex-grow: 1;
    padding: 30px;
    background: #fff;
    box-sizing: border-box;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== GALLERY ===== */

.gallery h2 {
    font-family: 'Bahnschrift', sans-serif;
    font-size: 9pt;
    color: rgb(120, 120, 120);
    font-weight: normal;
    margin-bottom: 10px;
}

.layout,
.description-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.image-container-b {
    min-width: 340px;
    max-width: 340px;
    flex: 0 0 auto;
}

.image-container-a {
    min-width: 378px;
    max-width: 378px;
    flex: 0 0 auto;
}

.image-container-b img,
.image-container-a img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

/* Colonnes texte */
.right-column,
.desc-right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Citation */
.citation {
    font-family: 'Bahnschrift', sans-serif;
    font-size: 14pt;
    color: rgb(89, 89, 89);
}

/* Ambiance descend en bas */
.ambiance-wrapper {
    margin-top: auto;
}

.ambiance {
    font-family: 'Times New Roman', serif;
    font-size: 9pt;
    font-style: italic;
    color: #000;
    max-width: 400px;
}

/* Description */
.description-area {
    margin-bottom: 20px;
}

.description {
    font-family: 'Bahnschrift', sans-serif;
    font-size: 9pt;
    color: rgb(120, 120, 120);
    max-width: 400px;
}

/* Liens en bas */
.links {
    margin-top: auto;
    font-family: 'Bahnschrift', sans-serif;
    font-size: 9pt;
}

.links a {
    color: blue;
    text-decoration: underline;
}

/* ===== MODAL (Popup) ===== */

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 5vh;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.modal .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

