.w-100 img[src*="logo"] {
    max-width: 100px;
    height: auto;
}

/* Global Font Overrides to use 'Lekton' */
body, 
.avenir, 
.serif, 
.sans-serif,
h1, h2, h3, h4, h5, h6, 
p, span, a, time, input, textarea, button {
    font-family: 'Lekton', Courier, Monaco, monospace !important;
}

body {
    font-weight: 400;
}

/* About page portrait styling with black & white filter */
.page-about img[src*="portret.JPG"]:not(.lightbox-content) {
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.4s ease;
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 2rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-about img[src*="portret.JPG"]:not(.lightbox-content):hover {
    filter: grayscale(0%);
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

