/* Yukko Projects — mobile-first "underground" theme */

body {
	background-color: var(--wp--preset--color--underground-navy);
}

/* Header */
.yukko-site-header {
	background-color: var(--wp--preset--color--underground-navy);
	padding: 0.75rem 1rem;
}
.yukko-site-header .wp-block-site-title a {
	color: #ffffff;
}

/* Hamburger nav */
.yukko-nav {
	position: relative;
}
.yukko-nav-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 32px;
	height: 32px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}
.yukko-nav-toggle span {
	display: block;
	height: 2px;
	width: 100%;
	background-color: #ffffff;
}
.yukko-nav-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: none;
	flex-direction: column;
	position: absolute;
	top: 100%;
	right: 0;
	min-width: 220px;
	background-color: var(--wp--preset--color--underground-navy);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
	z-index: 100;
}
.yukko-nav-menu.is-open {
	display: flex;
}
.yukko-nav-menu li a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0.75rem 1rem;
	color: #ffffff;
	text-decoration: none;
}
.yukko-nav-icon {
	border-radius: 50%;
	flex-shrink: 0;
}

@media (min-width: 782px) {
	.yukko-nav-toggle {
		display: none;
	}
	.yukko-nav-menu {
		display: flex;
		flex-direction: row;
		position: static;
		background: none;
		box-shadow: none;
	}
	.yukko-nav-menu li a {
		padding: 0.5rem 0.75rem;
	}
}

/* Hero */
.yukko-hero {
	position: relative;
	background-color: var(--wp--preset--color--underground-navy);
	background-size: cover;
	background-position: center;
	text-align: center;
}
.yukko-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(11, 27, 52, 0.55), rgba(11, 27, 52, 0.8));
}
.yukko-hero > .wp-block-group {
	position: relative;
	z-index: 1;
}
.yukko-hero-title {
	color: #ffffff;
	font-size: clamp(1.75rem, 6vw, 3.5rem);
	margin-bottom: 0.5rem;
}
.yukko-hero-sub {
	color: #e0e6f0;
	font-size: 1rem;
}

/* Post cards / article body — white, readable */
.yukko-post-card,
.yukko-article {
	background-color: #ffffff;
	color: #171717;
	border-radius: 8px;
	padding: 1.5rem;
}
.yukko-post-card {
	margin-bottom: 1.5rem;
}

.yukko-cat-badge-wrap {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 0.5rem;
}
.yukko-cat-badge {
	border-radius: 50%;
}
.yukko-cat-badge-label {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
