/* Hero Section */
.hero-subtitle {
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.875rem;
}

.hero-highlight {
  color: var(--text-secondary);
}

.hero-description {
  max-width: 600px;
  margin-top: var(--space-6);
}

.hero-actions {
  margin-top: var(--space-8);
  display: flex;
  gap: var(--space-4);
}

/* Services/Skills Section */
.services-list {
  padding-left: var(--space-6);
  list-style: disc;
  margin-top: var(--space-4);
}

/* Projects Section */
.project-image-placeholder {
  aspect-ratio: 16/9;
  background: #e5e7eb;
  border-radius: 4px;
  margin-bottom: var(--space-4);
}

.project-tags {
  margin-top: var(--space-4);
}

.github-link-container {
  text-align: center;
  margin-top: var(--space-8);
}

/* Contact Section */
.contact-container {
  max-width: 600px;
}

.contact-form {
  display: grid;
  gap: var(--space-4);
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-family: inherit;
}

.form-submit {
  cursor: pointer;
  justify-self: start;
}

.contact-alt {
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-light);
}

/* About Section */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-intro {
  display: flex;
  gap: var(--space-8);
  flex-direction: column;
  align-items: flex-start;
}

.about-text {
  line-height: 1.8;
  color: var(--text-secondary);
}

.about-highlight {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 700;
}

.about-philosophy {
  margin-top: var(--space-8);
}

.experience-section {
  margin-top: var(--space-8);
  width: 100%;
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-8);
}

.experience-item {
  margin-bottom: var(--space-6);
}

.experience-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
}

.experience-title {
  margin-bottom: var(--space-1);
}

.experience-company {
  margin-bottom: var(--space-2);
}

.about-cta {
  margin-top: var(--space-4);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  justify-content: center;
  margin-top: var(--space-6);
}
.social-icons a {
  display: inline-flex;
  align-items: center;
}
.social-icons img {
  height: 28px;
  width: auto;
}
@media (min-width: 768px) {
  .social-icons img {
    height: 32px;
  }
}
