
:root {
  --primary: #255933;
  --accent: #2E6F40;
  --bg: #f9fdfc;
  --text: #2e2e2e;
  --muted: #777;
  --card-bg: #ffffff;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-text {
  flex: 2;
}

.about-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.intro-pic {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.profile-pic {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.profile-pic.hovered {
  /* This will further increase the scale when hovered */
  z-index: 2;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
}

header {
  background: var(--primary);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

header h1 {
  font-size: 2.8em;
  margin-bottom: 10px;
}

.tagline {
  font-weight: 400;
  font-size: 1.2em;
  margin-bottom: 20px;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}

h2 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: var(--primary);
}

.project-card {
  background: var(--card-bg);
  padding: 20px;
  border-left: 4px solid var(--accent);
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.project-card:hover {
  transform: translateY(-2px);
}

.cta {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 600;
}

ul {
  list-style: none;
  padding-left: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  background: #eeeeee;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 600px) {
  header h1 {
    font-size: 2em;
  }
  nav a {
    display: block;
    margin: 10px 0;
  }
}

/* Animation */
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.profile-pic:hover {
  transform: scale(2px);
}

.intro-pic {
  width: 120px;
  height: 120px;
  align-content: left;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#contact ul li {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

#contact a {
  text-decoration: none;
  color: #4a90e2;
}

#contact a:hover {
  text-decoration: underline;
}