/* General Page Styling */
body {
    background-color: #000000; /* Soft retro cream background */
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace; /* Classic Neocities vibe */
    margin: 0;
    padding: 20px;
}

header, footer {
    text-align: center;
    margin-bottom: 40px;
}

/* Responsive Grid Layout */
.gallery-container {
    display: grid;
    /* Automatically fits as many columns as possible, min size 280px */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Card Styling */
.gallery-item {
    background: #ffffff;
    border: 2px solid #333; /* Retro solid borders */
    box-shadow: 4px 4px 0px #333; /* Neat 90s drop shadow effect */
    margin: 0;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

/* Responsive Image Behavior */
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: contain; /* Crops images neatly without distorting them */
    border-bottom: 2px solid #333;
    transition: transform 0.2s ease;
}

/* Hover Effect */
.gallery-item img:hover {
    transform: scale(1.02);
}

/* Text Captions */
figcaption {
    padding: 10px 5px 5px 5px;
}

figcaption h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

figcaption p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}
