/* RESET */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fff;
    color: #111;
    text-align: center;
}

/* HEADER */
.header {
    padding: 40px 20px 30px;
}

.logo {
    width: 160px;
    height: auto;
}

.subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    margin-top: 10px;
    text-transform: uppercase;
}

.tagline {
    font-size: 15px;
    margin-top: 10px;
    line-height: 1.5;
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 15px;
}

/* POST (image + caption) */
.post {
    margin: 40px 0;
}

.post img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* CAPTION */
.caption {
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
}

/* TEXTE */
.text {
    font-size: 15px;
    line-height: 1.6;
    margin: 40px 0;
}

/* INFOS */
.infos {
    font-size: 14px;
    line-height: 1.6;
    margin: 50px 0;
}

.infos div {
    margin-bottom: 20px;
}

/* FOOTER */
.footer {
    font-size: 12px;
    color: #777;
    margin: 40px 0 20px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery img {
    width: calc(50% - 5px); /* 2 images par ligne */
    height: auto;
    object-fit: cover;
}
