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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 10vh;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #0a0a0a, #121212);
  color: #f5f5f5;
  line-height: 1.6;
}

.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    background: #050505;
}

.nav-logo {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.logo {
  font-size: 1.5rem;
  color: #ffffff;
}

.nav-links a {
  color: #d4d4d8;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s ease;
}

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

.hero {
  min-height: 1vh;
  background:
    radial-gradient(circle at top right,
      rgba(59,130,246,0.10),
      transparent 30%),
    radial-gradient(circle at bottom left,
      rgba(59,130,246,0.05),
      transparent 40%),
    #0a0a0a;
}

.hero-content {
  padding: 100px 8%;
  max-width: 900px;

}

.hero-content h2 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.3rem;
  color: #a1a1aa;
  min-height: 2em;
}

main {
  padding: 80px 8%;
}

.section {
  max-width: 1000px;
  margin: 0 auto 100px auto;
}

.section h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.section p {
  max-width: 700px;
  color: #a1a1aa;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
}

.social-links a {
  color: #ffffff;
  font-size: 2.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #3b82f6;
  transform: translateY(-8px);
}

footer {
  text-align: center;
  padding: 30px;
  background: #050505;
  color: #71717a;
}

#typing-effect {
    margin-left: -0.2ch;
    padding-left: 0;
    animation: blink 0.8s step-start infinite;
}

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

@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links a {
    margin: 0 10px;
  }

  .hero-content {
    padding: 120px 8%;
    text-align: center;
  }

  .hero-content h2 {
    font-size: 2.7rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }
}