/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  background-color: #dff1e7;
  color: #333;
  line-height: 1.6;
  padding: 2rem;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 3rem;
}

header h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  border-bottom: 4px solid #228B22;
  display: inline-block;
  padding-bottom: 0.3rem;
}

header p {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  color: #555;
  margin-top: 0.3rem;
}

/* Main container */
main {
  max-width: 900px;
  margin: 0 auto;
  background: #dff1e7;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Sections */
section {
  margin-bottom: 2.5rem;
}

section h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #2c3e50;
  border-left: 5px solid #228B22;
  padding-left: 0.6rem;
}

section h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  color: #2c3e50;
  padding-left: 0.6rem
}

/* About text */
#about p {
  margin-bottom: 0.8rem;
}

/* Project list */
#projects ul {
  list-style: none;
  padding-left: 0;
}

#projects li {
  margin-bottom: 1rem;
  background: #dff1e7;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#projects li:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* Links */
a {
  color: #228B22;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

/* Project titles styled with Playfair */
#projects a {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

a:hover {
  color: #1a75ff;
}

/* Contact */
#contact p {
  margin-bottom: 0.6rem;
}

/* Footer (optional if you add later) */
footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #777;
}
