body {
    margin: 0;
    padding: 0;
    background: #1e1e1e;
    font-family: 'Lora', serif;
    color: #fff;
    overflow-x: hidden;
}

/* Fog effect */
.fog-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/binary.png') repeat;
    opacity: 0.12;
    animation: moveFog 180s linear infinite;
    z-index: 0;
}
@keyframes moveFog {
    from { background-position: 0 0; }
    to { background-position: -3000px 0; }
}

.art-section {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 100px 40px;
}

.art-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em;
    margin-bottom: 60px;
    letter-spacing: 1px;
    color: #f5f5f5;
}

.art-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.art-item {
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ✅ complete image no borders */
.art-item img {
    width: 260px;
    height: auto;
    object-fit: contain; /* avoids cuts */
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    transition: all 0.3s ease;
}

.art-item h2 {
    margin-top: 15px;
    font-family: 'Lora', serif;
    font-size: 1.2em;
    font-weight: 400;
}

/* ✅ soft hover effect without halo */
.art-item:hover img {
    transform: scale(1.07);
    filter: brightness(1.1);
}

.art-item:hover h2 {
    color: #dcdcdc;
}

/* Responsive layout */
@media (max-width: 900px) {
    .art-grid {
        flex-direction: column;
        align-items: center;
    }

    .art-item img {
        width: 80%;
        height: auto;
    }
}
