/*
Theme Name: Arkan Tech
Theme URI: https://arkantechjo.com
Author: Apex Lab Agency
Author URI: https://apexlabagency.com
Description: Custom WordPress theme for arkantechjo.com. Version-controlled in Forgejo (apex_lab_dev/arkantechjo.com) and deployed by Plesk Git: the "main" branch deploys to production (arkantechjo.com) and the "staging" branch deploys to staging.arkantechjo.com.
Version: 0.1.1
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: arkantechjo
*/

:root {
  --brand: #0d3b66;
  --brand-accent: #1e88e5;
  --ink: #1a1a1a;
  --muted: #667085;
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --maxw: 1080px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: var(--brand-accent); }
img { max-width: 100%; height: auto; }

.container { width: 92%; max-width: var(--maxw); margin: 0 auto; }

.site-header {
  background: var(--brand);
  color: #fff;
  padding: 1.25rem 0;
}
.site-header a { color: #fff; text-decoration: none; }
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.site-title { font-size: 1.35rem; font-weight: 700; margin: 0; }
.site-description { margin: .1rem 0 0; font-size: .85rem; opacity: .8; }

.main-nav ul { list-style: none; display: flex; gap: 1.1rem; margin: 0; padding: 0; flex-wrap: wrap; }
.main-nav a { font-size: .95rem; opacity: .92; }
.main-nav a:hover { opacity: 1; }

.site-main { padding: 3rem 0; }
.hero { background: var(--bg-soft); padding: 3.5rem 0; text-align: center; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0 0 .5rem; color: var(--brand); }
.hero p { color: var(--muted); font-size: 1.1rem; margin: 0 auto; max-width: 40rem; }

article.entry { padding: 1.5rem 0; border-bottom: 1px solid #eaecef; }
article.entry h2 { margin: 0 0 .25rem; }
.entry-meta { color: var(--muted); font-size: .85rem; margin-bottom: .75rem; }

.site-footer {
  background: var(--brand);
  color: #cfe0f2;
  padding: 1.5rem 0;
  font-size: .85rem;
  text-align: center;
}
.site-footer a { color: #fff; }
.env-badge {
  display: inline-block;
  margin-left: .5rem;
  padding: .1rem .5rem;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  font-size: .72rem;
  letter-spacing: .03em;
}
