body {
    background-color: black;
    color: antiquewhite;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.header1 {
    position: sticky;
    top: 0;
    z-index: 100;
    margin: 0;
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: xx-large;
    background-color: black;
    /* keeps header readable over scrolling content */
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 4 images in one row */
    gap: 20px;
    padding: 40px;
}
.panel {
    text-align: center;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.image-grid a,
.image-grid a:visited {
    color: inherit;
    text-decoration: none;
}


/* Invert panel: antique white field, black text (image unchanged) */
.image-grid a:hover .panel {
    background-color: antiquewhite;
    color: black;
    box-shadow: 0 0 0 10px antiquewhite;
}

.panel img {
    width: 100%;
    aspect-ratio: 1 / 1;      /* makes it a perfect square */
    object-fit: cover;        /* keeps image nicely cropped */
    /* border: 3px solid antiquewhite; */
    /* border-radius: 8px; */
}
.artist-name{
    font-size: x-large;
}
.contact {
    text-align: center;
}

.email {
    color: inherit;
}

@media (max-width: 1024px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .image-grid {
        grid-template-columns: 1fr;
    }
}