/* Highlight current page (ARTWORK) */
.projects-header .header-center a[href="artwork.html"] {
    background-color: #80634f;
}

.projects-header .header-center a[href="artwork.html"]:hover {
    background-color: #a07c60;
}

/* Un-Highlight PROJECTS */
.projects-header .header-center a[href="projects.html"] {
    background-color: #561c24;
}

.projects-header .header-center a[href="projects.html"]:hover {
    background-color: #6d2932;
}

/* Artwork Description Section */
#artwork-description {
    margin: 40px 0;
    padding: 20px; 
    text-align: center; 
}

.artwork-description-content {
    max-width: 700px;
    margin: 0 auto; 
    text-align: center; 
}

.artwork-description-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #2b1a1f;
    margin: 0; 
}

/* Art Category Section */
.art-category {
    margin: 40px 0;
    padding: 0 20px;
    text-align: left;
}

.art-category h2 {
    font-size: 1.6rem;
    font-weight: 500;
    color: #614b4b;
    margin-bottom: 20px;
}

/* Projects Grid */
.art-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Individual Project Card */
.art-card {
    background-color: #e8d8c4;
    padding: 15px;
    text-align: left;
}

.art-card img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    user-select: none;
    -webkit-user-drag: none;
}

.art-card p {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #2b1a1f;
}

.art-card a {
    margin: 0 10px;
    color: #614b4b;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

.art-card a:hover {
    text-decoration: underline;
}