body, html {
    margin: 0;
    padding: 0;
    background-color: #050505; /* Πολύ βαθύ μαύρο */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

#webgl-canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1; /* Πίσω από όλα */
}

#nck-logo {
    width: 200px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: transform 0.1s ease-out; /* Για το ομαλό κατέβασμα */
}

.image-gallery {
    margin-top: 100vh; /* Ξεκινάει κάτω από το hero section */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-item {
    width: 80%;
    max-width: 1000px;
    margin-bottom: 20vh;
    opacity: 0; /* Θα εμφανιστεί με JS καθώς κατεβαίνει το logo */
}

.project-item img {
    width: 100%;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.project-item:hover img {
    filter: grayscale(0%);
}