/* =====================================================
   Status Quo - Custom Bludit Theme
   Exact match of the Wix site design
   ===================================================== */

/* --- Fonts --- */
@font-face {
	font-family: 'adobe-caslon-w01-smbd';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/adobe-caslon-w01-smbd.woff2') format('woff2');
	font-display: swap;
}

/* --- Reset & Base --- */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
	font-size: 18px;
	line-height: 1.4;
	color: #555151;
	background-color: #fff;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

a {
	color: inherit;
	text-decoration: underline;
}

a:hover {
	opacity: 0.8;
}

/* --- Header --- */
.site-header {
	background-color: #555151 !important;
	color: #fff !important;
}

.header-inner {
	max-width: 980px;
	margin: 0 auto;
	padding: 20px 20px 0;
}

.header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 135px;
}

.header-left {
	flex: 0 0 200px;
}

.header-author-link {
	text-decoration: none !important;
	color: #fff !important;
	display: flex;
	align-items: center;
	gap: 10px;
}

.header-circle {
	display: inline-block;
	width: 36px;
	height: 36px;
	background-color: #555151;
	border: 2px solid #fff;
	border-radius: 50%;
	flex-shrink: 0;
}

.header-author {
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
	font-size: 16px;
	color: #fff !important;
	letter-spacing: 0.05em;
}

.header-center {
	flex: 1;
	text-align: center;
}

.site-title {
	font-family: 'adobe-caslon-w01-smbd', serif;
	font-weight: normal;
	font-size: 85px;
	line-height: 1;
	letter-spacing: 0em;
	color: #fff !important;
	margin: 0;
}

.site-title a {
	color: #fff !important;
	text-decoration: none !important;
}

.site-title a:hover {
	opacity: 0.9;
}

.header-right {
	flex: 0 0 200px;
	text-align: right;
}

.header-logo {
	width: 88px;
	height: 105px;
	object-fit: contain;
}

/* --- Navigation --- */
.site-nav {
	background-color: #555151 !important;
}

.nav-inner {
	max-width: 980px;
	margin: 0 auto;
	padding: 0 20px;
}

.nav-menu {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 40px;
	padding: 10px 0;
	margin: 0;
}

.nav-item {
	margin: 4px 0;
}

.nav-link {
	display: block;
	color: #fff !important;
	text-decoration: none !important;
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
	font-size: 18px;
	letter-spacing: 0.05em;
	transition: opacity 0.2s ease;
	padding: 10px;
	text-align: center;
}

.nav-link:hover {
	opacity: 0.7;
}

.nav-link.active {
	color: #fff !important;
	text-decoration: none !important;
}

/* --- Main Content --- */
main#main-content {
	flex: 1;
}

.content-section {
	padding: 40px 20px 60px;
}

.content-inner {
	max-width: 980px;
	margin: 0 auto;
	text-align: center;
}

/* Homepage specific */
.home-subtitle {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: #555151;
	margin-bottom: 20px;
}

.home-text {
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
	font-size: 18px;
	line-height: 1.4;
	color: #555151;
}

/* Page content styling */
.content-inner h1 {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.2;
	color: #555151;
	margin-top: 40px;
	margin-bottom: 18px;
}

.content-inner h1:first-child {
	margin-top: 0;
}

.content-inner h2 {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: #555151;
	margin-top: 35px;
	margin-bottom: 15px;
}

.content-inner p {
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
	font-size: 18px;
	line-height: 1.4;
	color: #555151;
	margin-bottom: 14px;
}

.content-inner strong {
	font-weight: 700;
}

.content-inner em {
	font-style: italic;
	font-weight: 100;
}

.content-inner a {
	color: #555151;
	text-decoration: underline;
}

.content-inner a:hover {
	opacity: 0.7;
}

/* --- Footer --- */
.site-footer {
	background-color: #555151;
	color: #fff;
	padding: 30px 20px;
	text-align: center;
}

.footer-inner {
	max-width: 980px;
	margin: 0 auto;
}

.footer-text {
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
	font-size: 18px;
	line-height: 1.4;
	color: #fff;
	margin-bottom: 8px;
}

.footer-text:last-child {
	margin-bottom: 0;
}

.footer-text a {
	color: #fff;
	text-decoration: underline;
}

.footer-text a:hover {
	opacity: 0.8;
}

/* --- Responsive --- */
@media (max-width: 768px) {
	.site-title {
		font-size: 42px;
	}

	.header-row {
		flex-wrap: wrap;
		justify-content: center;
		min-height: auto;
		gap: 10px;
		padding-bottom: 10px;
	}

	.header-left {
		flex: 0 0 auto;
		order: 2;
	}

	.header-center {
		flex: 0 0 100%;
		order: 1;
	}

	.header-right {
		flex: 0 0 auto;
		order: 3;
		text-align: center;
	}

	.header-logo {
		width: 60px;
		height: 72px;
	}

	.nav-menu {
		flex-direction: column;
		align-items: center;
		gap: 5px;
	}

	.content-inner {
		max-width: 100%;
	}

	.content-inner h1 {
		font-size: 20px;
	}

	.content-inner p {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.site-title {
		font-size: 32px;
	}

	.header-circle {
		width: 28px;
		height: 28px;
	}

	.header-author {
		font-size: 13px;
	}

	.content-section {
		padding: 25px 15px 40px;
	}
}
