/*
Theme Name: Shakir Hasan Portfolio
Theme URI: https://shakirhasan.me
Author: Shakir Hasan
Description: Dark professional portfolio theme for web designer and Shopify/WordPress expert
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: shakir-portfolio
*/

:root {
  --background: hsl(220, 25%, 6%);
  --foreground: hsl(210, 20%, 95%);
  --primary: hsl(160, 70%, 45%);
  --accent: hsl(45, 90%, 55%);
  --secondary: hsl(220, 20%, 14%);
  --muted: hsl(220, 20%, 16%);
  --muted-foreground: hsl(215, 15%, 55%);
  --card: hsl(220, 25%, 10%);
  --border: hsl(220, 20%, 18%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, hsla(160, 70%, 45%, 0.15), transparent);
}

.hero-content { position: relative; z-index: 10; text-align: center; width: 100%; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.hero-description {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

.btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--background);
}

.btn-primary:hover {
  box-shadow: 0 0 40px hsla(160, 70%, 45%, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-secondary:hover { background: var(--secondary); }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border);
}

.stat-item { text-align: center; }

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label { color: var(--muted-foreground); margin-top: 0.5rem; }

/* Services Section */
.services { padding: 6rem 0; }

.section-header { text-align: center; margin-bottom: 4rem; }

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle { color: var(--muted-foreground); font-size: 1.125rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.5s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px hsla(160, 70%, 45%, 0.15);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--background);
}

.service-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.service-card p { color: var(--muted-foreground); }

/* Mission Section */
.mission {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--card), var(--background));
}

.mission-quote {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.mission-quote blockquote {
  font-size: 1.75rem;
  font-weight: 600;
  font-style: italic;
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.value-icon {
  width: 4rem;
  height: 4rem;
  background: hsla(160, 70%, 45%, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}

.value-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.value-card p { color: var(--muted-foreground); font-size: 0.9rem; }

/* CTA Section */
.cta {
  padding: 6rem 0;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 4rem 2rem;
}

.cta h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.cta p { color: var(--muted-foreground); margin-bottom: 2rem; font-size: 1.125rem; }

/* Footer */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-brand h3 { font-size: 1.5rem; font-weight: 700; }
.footer-brand p { color: var(--muted-foreground); }

.social-links { display: flex; gap: 1rem; }

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.copyright {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  text-align: center;
}
