
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #fce4ec, #e1bee7);
  color: #4a0057;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}


.navbar {
  background-color: #f5c1f9;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar a {
  font-weight: bold;
  color: #4a0057;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #fff;
}


.btn-pastel {
  background: #e1bee7;
  color: #4a0057;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-pastel:hover {
  background: #ce93d8;
  color: #fff;
}

.project-card {
  background: #fff0f5;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.project-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.project-card .card-body {
  padding: 1rem;
}

footer {
  background-color: #fce4ec;
  padding: 1rem;
  text-align: center;
  color: #6a1b9a;
  font-size: 14px;
  margin-top: auto;
}

