* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, sans-serif;
  background: #0f0f0f;
  color: #ffffff;
}

/*.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
}*/


.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  padding: 4rem 6rem;
  gap: 3rem;
  position: relative;
}

.hero {
  min-height: 100vh;
  background: radial-gradient(
      circle at 20% 40%,
      rgba(59, 130, 246, 0.15),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 60%,
      rgba(147, 51, 234, 0.12),
      transparent 45%
    ),
    #0b0b0f;
}

/*.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/asfalt-light.png");
  opacity: 0.08;
  pointer-events: none; grainy BACKGROUND
}*/

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
}

.hero p {
  margin: 1rem 0 2rem;
  font-size: 1.2rem;
  opacity: 0.8;
}


.hero img {
  min-height: 100vh;
  opacity: 0.9;
  filter: grayscale(20%) contrast(1.05);
  mask-image: linear-gradient(to left, black 70%, transparent);
}

/*.hero-wrapper::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(59,130,246,0.35), transparent 70%);
  filter: blur(60px);
  z-index: -1; made my face glow
}*/


@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }

  .hero img {
    justify-content: center;
    margin-top: 2rem;
  }

  .hero img {
    max-width: 260px;
    mask-image: none;
  }
}

.buttons a {
  margin-right: 1rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}

.buttons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59,130,246,0.25);
}

.projects {
  padding: 6rem 4rem;
}

/*.projects::after{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/asfalt-light.png");
  opacity: 0.08;
  pointer-events:
}*/

.projects h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.project-card {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 2rem;
  transition: transform 0.3s ease, border 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: #ffffff;
}

.project-card h3 {
  font-size: 1.4rem;
}

.project-card p {
  margin: 1rem 0;
  opacity: 0.8;
}

.project-card span {
  font-size: 0.9rem;
  opacity: 0.6;
}

.project-links {
  margin-top: 1.5rem;
}

.project-links a {
  margin-right: 1rem;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.project-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.project--security {
  background: radial-gradient(circle at top left, rgba(0, 198, 255, 0.15), transparent 60%),
              linear-gradient(135deg, #0f2027, #203a43);
  border: 1px solid rgba(0, 198, 255, 0.35);
}

/*.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 198, 255, 0.2);
  border: 1px solid rgba(0, 198, 255, 0.4);
  color: #7fe7ff;
}
*/

.footer{
  margin: 1rem 0 2rem;
  font-size: 1.2rem;
  opacity: 0.8;
  align-items: center;
  padding: 3rem 3rem;
}