/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Umum */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

/* Header */
header {
  background: #111;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.05);
}

header h1 {
  font-size: 2rem;
}

nav {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #ff00ff;
}

/* Hero / Home */
.home {
  text-align: center;
  padding: 60px 20px;
}

.text-box h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.text-box p {
  margin-bottom: 20px;
}

/* Tombol Glow Gradient */
.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.glow-button {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    background: linear-gradient(60deg, rgb(12, 0, 82), rgb(73, 43, 143), rgb(255, 20, 130));
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.4s ease;
    position: relative;
    z-index: 1;
    box-shadow: 4px 4px 8px rgb(35, 4, 211);
    border-radius: 10px;
}

.glow-button::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(90deg, rgb(5, 5, 5), rgb(0, 0, 0));
    z-index: -1;
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 10px;
}

.glow-button:hover::before {
    opacity: 1;
}
/* Section Style */
section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.projects .project-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.project {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  text-align: left;
}

.project img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.project a {
  color: #8e2de2;
  text-decoration: underline;
  font-weight: 500;
}

.testimonials blockquote {
  margin: 20px auto;
  font-style: italic;
  max-width: 700px;
}

/* Kontak */
.contact a {
  color: #8e2de2;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: #111;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
}

footer .social-links {
  margin-top: 10px;
}

footer .social-links a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

footer .social-links a:hover {
  color: #ff00ff;
}

/* Responsif Mobile */
@media (max-width: 600px) {
  .buttons {
    flex-direction: column;
  }

  .project-list {
    flex-direction: column;
    align-items: center;
  }
}


/* PC (default) */
img.kecil-kiri {
  width: 300px;
  float: left;
  margin-right: 10px;
  transform: translateX(-20px);
  display: block;
}

/* Android / layar kecil */
@media (max-width: 768px) {
  img.kecil-kiri {
    width: 200px;
    transform: translateX(-10px);
  }
}

.warp {
  display: flex;
  align-items: center;
  gap: 10px;
}

.teks {
  font-size: 16px;
  overflow: hidden;
  text-align: left;
}