* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --body-color: #ffffff;
}
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: #000000;
}



/* Top header */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #ffffff; /* light grey, slightly darkened */
    border-bottom: 1px solid #ccc;
    transition: color 0.25s ease;
}

.top-header:hover{
    color: #969696;
}

.site-name a {
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
}

nav {
    display: flex;
    gap: 1.5rem;
}

nav a {
    text-decoration: none;
    color: #222;
    font-size: 1rem;
}

nav a:hover {
    text-decoration: underline;
}
/* Secondary */
.albums {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.album-card {
    text-decoration: none;
    color: inherit;
}

.album-card img {
    width: 100%;
    display: block;
}

.album-card span {
    display: block;
    margin-top: 0.5rem;
    font-size: 1rem;
}

/* Gallery Photos ---------------------------------     */

.gallery {
    column-count: 5;
    column-gap: 2rem;
    padding: 1rem;
    background-color: var(--body-color);
}

.gallery img {
    width: 100%;
    margin-bottom: 2rem;
    display: block;
}

/* Responsive */
@media (max-width: 900px) {
    .gallery {
        column-count: 4;
    }
}

@media (max-width: 500px) {
    .gallery {
        column-count: 1;
    }
}