/* Logo & Branding CSS */

/* Navbar Logo */
.logo-img {
    height: 48px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

/* Page Watermark */
.page-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    max-width: 600px;
    opacity: 0.05;
    /* Deep transparency for subtle look */
    z-index: -1;
    /* Behind everything */
    pointer-events: none;
    /* User can click through it */
    filter: grayscale(100%) brightness(1.5);
    /* Modern aesthetic */
}

.page-watermark img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .logo-img {
        height: 38px;
    }

    .page-watermark {
        width: 80vw;
    }
}