/* Overall Aesthetic */
body {
    background-color: #f8e1f4; /* Pastel Pink */
    background-image: radial-gradient(#d1b3ff 1px, transparent 1px); /* Lavender Grid Dots */
    background-size: 25px 25px;
    color: #4a4a4a;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    padding: 20px;
}

#container {
    max-width: 900px;
    background: #ffffffcc; /* Semi-transparent white */
    border: 5px dashed #b28dff; /* Lavender Stitched Border */
    border-radius: 20px;
    padding: 30px;
    box-shadow: 12px 12px 0px #aff8db; /* Mint Shadow */
}

/* Header & Sidebar */
header {
    text-align: center;
    border-bottom: 3px double #b28dff;
    margin-bottom: 25px;
    padding-bottom: 10px;
}

h1 {
    font-size: 3em;
    color: #b28dff;
    text-shadow: 3px 3px 0px #ffc9de;
    margin: 0;
}

#main-content {
    display: flex;
    gap: 30px;
}

#sidebar {
    width: 180px;
    background: #ffc9de;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #b28dff;
    height: fit-content;
}

/* Gallery & Cards */
.gallery-grid {
    display: grid;
    /* Keeps cards large and equal in size */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
    margin-bottom: 30px;
}

.art-card {
    background: white;
    /* This brings back your lavender border */
    border: 2px solid #b28dff; 
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    /* Added a little shadow for depth */
    box-shadow: 5px 5px 0px #ffc9de; 
}

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

.image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; 
    /* This adds the mint-colored line under the art */
    border-bottom: 2px solid #aff8db; 
}


.caption {
    padding: 10px;
    text-align: center;
    background: #fcf1ff;
}



/* Status Bar */
.status-box {
    background: #aff8db;
    padding: 15px;
    border-radius: 10px;
    
    
    
.glitch-text {
    font-size: 3.5em;
    color: #b28dff;
    text-shadow: 3px 3px #ffc9de, -3px -3px #aff8db;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

    border: 2px dashed #b28dff;
    text-align: center;
}
