@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: linear-gradient(180deg, #020617, #020617);
  color: #e5e7eb;
  line-height: 1.7;
}

/* HERO */
header {
  text-align: center;
  padding: 100px 20px;
  background: radial-gradient(circle at top, #020617, #020617);
  animation: fadeIn 1.2s ease;
}

header h1 {
  font-size: 3.2rem;
  font-weight: 700;
}

header p {
  margin-top: 10px;
  color: #94a3b8;
  font-size: 1.2rem;
}

.links {
  margin-top: 25px;
}

.links a {
  display: inline-block;
  margin: 0 10px;
  padding: 10px 18px;
  border: 1px solid #38bdf8;
  color: #38bdf8;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.links a:hover {
  background: #38bdf8;
  color: #020617;
}

/* SECTIONS */
section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
  animation: fadeUp 1s ease;
}

h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #38bdf8;
}

/* CARDS */
.project {
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(56, 189, 248, 0.15);
  padding: 25px;
  border-radius: 16px;
  margin-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(56, 189, 248, 0.1);
}

.project h3 {
  margin-bottom: 10px;
}

/* LISTS */
ul {
  margin-left: 20px;
}

ul li {
  margin-bottom: 8px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px 20px;
  color: #94a3b8;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  header h1 {
    font-size: 2.4rem;
  }

  section {
    margin: 60px auto;
  }
}
