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

body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: #0e1117;
  color: #e6e6e6;
  line-height: 1.6;
}

a {
  color: #61dafb;
  text-decoration: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background-color: #0e1117;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #222;
}

.logo {
  font-size: 1rem;
  font-weight: 600;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a:hover {
  color: #fff;
}

.hero {
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.top-btns {
    font-size: 10rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #a0a0a0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn, .btn-outline {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  margin-top: 1.3rem;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn {
  background-color: #61dafb;
  color: #0e1117;
  border: none;
}

.btn:hover {
  background-color: #4dbbe0;
}

.btn-outline {
  background: none;
  border: 2px solid #61dafb;
  color: #61dafb;
}

.btn-outline:hover {
  background-color: #61dafb;
  color: #0e1117;
}

/* Sections */
.section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

/* Projects */
.projects-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.project-card {
  background-color: #1a1e26;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.project-card p {
  flex-grow: 1;
  margin-bottom: 1rem;
  color: #ccc;
}

.card-btn {
  align-self: start;
  color: #61dafb;
  font-weight: bold;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

.card-btn:hover {
  border-color: #61dafb;
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #222;
}
