* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, sans-serif;
  background: #0f172a;
  color: white;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 80px 20px;
}

h1 {
  font-size: 42px;
  color: #ffc1e3;
}

h2 {
  margin-bottom: 20px;
  color: #ffc1e3;
}

.buttons {
  margin-top: 25px;
}

.buttons a {
  text-decoration: none;
  background: #ffc1e3;
  color: #0f172a;
  padding: 10px 18px;
  border-radius: 6px;
  margin: 5px;
  font-weight: 600;
}

section {
  padding: 60px 10%;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #1e293b;
  padding: 20px;
  border-radius: 10px;
  transition: 0.2s;
}

.card:hover {
  transform: translateY(-5px);
}

.card span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #cbd5f5;
}

.links {
  margin-top: 10px;
}

.links a {
  color: #ffc1e3;
  text-decoration: none;
  font-weight: 600;
}

#skills ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#skills li {
  background: #1e293b;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
}

footer {
  text-align: center;
  padding: 40px;
  margin-top: 40px;
  border-top: 1px solid #1e293b;
}

.socials a {
  color: #ffc1e3;
  text-decoration: none;
  margin: 10px;
}

.lang-switch {
  position: absolute;
  top: 20px;
  right: 20px;
}

.lang-switch button {
  background: #1e293b;
  color: white;
  border: none;
  padding: 6px 10px;
  margin-left: 5px;
  border-radius: 5px;
  cursor: pointer;
}
