* { 
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Background hitam total */
html, body {
  background-color: #000;
  color: #fff;
}

/* HEADER */
header {
  background: #000;
  padding: 24px 60px;
  display: flex;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: 700;
}

/* Menu navigasi di kanan */
.navbar {
  display: flex;
  width: 100%;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  margin-left: auto;
}

.nav-links li {
  margin-left: 32px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}

.nav-links li a:hover {
  opacity: 1;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  min-height: 100vh;
  padding: 0 60px;
  gap: 20px;
}

/* LEFT TEXT */
.hero-text h4 {
  color: #b59cff;
  margin-bottom: 8px;
}

.hero-text h1 {
  font-size: 52px;
  line-height: 1.2;
}

.hero-text span {
  color: #b59cff;
}

.hero-text p {
  margin-top: 12px;
  opacity: 0.8;
}

/* SOCIAL ICONS */
.social-icons {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  opacity: 0.7;
}

.social-icons a:hover {
  opacity: 1;
}

/* HERO CENTER - lingkaran ungu di belakang foto */
.hero-image {
  position: relative;
  width: 460px;
  height: 460px;
}

.profile-glow {
  position: absolute;
  bottom: -20px; 
  left: 50%;
  width: 320px; 
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,120,255,0.8) 0%, rgba(155,120,255,0.35) 60%, transparent 100%);
  filter: blur(40px);
  transform: translateX(-50%);
  z-index: 1;
}

.hero-image img {
  width: 460px;
  height: 460px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 auto;
}

/* RIGHT TEXT */
.hero-desc h3 {
  font-size: 42px;
  text-align: left;
}

.hero-desc span {
  color: #b59cff;
}

/* SECTIONS */
.section {
  padding: 80px;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.section p {
  opacity: 0.8;
}

.empty-project {
  text-align: center;
  opacity: 0.7;
}

.contact-links a {
  display: inline-block;
  margin-right: 16px;
  text-decoration: none;
  color: #fff;
  opacity: 0.8;
}

.contact-links a:hover {
  opacity: 1;
}

footer {
  text-align: center;
  padding: 40px 0;
  opacity: 0.6;
}

/* ======================
   RESPONSIVE DESIGN
   ====================== */

/* Tablet */
@media (max-width: 1024px) {
  header {
    padding: 24px 40px;
  }

  .hero {
    gap: 15px;
    padding: 0 40px;
  }

  .hero-text h1 {
    font-size: 44px;
  }

  .hero-desc h3 {
    font-size: 36px;
  }

  .hero-image {
    width: 380px;
    height: 380px;
  }

  .hero-image img {
    width: 380px;
    height: 380px;
  }

  .profile-glow {
    width: 280px;
    height: 280px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  header {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    margin-left: 0;
    margin-top: 12px;
    flex-wrap: wrap;
  }

  .nav-links li {
    margin-left: 0;
    margin-right: 16px;
    margin-bottom: 8px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
  }

  .hero-text, .hero-desc {
    width: 100%;
    max-width: 320px;
    text-align: center;
    margin-bottom: 20px;
  }

  .hero-image {
    width: 240px;
    height: 240px;
    margin-bottom: 20px;
  }

  .hero-image img {
    width: 240px;
    height: 240px;
  }

  .profile-glow {
    width: 200px;
    height: 200px;
  }
}
