/**
 * Tigress global branding — larger app logo (desk, login, website).
 * Default Frappe limits: navbar 28px, login 42px.
 */

:root {
	--tigress-logo-height-desk: 42px;
	--tigress-logo-height-login: 72px;
	--tigress-logo-height-footer: 48px;
	--navbar-height: 56px;
}

/* Desk / ERP top bar */
.navbar {
	height: var(--navbar-height);
	min-height: var(--navbar-height);
}

.navbar .navbar-home img.app-logo,
.navbar-home img.app-logo,
.navbar-home img {
	max-height: var(--tigress-logo-height-desk) !important;
	height: auto;
	width: auto;
	max-width: 240px;
	object-fit: contain;
}

.navbar-brand.navbar-home {
	display: flex;
	align-items: center;
	padding-top: 4px;
	padding-bottom: 4px;
}

/* Login & signup pages */
.page-card-head img.app-logo,
.page-card-head img {
	max-height: var(--tigress-logo-height-login) !important;
	width: auto;
	max-width: 320px;
	object-fit: contain;
}

/* Website footer (if used) */
.footer-logo,
.footer-logo-extension img {
	max-height: var(--tigress-logo-height-footer) !important;
	width: auto;
	max-width: 280px;
	object-fit: contain;
}

/* Splash / loading screen */
.splash img {
	max-height: 80px !important;
	width: auto;
	max-width: 320px;
}
