/* Global */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Courier New", monospace;
  background-color: #0d1117;
  color: #c9d1d9;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 3rem;
  color: #58a6ff;
}

.subtitle {
  font-size: 1.4rem;
  color: #8b949e;
}

.tagline {
  margin-top: 10px;
  font-size: 1rem;
}
.cursor {
  display: inline-block;
  margin-left: 4px;
  animation: blink 1s step-start infinite;
  color: #58a6ff;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Buttons */
.buttons a {
  display: inline-block;
  margin: 15px;
  padding: 10px 20px;
  border: 1px solid #58a6ff;
  color: #58a6ff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease;
}

.buttons a:hover {
  background-color: #58a6ff;
  color: #0d1117;
}

/* Sections */
section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

h2 {
  color: #58a6ff;
  margin-bottom: 20px;
}

h2:hover {
  text-shadow: 0 0 8px rgba(88, 166, 255, 0.4);
}


/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #8b949e;
}

.project {
  border: 1px solid #30363d;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  background-color: #0d1117;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.project:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.project h3 {
  color: #58a6ff;
}
.buttons a[href*="linkedin"] {
  border-color: #0a66c2;
  color: #0a66c2;
}

.buttons a[href*="linkedin"]:hover {
  background-color: #0a66c2;
  color: #ffffff;
}
