/* ==========================================================
   Shakil Portfolio — Clean & Elegant Theme
   ========================================================== */

:root {
	--navy: #0a1628;
	--navy-soft: #12203a;
	--ink: #1a1a1a;
	--ink-soft: #55606e;
	--accent: #c9a24b; /* gold — matches the banner exactly */
	--bg: #ffffff;
	--bg-alt: #f6f7f9;
	--border: #e4e7eb;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	font-family: 'Helvetica Neue', Arial, sans-serif;
	color: var(--ink);
	background: var(--bg);
	line-height: 1.7;
}

h1, h2, h3, h4 { font-family: 'Helvetica Neue', Arial, sans-serif; margin: 0; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.shakil-container { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.shakil-narrow { max-width: 720px; }

/* ---------- Nav ---------- */
.shakil-nav {
	position: sticky;
	top: 0;
	background: var(--navy);
	z-index: 50;
}
.shakil-nav-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 24px;
}
.shakil-nav-logo {
	font-weight: 700;
	font-size: 18px;
	letter-spacing: .5px;
	color: #fff;
}
.shakil-nav-links {
	display: flex;
	gap: 28px;
	font-size: 14px;
}
.shakil-nav-links a { color: rgba(255,255,255,.75); transition: color .2s; }
.shakil-nav-links a:hover { color: var(--accent); }

/* ---------- Hero ---------- */
.shakil-hero { background: var(--navy); }
.shakil-hero-banner { width: 100%; line-height: 0; }
.shakil-hero-banner img { width: 100%; height: auto; display: block; }

.shakil-hero-actions-wrap { padding: 26px 24px; }
.shakil-hero-actions { display: flex; gap: 16px; justify-content: center; }
.shakil-btn {
	display: inline-block;
	padding: 13px 30px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .3px;
	border-radius: 2px;
	transition: all .2s;
}
.shakil-btn-primary { background: var(--accent); color: var(--navy); }
.shakil-btn-primary:hover { background: #dab766; }
.shakil-btn-outline { border: 1px solid var(--accent); color: var(--accent); }
.shakil-btn-outline:hover { background: rgba(201,162,75,.12); }

/* ---------- Sections ---------- */
.shakil-section { padding: 70px 0; }
.shakil-section-alt { background: var(--bg-alt); }
.shakil-section-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 36px;
	position: relative;
	padding-bottom: 14px;
}
.shakil-section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 48px;
	height: 3px;
	background: var(--accent);
}
.shakil-about-text { font-size: 17px; color: var(--ink-soft); }

/* ---------- Timeline (Experience) ---------- */
.shakil-timeline { position: relative; padding-left: 28px; border-left: 1px solid var(--border); }
.shakil-timeline-item { position: relative; margin-bottom: 40px; }
.shakil-timeline-item:last-child { margin-bottom: 0; }
.shakil-timeline-dot {
	position: absolute;
	left: -33px;
	top: 6px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--accent);
}
.shakil-timeline-duration {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--accent);
	font-weight: 700;
}
.shakil-timeline-content h4 { font-size: 20px; margin: 6px 0 2px; font-weight: 700; color: var(--navy); }
.shakil-timeline-company { font-style: normal; font-weight: 600; color: var(--ink-soft); margin-bottom: 10px; }
.shakil-timeline-desc { font-size: 15px; color: var(--ink-soft); }
.shakil-timeline-desc p { margin: 0; }

/* ---------- Skills ---------- */
.shakil-skills-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.shakil-skill-pill {
	font-size: 14px;
	font-weight: 600;
	padding: 10px 20px;
	background: var(--navy);
	color: var(--accent);
	border-radius: 30px;
}

/* ---------- Projects ---------- */
.shakil-projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}
.shakil-project-card {
	border: 1px solid var(--border);
	border-radius: 4px;
	overflow: hidden;
	background: #fff;
	transition: transform .2s ease, box-shadow .2s ease;
}
.shakil-project-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,.06); }
.shakil-project-image { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-alt); }
.shakil-project-image img { width: 100%; height: 100%; object-fit: cover; }
.shakil-project-body { padding: 20px; }
.shakil-project-body h4 { font-size: 18px; margin-bottom: 8px; font-weight: 600; }
.shakil-project-body p { font-size: 14px; color: var(--ink-soft); margin: 0 0 12px; }
.shakil-project-link {
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--accent);
}

/* ---------- Contact ---------- */
.shakil-contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}
.shakil-contact-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 20px;
	border: 1px solid var(--border);
	border-radius: 4px;
	transition: border-color .2s;
}
.shakil-contact-item:hover { border-color: var(--accent); }
.shakil-contact-label {
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--accent);
}

/* ---------- Footer ---------- */
.shakil-footer {
	text-align: center;
	padding: 30px;
	font-size: 13px;
	color: rgba(255,255,255,.6);
	background: var(--navy);
}

.shakil-admin-hint { text-align: center; font-size: 12px; color: #999; padding: 20px 0; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
	.shakil-nav-links { display: none; }
	.shakil-hero-actions { flex-wrap: wrap; }
}
