/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; background: #fafafa; color: #333; }

/* Header */
header { background: #1e1e2f; color: #fff; padding: 40px 10%; text-align: center; }
header h1 { font-size: 2.8em; }
header p { margin: 10px 0; font-size: 1.2em; }
header .contact a { color: #ff9800; margin: 0 6px; text-decoration: none; }

/* Sections */
section { padding: 40px 10%; border-bottom: 1px solid #ddd; }
section h2 { font-size: 1.8em; color: #1e1e2f; margin-bottom: 15px; border-left: 5px solid #ff9800; padding-left: 10px; }
section ul, section ol { margin-left: 20px; margin-top: 10px; }
section li { margin-bottom: 8px; }

/* Jobs */
.job { margin-bottom: 25px; }
.job h3 { font-size: 1.2em; color: #ff9800; }
.job .time { font-size: 0.9em; color: #666; }

/* Footer */
footer { text-align: center; background: #1e1e2f; color: #fff; padding: 15px; font-size: 0.9em; }
footer a { color: #ff9800; text-decoration: none; }

/* --------------------
   PROJECTS SECTION
-------------------- */
#projects {
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}

#projects h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #333;
}

.project {
  display: inline-block;
  width: 300px;
  margin: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  vertical-align: top;
}

.project:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.project img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.project h3 {
  font-size: 1.2em;
  margin: 15px;
  color: #222;
}

.project p {
  font-size: 0.95em;
  margin: 0 15px 15px 15px;
  color: #555;
  line-height: 1.4em;
}


