* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: #f1f3f5;
  background:
    radial-gradient(circle at top left, rgba(199, 125, 255, 0.22), transparent 35%),
    radial-gradient(circle at bottom right, rgba(76, 201, 240, 0.12), transparent 35%),
    #09080f;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(199, 125, 255, 0.15), transparent 25%),
    radial-gradient(circle at 80% 30%, rgba(123, 44, 191, 0.12), transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(76, 201, 240, 0.08), transparent 30%);
  pointer-events: none;
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(9, 8, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(199, 125, 255, 0.25);
}

.navbar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #f1f3f5;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #c77dff;
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 24px;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(199, 125, 255, 0.12);
  filter: blur(120px);
  top: -150px;
  left: -100px;
  z-index: -1;
}

.eyebrow {
  color: #c77dff;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 0 0 22px rgba(199, 125, 255, 0.35);
}

.hero-text {
  max-width: 650px;
  color: #c9d1d9;
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn.primary {
  color: #09080f;
  background: #c77dff;
  box-shadow: 0 0 20px rgba(199, 125, 255, 0.45);
}

.btn.secondary {
  color: #f1f3f5;
  border: 1px solid rgba(199, 125, 255, 0.7);
}

.btn:hover {
  transform: translateY(-3px);
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 24px;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: #f1f3f5;
}

.section p {
  color: #c9d1d9;
  max-width: 700px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.card,
.project-card {
  background: rgba(20, 18, 32, 0.75);
  border: 1px solid rgba(199, 125, 255, 0.28);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 0 28px rgba(199, 125, 255, 0.08);
  transition: all 0.3s ease;
}

.card:hover,
.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(199, 125, 255, 0.7);
  box-shadow: 0 0 28px rgba(199, 125, 255, 0.22);
}

.project-card h3 {
  margin-bottom: 10px;
  color: #c77dff;
}

footer {
  text-align: center;
  padding: 32px 24px;
  color: #9ca3af;
  border-top: 1px solid rgba(199, 125, 255, 0.2);
}

.about-section {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(199, 125, 255, 0.35);
  box-shadow: 0 0 30px rgba(199, 125, 255, 0.18);
  display: block;
}

.about-image::before {
  content: "";
  position: absolute;
  inset: -15px;
  background: rgba(199, 125, 255, 0.12);
  filter: blur(40px);
  z-index: -1;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-content p {
  max-width: 800px;
}
.logo,
.hero h1,
.section h2 {
  font-family: "Orbitron", sans-serif;
}

.resume-image-container {
  max-width: 850px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 24px;
  background: rgba(20, 18, 32, 0.75);
  border: 1px solid rgba(199, 125, 255, 0.28);
  box-shadow: 0 0 35px rgba(199, 125, 255, 0.14);
}

.resume-image {
  width: 100%;
  display: block;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resume-image:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(199, 125, 255, 0.25);
  cursor: pointer;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.08);
}

.contact-text {
  margin-bottom: 28px;
}

.social-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.social-links a {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;

  background: rgba(20, 18, 32, 0.75);
  border: 1px solid rgba(199, 125, 255, 0.28);

  color: #f1f3f5;
  text-decoration: none;
  font-size: 1.4rem;

  transition: all 0.3s ease;

  box-shadow: 0 0 18px rgba(199, 125, 255, 0.08);
}

.social-links a:hover {
  transform: translateY(-5px);
  color: #c77dff;

  border-color: rgba(199, 125, 255, 0.7);

  box-shadow: 0 0 25px rgba(199, 125, 255, 0.25);
}

@media (max-width: 850px) {
  .about-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }
}