body {
    margin: 0;
    padding: 40px 20px;
    font-family: "Old Standard TT", serif;
    background: #ffffff;
    color: #1f1f1f;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

        .header { 
            margin-top: 60px; 
            margin-bottom: 60px; 
            text-align: center;
        }

h1 {
    font-size: 48px;
    margin: 0;
    font-weight: normal;
}

#total-stats {
    margin-top: 20px;
    font-size: 18px;
    font-style: italic;
    color: #595959;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    color: #595959;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back-link:hover {
    color: #000;
}

/* Style des tiroirs (Accordéons) */
.city-drawer {
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 10px;
}

.city-header {
    width: 100%;
    padding: 25px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.2s;
}

.city-header:hover {
    background: #f9f9f9;
}

.city-name {
    font-size: 28px;
    color: #1f1f1f;
}

.city-count {
    font-size: 16px;
    color: #888;
    font-style: italic;
}

.city-content {
    max-height: 0;
    overflow: hidden;
    transition: 0.2s;
    background: #fff;
}

.city-drawer.active .city-content {
    max-height: max-content; 
    padding-bottom: 30px;
}

.place-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    padding: 20px 10px;
    align-items: center;
    border-bottom: 1px solid #f5f5f5;
}

.place-item:last-child {
    border-bottom: none;
}

.place-image {
    width: 200px;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    background: #eee;
    cursor: pointer;
    transition: transform 0.3s;
}

.place-image:hover {
    transform: scale(1.03);
}

.place-info h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: normal;
}

.place-archi {
    font-size: 14px;
    color: #777;
    font-family: monospace;
}

.place-coords {
    margin-top: 5px;
    font-size: 14px;
    color: #777;
    font-family: monospace;
}

/* Style ajouté pour le crédit auteur dans la liste */
.place-author {
    font-size: 11px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
}

.footer {
    margin-top: 40px;
    padding: 10px;
    text-align: center;
    font-size: 12px;
    color: #aaa;
    letter-spacing: 1px;
    padding: 30px;
}

/* Styles du bouton de remontée */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #1a1a1a;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            z-index: 1000;
        }
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        .scroll-top:hover {
            transform: translateY(-5px);
            background: #333;
        }

/* Responsive */
@media (max-width: 600px) {
    .place-item {
        grid-template-columns: 1fr;
    }
    .place-image {
        width: 100%;
        height: 200px;
    }
    h1 { 
        font-size: 32px; 
    }
    .back-link {
    display: none;
    }
}