@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0f011b;
  color: #fff;
}

header {
  position: fixed;
  width: 100%;
  padding: 25px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 1, 27, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.logo {
  font-size: 2em;
  color: #ff00e6;
}

.logo span { color: #00ff73; }

.navigation a {
  text-decoration: none;
  color: #fff;
  margin: 0 20px;
  font-weight: 500;
  transition: .3s;
}

.navigation a.active,
.navigation a:hover {
  color: #7d2ae8;
}

.btn-talk {
  padding: 8px 25px;
  background: #7d2ae8;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid #7d2ae8;
  transition: .3s;
}

.btn-talk:hover {
  background: transparent;
  color: #7d2ae8;
}

.about {
  padding: 150px 80px 80px;
}

.about-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.about-image img {
  width: 300px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(125,42,232,0.4);
}

.about-content {
  max-width: 600px;
}

.about-content h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.about-content h1 span {
  color: #7d2ae8;
}

.about-content p {
  margin-bottom: 15px;
  color: #ccc;
  line-height: 1.7;
}

.skills {
  margin-top: 20px;
}

.skills h3 {
  color: #7d2ae8;
  margin-bottom: 10px;
}

.skills ul {
  list-style: none;
}

.skills li {
  margin: 8px 0;
  font-size: 1.1em;
}

.skills li i {
  color: #00ff73;
  margin-right: 10px;
}

footer {
  text-align: center;
  padding: 30px;
  background: #120128;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-image img {
    width: 200px;
  }
}

/* Tombol Let's Talk */
.btn-talk {
  position: relative;
  display: inline-block;
  padding: 10px 35px;
  font-size: 1em;
  color: #fff;
  background: linear-gradient(135deg, #7d2ae8, #00ff73);
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(125, 42, 232, 0.5);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-talk:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 255, 115, 0.6),
              0 0 45px rgba(125, 42, 232, 0.6);
  background: linear-gradient(135deg, #00ff73, #7d2ae8);
}

/* Efek cahaya bergerak */
.btn-talk::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-45deg);
  transition: 0.7s;
}

.btn-talk:hover::before {
  left: 100%;
}

/* Efek animasi pulse halus */
@keyframes pulse {
  0% {
    box-shadow: 0 0 10px rgba(125, 42, 232, 0.6),
                0 0 20px rgba(0, 255, 115, 0.6);
  }
  50% {
    box-shadow: 0 0 20px rgba(125, 42, 232, 0.8),
                0 0 40px rgba(0, 255, 115, 0.8);
  }
  100% {
    box-shadow: 0 0 10px rgba(125, 42, 232, 0.6),
                0 0 20px rgba(0, 255, 115, 0.6);
  }
}

.btn-talk {
  animation: pulse 2s infinite;
}

/* Responsive untuk mobile */
@media (max-width: 600px) {
  .btn-talk {
    padding: 8px 25px;
    font-size: 0.9em;
  }
}
