* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #fbe8d3, #f5e1c8);
  color: #4b3f35;
  padding: 2rem 1rem;
  transition: background 0.3s ease;
}

header {
  text-align: center;
  margin-bottom: 3rem;
}

header h1 {
  font-size: 2.8rem;
  color: #8b5e3c;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.1rem;
  color: #7b6146;
}

#projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 0 1rem;
}

.project-card {
  background-color: #fffaf4;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(139, 94, 60, 0.1);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  animation: fadeIn 0.6s ease both;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(139, 94, 60, 0.15);
}

.project-card h3 {
  margin-bottom: 10px;
  color: #b06e46;
}

.project-card p {
  margin-bottom: 15px;
  color: #5c4a3c;
}

.buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.buttons a {
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  background: #d7996f;
  color: white;
  font-weight: 500;
  transition: background 0.3s ease;
}

.buttons a:hover {
  background: #b06e46;
}

footer {
  margin-top: 50px;
  text-align: center;
  color: #8d715e;
  font-size: 0.95rem;
}
.social-links{
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap:2rem;
}

.social-links a{
  color:var(--text);
  font-size:1.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover{
  color:var(--accent);
  transform:translateY(-3px);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  body {
    padding: 1.5rem 1rem;
  }

  header h1 {
    font-size: 2rem;
  }
}
