/*
Theme Name:  Faruk
Theme URI:   https://farukurrahman.com
Author:      Faruk Ur Rahman
Author URI:  https://farukurrahman.com
Description: Professional personal branding theme for Google Analytics & Server-Side Tracking Expert. Built with glassmorphism design, ACF-powered dynamic content, and full WordPress admin control.
Version:     1.1.0
Requires at least: 6.0
Tested up to:      6.7
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:       faruk
Tags: portfolio, one-page, custom-colors, custom-menu, featured-images, full-width-template, theme-options, translation-ready
*/

/* ──────────────────────────────────────────────────────────────
   CSS CUSTOM PROPERTIES
────────────────────────────────────────────────────────────── */
:root {
	--cyan:                #00F5FF;
	--cyan-soft:           #00D4E8;
	--cyan-muted:          #00B4C5;
	--cyan-dim:            rgba(0, 245, 255, 0.12);
	--navy:                #0A1428;
	--navy-dark:           #020C1B;
	--navy-800:            #0D1F3C;
	--navy-700:            #112654;
	--glass-bg:            rgba(255, 255, 255, 0.04);
	--glass-border:        rgba(0, 245, 255, 0.18);
	--glass-border-subtle: rgba(255, 255, 255, 0.08);
	--text-primary:        #e8f1ff;
	--text-secondary:      rgba(226, 234, 247, 0.7);
	--text-muted:          rgba(226, 234, 247, 0.45);
	--font-display:        'Syne', sans-serif;
	--font-body:           'DM Sans', sans-serif;
	--radius-sm:           8px;
	--radius-md:           12px;
	--radius-lg:           16px;
	--radius-xl:           20px;
	--radius-2xl:          24px;
	--transition-base:     all 0.3s ease;
	--transition-smooth:   all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ──────────────────────────────────────────────────────────────
   RESET & BASE
────────────────────────────────────────────────────────────── */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-body);
	background-color: var(--navy-dark);
	color: var(--text-primary);
	overflow-x: hidden;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
}

input, button, textarea, select {
	font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
}

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

ul, ol {
	list-style: none;
}

button {
	background: none;
	border: none;
	cursor: pointer;
}

/* ──────────────────────────────────────────────────────────────
   SCROLLBAR
────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb {
	background: rgba(0, 245, 255, 0.3);
	border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 245, 255, 0.5);
}

/* ──────────────────────────────────────────────────────────────
   SCREEN READER ONLY
────────────────────────────────────────────────────────────── */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: var(--navy);
	clip: auto !important;
	clip-path: none;
	color: var(--cyan);
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* ──────────────────────────────────────────────────────────────
   SKIP LINK
────────────────────────────────────────────────────────────── */
.skip-link {
	position: absolute;
	top: -40px;
	left: 6px;
	background: var(--cyan);
	color: var(--navy-dark);
	font-weight: 700;
	padding: 8px 16px;
	border-radius: 0 0 4px 4px;
	z-index: 99999;
	transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ──────────────────────────────────────────────────────────────
   WP CORE ALIGNMENTS
────────────────────────────────────────────────────────────── */
.alignleft  { float: left; margin: 0 1.5rem 1.5rem 0; }
.alignright { float: right; margin: 0 0 1.5rem 1.5rem; }
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto 1.5rem;
}
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.5rem; }

/* ──────────────────────────────────────────────────────────────
   CONTAINER
────────────────────────────────────────────────────────────── */
.container {
	width: 100%;
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
