/* --- Global Styles --- */
body {
    /* A moody, antique parchment color */
    background-color: #f2efdf; 
    /* Dark charcoal for text—softer than pure black */
    color: #2c2c2c;           
    font-family: 'Almendra', serif;
    margin: 0;
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 3rem 1rem;
    /* Subtle line that looks like a pen stroke */
    border-bottom: 2px solid #d1cdb7; 
}

header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
}

nav a {
    color: #5a5a5a;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1rem;
    text-transform: lowercase;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #000000;
    text-decoration: underline;
}

/* --- Gallery Grid --- */
.gallery-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Art Cards (Instagram Links) --- */
.art-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.art-card img {
    width: 100%;
    max-width: 350px; /* Keeps the designs from getting too huge */
    height: auto;
    display: block;
    /* Subtle drop shadow to make the "sticker" or "cutout" art pop off the page */
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.art-card:hover {
    transform: translateY(-5px);
}

.art-card:hover img {
    /* Sharpens the black ink on hover */
    filter: drop-shadow(0 8px 25px rgba(0,0,0,0.2)) contrast(1.2);
}

.caption {
    margin-top: 20px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-top: 1px solid #d1cdb7;
    padding-top: 5px;
    width: 60%;
    text-align: center;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 5rem 1rem 3rem;
    font-size: 0.8rem;
    color: #8a8775;
    text-transform: uppercase;
    letter-spacing: 2px;
}