/**
 * Equipworks global branding: web font + site header.
 *
 * Enqueued on every front-end view. The hero itself lives in home.css.
 */

/* Roboto Condensed (variable), self-hosted. Latin-ext carries ş, ğ, İ. */
@font-face {
	font-family: "Roboto Condensed";
	font-style: normal;
	font-weight: normal;
	font-display: swap;
	src: url("../fonts/roboto-condensed-latin-ext.woff2") format("woff2");
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: "Roboto Condensed";
	font-style: normal;
	font-weight: normal;
	font-display: swap;
	src: url("../fonts/roboto-condensed-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
	--eq-bg: #36383a;
	--eq-accent: #fbab1f;
	--eq-accent-hover: #ffbc44;
	--eq-text: #e8e9ea;
	--eq-muted: #9a9c9e;
	--eq-header-h: 64px;
}

/* ------------------------------------------------------------------ Header */

.site-header {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: var(--eq-header-h);
	padding: 16px clamp(20px, 5vw, 64px);
	background: var(--eq-bg);
}

.site-header .site-branding {
	display: flex;
	align-items: center;
	margin: 0;
}

.site-header .custom-logo,
.site-header .site-logo-fallback img {
	display: block;
	width: auto;
	height: 44px;
	max-width: 220px;
}

.site-header .site-logo-fallback {
	display: inline-flex;
	line-height: 0;
}

/* underscores still prints these; the front page has no nav or text title. */
.site-header .site-title,
.site-header .site-description,
.site-header .main-navigation {
	display: none;
}

/*
 * Keep body content clear of the header on interior pages. The front page
 * overlays a transparent header on the hero instead (see home.css).
 */
body:not(.home) #page {
	padding-top: 0;
}
