/* ======================
   Base / Reset
====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Courier New', monospace;
    background-color: #c5c5c5;
    color: #1a1a1a;
}

/* ======================
   Header
====================== */
.site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 1.2rem 2rem;
    background-color: #6f816a;
}

.logo {
    font-weight: 600;
    letter-spacing: 1px;
}

.home-nav a {
    text-decoration: none;
    color: #111;
    padding: 0.4rem 0.9rem;
    border: 1px solid #111;
    border-radius: 0.5rem;
    font-size: 0.9rem;
}

.main-nav {
    display: grid;
    grid-auto-flow: column;
    gap: 1rem;
}

.main-nav a {
    text-decoration: none;
    color: #111;
    padding: 0.4rem 0.9rem;
    border: 1px solid #111;
    border-radius: 0.5rem;
    font-size: 0.9rem;
}

.main-nav a {
    text-decoration: none;
    color: #111;
    padding: 0.4rem 0.9rem;
    border: 1px solid #111;
    border-radius: 0.5rem;
    font-size: 0.9rem;
}

/* ======================
   Main Layout
====================== */
.archive-page {
    display: grid;
    grid-template-rows: auto 1fr;
    row-gap: 3rem;
    padding: 4rem 3rem 5rem;
}

/* ======================
   Intro Section
====================== */
.archive-intro {
    display: grid;
    justify-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    row-gap: 1.5rem;
}

.archive-intro h1 {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.archive-intro h1 span {
    display: block;
}

.archive-intro p {
    max-width: 720px;
    font-size: 0.9rem;
    line-height: 1.6;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* ======================
   Archive Grid
====================== */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ======================
   Archive Item
====================== */
.archive-item {
    aspect-ratio: 1 / 1;
    border-radius: 1.2rem;
    overflow: hidden;
    background: #000;
}

.archive-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ======================
   Responsive (optional)
====================== */
@media (max-width: 1024px) {
    .archive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .archive-page {
        padding: 3rem 1.5rem;
    }

    .archive-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }}
    .archive-item img {
    transition: transform 0.4s ease; /* Smoothness of the zoom */
}

.archive-item:hover img {
    transform: scale(1.1); /* Zooms in by 10% */
    cursor: pointer;
}