/* ===== Brutally Minimal CSS Reset ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* ===== Minimal Layout ===== */
#app {
  min-height: 100vh;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f0f0f0;
  z-index: 1000;
  padding: 1rem 0;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

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

.nav a {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav a:hover {
  color: #000;
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 2rem;
  background: #fafafa;
}

.hero-content {
  max-width: 800px;
}

.hero-image {
  width: 180px;
  height: 180px;
  margin: 0 auto 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f0f0f0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.image-fallback {
  width: 100%;
  height: 100%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 2.5rem;
}

.hero-greeting {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.title-accent {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 3rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid #000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  display: inline-block;
  cursor: pointer;
}

.btn-primary {
  background: #000;
  color: #fff;
}

.btn-primary:hover {
  background: #333;
  border-color: #333;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #000;
}

.btn-secondary:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ===== Sections ===== */
.section {
  padding: 6rem 2rem;
}

.section-alt {
  background: #fafafa;
}

.section-content {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
}

/* ===== Projects ===== */
.projects {
  display: grid;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.project-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.2s;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.project-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.project-year {
  background: #f0f0f0;
  color: #666;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}

.project-description {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.project-metrics {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
}

.metric-label {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.25rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: #f8f8f8;
  color: #666;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.project-actions {
  margin-bottom: 1.5rem;
}

/* ===== About ===== */
.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-intro {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.highlight {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
}

.highlight strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #000;
}

.highlight span {
  color: #666;
  font-size: 0.9rem;
}

/* ===== Simple Beliefs ===== */
.beliefs {
  margin: 3rem 0;
}

.beliefs p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid #f0f0f0;
}

.skills-minimal {
  margin-top: 2rem;
}

.skills-minimal h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #666;
  font-weight: 600;
}

.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  background: #000;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.about-sidebar {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 2rem;
}

.fun-facts h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #000;
  font-weight: 600;
}

.fun-facts ul {
  list-style: none;
}

.fun-facts li {
  padding: 0.5rem 0;
  color: #666;
  border-bottom: 1px solid #f8f8f8;
}

.fun-facts li:last-child {
  border-bottom: none;
}

/* ===== Music Link in Hobbies ===== */
.fun-facts a.music-link {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f8f8f8;
  position: relative;
}

.fun-facts a.music-link:hover {
  color: #000;
  transform: translateX(8px);
}

.fun-facts a.music-link::after {
  content: '↗';
  margin-left: 0.5rem;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.2s;
}

.fun-facts a.music-link:hover::after {
  opacity: 1;
}

/* ===== Contact ===== */
.contact-intro {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact-actions {
  text-align: center;
}

.contact-links {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.contact-links a {
  color: #666;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-links a:hover {
  color: #000;
}

/* ===== Footer ===== */
.footer {
  background: #000;
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.footer-content p {
  margin-bottom: 0.5rem;
  color: #999;
}

.footer-content p:last-child {
  margin-bottom: 0;
}

/* ===== Enhanced Mobile Responsiveness ===== */
@media (max-width: 768px) {
  .header-content {
    padding: 0 1rem;
  }
  
  .nav {
    gap: 1.5rem;
  }
  
  .hero {
    padding: 5rem 1rem 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-greeting {
    font-size: 1.3rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-image {
    width: 150px;
    height: 150px;
    margin-bottom: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 200px;
    text-align: center;
  }
  
  .section {
    padding: 4rem 1rem;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-highlights {
    grid-template-columns: 1fr;
  }
  
  .project-header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  
  .project-metrics {
    gap: 1rem;
  }
  
  .projects {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-greeting {
    font-size: 1.2rem;
  }
  
  .hero-image {
    width: 130px;
    height: 130px;
    margin-bottom: 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .project-card {
    padding: 1.5rem;
  }
  
  .about-sidebar {
    padding: 1.5rem;
  }
  
  .contact-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav {
    gap: 1rem;
  }
  
  .nav a {
    font-size: 0.8rem;
  }
}

/* ===== Simple Dark Mode ===== */
@media (prefers-color-scheme: dark) {
  body {
    background: #000;
    color: #fff;
  }
  
  .hero {
    background: #111;
  }
  
  .section-alt {
    background: #111;
  }
  
  .project-card,
  .about-sidebar,
  .highlight {
    background: #1a1a1a;
    border-color: #333;
  }
  
  .nav a {
    color: #999;
  }
  
  .nav a:hover {
    color: #fff;
  }
  
  .hero-subtitle,
  .project-description,
  .about-intro,
  .contact-intro,
  .metric-label,
  .tag,
  .fun-facts li,
  .highlight span,
  .beliefs p {
    color: #999;
  }
  
  .btn-secondary {
    border-color: #fff;
    color: #fff;
  }
  
  .btn-secondary:hover {
    background: #fff;
    color: #000;
  }
  
  .tag {
    background: #333;
    color: #999;
  }
  
  .skill-tag {
    background: #fff;
    color: #000;
  }
  
  .project-year {
    background: #333;
    color: #999;
  }
  
  .hero-image {
    border-color: #333;
  }
  
  .image-fallback {
    background: #333;
    color: #fff;
  }
  
  .fun-facts a.music-link:hover {
    color: #fff;
  }
  
  .beliefs p {
    border-left-color: #333;
  }
}