body {
    background-color: lavender;
    font-family: 'Lora', serif;
    line-height: 1.7;
    margin: 20px;
    color: #191970;
}

/* =======================
   NAVIGATION (GLOBAL)
======================= */

nav ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333333; /* dark grey */
    position: relative;
}

/* soft active state (no harsh underline) */
nav a.active {
    color: #333333;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

nav a.active:hover {
    opacity: 0.7; /* becomes more visible on hover */
}

/* hover */
nav a:hover {
    opacity: 0.7;
}

/* =======================
   TYPOGRAPHY BLOCKS
======================= */

h1 {
    margin-bottom: 30px;
}

.project {
    margin-bottom: 22px;
}

/* links inside content */
a {
    color: #8B0000;
}

/* =======================
   GHOST IMAGE SYSTEM
======================= */

.hover-image {
    position: fixed;
    width: 320px;
    pointer-events: none;
    z-index: 1000;

    opacity: 0;
    transform: translate(-50%, -50%);
    filter: blur(2px);
    transition: opacity 0.6s ease;
    mix-blend-mode: multiply;
}

/* =======================
   MOBILE
======================= */

@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .hover-image {
        display: none !important;
    }
}