/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0f0f1a;
  color: #e0e0ff;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  text-align: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
}

.avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid #00ff9f;
  margin-bottom: 24px;
  object-fit: cover;
}

h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.tagline {
  font-size: 1.35rem;
  font-weight: 500;
  color: #00ff9f;
  margin-bottom: 8px;
}

.subtag {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.social-links {
  margin: 24px 0 32px;
}

.social-links a {
  color: #a0a0ff;
  margin: 0 16px;
  text-decoration: none;
  font-weight: 500;
}

.social-links a:hover {
  color: #00ff9f;
}

.cta {
  display: inline-block;
  background: #00ff9f;
  color: #0f0f1a;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 16px;
  transition: all 0.3s;
}

.cta:hover {
  background: #00e088;
  transform: translateY(-2px);
}

section {
  padding: 80px 0;
}

h2 {
  font-size: 2.0rem;
  margin-bottom: 32px;
  color: #00ff9f;
  text-align: center;
}

h3 {
  font-size: 1.35rem;
  margin: 32px 0 16px;
  color: #c0c0ff;
}

.bio p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 24px;
  text-align: center;
}

.highlights {
  list-style: none;
  max-width: 600px;
  margin: 32px auto;
}

.highlights li {
  font-size: 1.0rem;
  margin: 16px 0;
  padding-left: 32px;
  position: relative;
}

.highlights li::before {
  content: "→";
  color: #00ff9f;
  position: absolute;
  left: 0;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.project-card {
  background: #1a1a2e;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #333366;
  transition: all 0.3s;
}

.project-card:hover {
  border-color: #00ff9f;
  transform: translateY(-8px);
}

.project-card h3 {
  margin-bottom: 16px;
}

.project-card a {
  color: #00ff9f;
  text-decoration: none;
  font-weight: 500;
}

.project-card a:hover {
  text-decoration: underline;
}

.contact-form {
  max-width: 600px;
  margin: 32px auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin: 12px 0;
  background: #1a1a2e;
  border: 1px solid #333366;
  border-radius: 8px;
  color: #e0e0ff;
  font-family: inherit;
}

.contact-form button {
  width: 100%;
  background: #00ff9f;
  color: #0f0f1a;
  border: none;
  padding: 16px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 60px 0 40px;
  color: #777799;
  font-size: 0.95rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero { padding: 80px 0 60px; }
  h1 { font-size: 2.8rem; }
  section { padding: 60px 0; }
}