/*
Theme Name: Shakhawat Portfolio
Theme URI: https://superdesigner.asia
Author: Shakhawat Hossain
Author URI: https://superdesigner.asia
Description: A dark, editorial portfolio theme for graphic designers. Bold typography, acid green accents, and a moody aesthetic built for creative professionals.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shakhawat-portfolio
Tags: portfolio, dark, one-page, custom-colors, custom-logo, featured-images, full-width-template
*/

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

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

/* ─── Variables ─── */
:root {
  --ink:      #0d0d0d;
  --cream:    #f0ede6;
  --accent:   #c8ff00;
  --muted:    #5a5a5a;
  --card-bg:  #141414;
  --card-border: #2a2a2a;
}

/* ─── Base ─── */
html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; }
a:hover { opacity: 0.8; }
img { max-width: 100%; height: auto; display: block; }

/* ─── Skip Link ─── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  background: var(--accent);
  color: var(--ink);
  padding: 0.5rem 1rem;
  z-index: 9999;
  font-size: 14px;
  font-weight: 500;
}

/* ─── Site Header / Nav ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.5px solid #1a1a1a;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(8px);
}

.site-branding .site-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  text-decoration: none;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.main-navigation a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}

.main-navigation a:hover { color: var(--accent); }

/* ─── Hero ─── */
.hero {
  padding: 10rem 2rem 4rem;
  border-bottom: 0.5px solid #222;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero::before {
  content: 'MORE DESIGN';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 13vw, 9rem);
  color: #161616;
  letter-spacing: 0.05em;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.hero-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-size: 1rem;
  color: #888;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.meta-item {
  font-size: 12px;
  color: #666;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}

.meta-item span {
  color: var(--cream);
  display: block;
  font-size: 13px;
  margin-top: 2px;
  text-transform: none;
  letter-spacing: 0;
}

.available-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,255,0,0.08);
  border: 0.5px solid rgba(200,255,0,0.3);
  border-radius: 99px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ─── Sections ─── */
.portfolio-section {
  padding: 3rem 2rem;
  border-bottom: 0.5px solid #1e1e1e;
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.divider-line {
  height: 0.5px;
  background: linear-gradient(to right, var(--accent) 0%, transparent 100%);
}

/* ─── Projects Grid ─── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
}

.project-card {
  background: var(--card-bg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
}

.project-card:hover { background: #1c1c1c; }

.project-card:hover .project-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.project-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #222;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.project-thumb {
  width: 100%;
  height: 140px;
  object-fit: cover;
  margin-bottom: 1rem;
  filter: grayscale(30%);
  transition: filter 0.3s;
}

.project-card:hover .project-thumb { filter: grayscale(0%); }

.project-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.project-tag {
  font-size: 10px;
  color: #555;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-arrow {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  color: var(--accent);
  font-size: 16px;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: all 0.2s;
}

/* ─── About ─── */
.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #999;
  max-width: 540px;
  font-weight: 300;
}

.about-text strong { color: var(--cream); font-weight: 400; }

/* ─── Skills ─── */
.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  padding: 6px 14px;
  border: 0.5px solid #2a2a2a;
  font-size: 12px;
  color: #888;
  letter-spacing: 0.08em;
  font-weight: 400;
  transition: all 0.2s;
  cursor: default;
}

.skill-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─── Experience ─── */
.experience-list { display: flex; flex-direction: column; gap: 1px; }

.exp-item {
  background: var(--card-bg);
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0.5px solid #1e1e1e;
}

.exp-role {
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 2px;
}

.exp-company {
  font-size: 11px;
  color: #666;
  letter-spacing: 0.05em;
}

.exp-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1e1e1e;
  border: 0.5px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #555;
  font-weight: 500;
  flex-shrink: 0;
}

/* ─── Stats ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
  margin-top: 1rem;
}

.stat-box {
  background: var(--card-bg);
  padding: 1.2rem 1rem;
  text-align: center;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--cream);
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  color: #555;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
}

.contact-item {
  background: var(--card-bg);
  padding: 1.2rem;
  font-size: 12px;
  color: #666;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-item a {
  color: var(--cream);
  display: block;
  font-size: 13px;
  margin-top: 4px;
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover { color: var(--accent); }

/* ─── Footer ─── */
.site-footer {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 0.5px solid #1a1a1a;
}

.footer-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: #333;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 11px;
  color: #555;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-copy {
  font-size: 11px;
  color: #333;
  width: 100%;
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

/* ─── WordPress Widget Areas ─── */
.widget-area { padding: 2rem; }
.widget { margin-bottom: 2rem; }
.widget-title {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 1rem;
  font-weight: 400;
}

/* ─── Single Post ─── */
.entry-header { padding: 8rem 2rem 2rem; border-bottom: 0.5px solid #222; }
.entry-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 1rem;
}
.entry-meta { font-size: 11px; color: #555; letter-spacing: 0.1em; text-transform: uppercase; }
.entry-content { padding: 2rem; max-width: 720px; color: #999; line-height: 1.8; }
.entry-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--cream); margin: 2rem 0 1rem; }
.entry-content p { margin-bottom: 1.2rem; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .site-header { padding: 1rem; }
  .main-navigation ul { gap: 1rem; }
  .hero { padding: 8rem 1rem 3rem; }
  .portfolio-section { padding: 2rem 1rem; }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .site-footer { padding: 1.5rem 1rem; }
  .hero::before { font-size: 4rem; opacity: 0.5; }
}

@media (max-width: 480px) {
  .main-navigation { display: none; }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
}
