/* Stechza custom overrides for Zerofour template */

/* Logo refinement */
#logo {
	display: inline-flex !important;
	align-items: center;
}

/* Footer social icons - inline row */
#footer ul.icons {
	list-style: none;
	padding: 0;
	margin: 24px 0 16px 0;
	display: flex;
	gap: 10px;
}
#footer ul.icons li {
	display: inline-block;
	margin: 0;
	padding: 0;
}
#footer ul.icons li a {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255,255,255,0.06);
	color: #aaa;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
#footer ul.icons li a:hover {
	background: #77bcef;
	color: #fff;
	transform: translateY(-2px);
}
#footer ul.icons li a .label {
	display: none;
}

/* Link list in footer (privacy/terms) */
#footer ul.link-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
#footer ul.link-list li {
	padding: 4px 0;
	margin: 0;
	border: none;
}

/* Footer copyright menu spacing */
#footer .copyright ul.menu {
	list-style: none;
	padding: 0;
	margin: 18px 0 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0 22px;
}
#footer .copyright ul.menu li {
	margin: 0;
	padding: 0;
	border: none;
	font-size: 0.85em;
}

/* dl/dt/dd spacing in contact page */
dl dt { margin-top: 16px; }
dl dt:first-of-type { margin-top: 0; }
dl dd { margin: 4px 0 12px 0; }
dl dd small { color: #999; }

/* Form select arrow */
.row.gtr-uniform select {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23aaa"><path d="M7 10l5 5 5-5z"/></svg>');
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 16px;
	appearance: none;
	-webkit-appearance: none;
}

/* Subtle form-status text */
#form-status:empty { display: none; }
