body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fdfcfa;
  color: #2e2e2e;
}

header {
  background: #4a4e69;
  color: white;
  padding: 15px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 30px;
  padding: 0;
  margin: 0;
}

nav a {
  color: #f2e9e4;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s;
}

nav a:hover {
  color: #c9ada7;
}

main {
  padding: 40px 20px;
  background: #fdfaf6;
}

footer {
  background: #22223b;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  margin-top: 60px;
}

.projects .project,
.about,
.resume,
.contact {
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.projects .project + .project {
  margin-top: 30px;
}

h1, h2 {
  color: #4a4e69;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

input, textarea {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #f8f8f8;
}

button {
  padding: 12px;
  background-color: #9a8c98;
  color: white;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s;
}

button:hover {
  background-color: #4a4e69;
}

.resume-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #c9ada7;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s;
}

.resume-button:hover {
  background-color: #9a8c98;
}
