/*
Theme Name: OapAI
Theme URI: https://oapai.local
Author: OapAI Technologies
Description: Custom theme for the OapAI Technologies agency site. The homepage is a self-contained bundled export served as-is; page.php/single.php render normal WordPress content for everything added later.
Version: 1.0.0
Requires at least: 6.5
Requires PHP: 7.4
Text Domain: oapai
*/

/* ---------------------------------------------------------------------
   Branded shell for standard WP pages (Contact, About, Privacy, Terms).
   Matches the homepage's dark navy / teal palette at a basic level —
   these pages render through the normal WP template flow, not the
   homepage's own bundled markup, so this is a separate, deliberately
   simpler stylesheet.
--------------------------------------------------------------------- */

body.page {
	margin: 0;
	background: #0B1526;
	color: #F3F1EA;
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body.page * {
	box-sizing: border-box;
}

body.page a {
	color: #5FE8CC;
	text-decoration: none;
}

body.page a:hover {
	color: #00C9A9;
	text-decoration: underline;
}

.oap-page-wrap {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.oap-page-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 22px 32px;
	border-bottom: 1px solid rgba(243, 241, 234, 0.1);
}

.oap-page-logo {
	display: flex;
	align-items: center;
	gap: 11px;
	font-family: 'Fraunces', serif;
	font-size: 20px;
	font-weight: 600;
}

.oap-page-logo img {
	height: 30px;
	width: 30px;
	display: block;
}

.oap-page-nav {
	display: flex;
	gap: 28px;
	font-size: 14px;
}

.oap-page-nav a {
	color: #C9CBD6;
}

.oap-page-main {
	flex: 1;
	max-width: 760px;
	margin: 0 auto;
	padding: 64px 32px 96px;
	width: 100%;
}

.oap-page-article h1 {
	font-family: 'Fraunces', serif;
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 500;
	line-height: 1.2;
	margin: 0 0 32px;
}

.oap-page-content h2 {
	font-family: 'Fraunces', serif;
	font-size: 24px;
	font-weight: 500;
	margin: 40px 0 14px;
}

.oap-page-content h3 {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 13px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #93A0B8;
	margin: 28px 0 10px;
}

.oap-page-content p {
	margin: 0 0 18px;
	color: #C9CBD6;
}

.oap-page-content ul,
.oap-page-content ol {
	color: #C9CBD6;
	padding-left: 22px;
	margin: 0 0 18px;
}

.oap-page-content li {
	margin-bottom: 8px;
}

.oap-page-content label {
	display: block;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11.5px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #93A0B8;
	margin-bottom: 8px;
}

.oap-page-content input,
.oap-page-content textarea,
.oap-page-content select {
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(243, 241, 234, 0.1);
	padding: 10px 2px;
	color: #F3F1EA;
	font-size: 15px;
	font-family: inherit;
	outline: none;
	transition: border-color .25s ease;
}

.oap-page-content input:focus,
.oap-page-content textarea:focus,
.oap-page-content select:focus {
	border-color: #00C9A9;
}

.oap-page-content button[type="submit"],
.oap-page-content input[type="submit"] {
	width: auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 13px;
	letter-spacing: 0.03em;
	padding: 12px 22px;
	border-radius: 2px;
	border: 1px solid #00C9A9;
	background: #00C9A9;
	color: #0B1526;
	cursor: pointer;
	margin-top: 8px;
	transition: all .25s ease;
}

.oap-page-content button[type="submit"]:hover,
.oap-page-content input[type="submit"]:hover {
	background: #5FE8CC;
	border-color: #5FE8CC;
}

.oap-contact-meta {
	margin-bottom: 40px;
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(243, 241, 234, 0.1);
	font-size: 15px;
	color: #C9CBD6;
}

.oap-contact-meta a {
	color: #F3F1EA;
}

.oap-page-footer {
	border-top: 1px solid rgba(243, 241, 234, 0.1);
	padding: 32px;
}

.oap-page-footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	max-width: 760px;
	margin: 0 auto;
	font-size: 13px;
	color: #93A0B8;
}

.oap-page-footer-nav {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.oap-page-footer-nav a {
	color: #93A0B8;
}

@media (max-width: 600px) {
	.oap-page-header {
		padding: 18px 20px;
	}
	.oap-page-nav {
		gap: 16px;
	}
	.oap-page-main {
		padding: 48px 20px 64px;
	}
	.oap-page-footer {
		padding: 24px 20px;
	}
}
