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

body {
  font-family: 'Orbitron', sans-serif;
  background-color: #0d0d0d;
  color: #e0e0ff;
  line-height: 1.6;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
}

header {
  text-align: center;
  padding: 2rem 0;
}

header h1 {
  font-size: 3rem;
  color: #c084fc;
  text-shadow: 0 0 10px #a855f7;
}

.headline {
  font-size: 1.5rem;
  color: #a78bfa;
  margin: 0.5rem 0;
}

.tagline {
  color: #e879f9;
  font-style: italic;
  text-shadow: 0 0 6px #9333ea;
}

section {
  margin: 2rem 0;
}

section h2 {
  font-size: 1.8rem;
  color: #c084fc;
  border-bottom: 2px solid #9333ea;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.stack-grid div {
  background-color: #1e1e2e;
  padding: 1rem;
  border-left: 4px solid #9333ea;
  border-radius: 8px;
  transition: 0.3s ease;
}

.stack-grid div:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 12px #9333ea88;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.project-card {
  background-color: #1a1a2e;
  border: 1px solid #3b0764;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 0 10px #9333ea44;
}

.project-card img {
  width: 100%;
  display: block;
  height: auto;
}

.project-card h3 {
  margin: 0.8rem;
  color: #c084fc;
}

.project-card p {
  margin: 0 0.8rem 1rem;
  color: #e0e0ff;
}

.contact a {
  color: #a78bfa;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s;
}

.contact a:hover {
  color: #f0abfc;
  text-shadow: 0 0 5px #9333ea;
}

footer {
  text-align: center;
  padding: 2rem 0;
  font-size: 1rem;
  color: #9f7aea;
  border-top: 1px solid #2e1065;
  margin-top: 3rem;
  text-shadow: 0 0 5px #9333ea;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 2.2rem;
  }
  .headline {
    font-size: 1.2rem;
  }
  .tagline {
    font-size: 1rem;
  }
}
