/* ================== Grovia Studio Branding Styles ================== */

/* Logo Base Styles */
.grovia-logo {
    max-height: 44px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.grovia-logo:hover {
    opacity: 0.85;
}

/* Header Logo Specific */
.navbar-brand .grovia-logo {
    max-height: 44px;
}

/* Footer Logo Specific */
.grovia-logo-footer {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

/* Sidebar Logo Specific */
.grovia-logo-sidebar {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .grovia-logo {
        max-height: 32px;
    }

    .navbar-brand .grovia-logo {
        max-height: 32px;
    }

    .grovia-logo-sidebar {
        max-height: 40px;
    }
}

/* Optional: Subtle Background Watermark */
/* Uncomment to enable watermark */
/*
body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 40%;
    background-image: url('../image/branding/grovia-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}
*/

/* Ensure main content stays above watermark */
main {
    position: relative;
    z-index: 1;
}