/* Reset & Variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #3b82f6;
  --text: #f1f5f9;
  --text-dim: #cbd5e1;
  --text-muted: #94a3b8;
  --bg: #1e293b;
  --bg-dark: #0f172a;
  --border: #334155;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --radius: 8px;
}

/* Base Styles */
body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-dark);
}

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

/* Common Card Style */
.card, .hero,
.about-section,
.skills-section,
.featured-projects,
.project-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}

/* Navigation */
.header {
  background: var(--bg);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav-brand h1 {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 600;
}

.subtitle {
  font-size: 0.875rem;
  color: var(--text-dim);
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

/* Layout */
.main {
  min-height: calc(100vh - 140px);
  padding: 2rem 0;
}

.home-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.columns {
  display: flex;
  gap: 2rem;
}

.column {
  flex: 1;
}

/* Resume Layout */
.resume-layout {
  max-width: 800px;
  margin: 2rem auto;
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.resume-header {
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.resume-header h1 {
  font-size: 2rem;
  color: var(--text);
}

.resume-header .title {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 500;
}

.resume-header .contact {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
}

/* Section Styles */
.hero {
  text-align: center;
  padding: 3rem 2rem;
}

.hero h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
}

/* Headings */
h2, h3 {
  color: var(--text);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
}

.resume-layout h2 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
}

h3 {
  font-size: 1.75rem;
}

/* Items (Resume) */
.item {
  margin-bottom: 1.2rem;
  padding: 1rem;
  background: var(--bg-dark);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.item h3 {
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  border: none;
  margin: 0;
  padding: 0;
}

.item a {
  font-size: 0.8rem;
  color: var(--primary);
  text-decoration: none;
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--primary);
  border-radius: 4px;
  transition: all 0.3s;
}

.item a:hover {
  background: var(--primary);
  color: var(--bg);
}

.company {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.item ul {
  padding-left: 1.2rem;
}

.item li {
  color: var(--text-dim);
  margin-bottom: 0.3rem;
}

/* Projects */
.project-card {
  transition: all 0.3s;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.project-preview {
  background: var(--bg-dark);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.project-preview:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
}

.project-preview h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.project-preview p {
  color: var(--text-dim);
  margin-bottom: 1rem;
}

/* Tags & Skills */
.tag,
.skill-tag {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
}

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

.skill-tag {
  background: var(--bg-dark);
  color: var(--text-dim);
  border: 1px solid var(--border);
}

.skill-tag:hover {
  background: var(--primary);
  color: var(--bg);
  transform: translateY(-1px);
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.skills li {
  background: var(--primary);
  color: var(--bg);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s;
}

.skills li:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  border: 2px solid transparent;
  font-size: 0.875rem;
  text-align: center;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

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

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

/* Grids */
.skills-grid,
.project-preview-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.skills-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.project-preview-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.fact {
  background: var(--bg-dark);
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.fact strong {
  color: var(--primary);
}

/* Utilities */
.tags,
.skills-tags,
.preview-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.cta-section {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.bottom-nav {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.bottom-nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s;
}

.bottom-nav a:hover {
  color: var(--primary);
  background: var(--bg-dark);
}

/* Text Colors */
p {
  color: var(--text-dim);
  margin-bottom: 1rem;
}

p strong {
  color: var(--text);
}

p em {
  color: var(--text-muted);
}

.project-description {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
}

.footer p {
  color: var(--text-dim);
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  .nav {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .hero {
    padding: 2rem 1rem;
  }
  .hero h2 {
    font-size: 2rem;
  }
  .card, .hero,
  .about-section,
  .skills-section,
  .featured-projects,
  .project-card {
    padding: 1.5rem;
  }
  .skills-grid, .project-preview-grid {
    grid-template-columns: 1fr;
  }
  .columns {
    flex-direction: column;
  }
  .resume-layout {
    margin: 1rem;
    padding: 1.5rem;
  }
  .cta-section {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .hero h2 {
    font-size: 1.75rem;
  }
  .card, .hero,
  .about-section,
  .skills-section,
  .featured-projects,
  .project-card {
    padding: 1rem;
  }
  .bottom-nav {
    flex-direction: column;
    gap: 0.5rem;
  }
}
/* Utilities */
html {
  scroll-behavior: smooth;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=styles.css.map */
