@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 {
  color: #fff;
  margin: 0 20px;
  text-decoration: none;
  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;
  border: 2px solid #7d2ae8;
  text-decoration: none;
}

.blog {
  padding: 150px 80px 80px;
  text-align: center;
}

.blog h1 {
  font-size: 2.8em;
}

.blog h1 span {
  color: #7d2ae8;
}

.subtitle {
  color: #aaa;
  margin-bottom: 40px;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #1a012f;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.4s;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-info {
  padding: 20px;
  text-align: left;
}

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

.blog-info p {
  color: #ccc;
  font-size: 0.95em;
  margin-bottom: 15px;
}

.blog-info a {
  color: #00ff73;
  text-decoration: none;
  font-weight: 500;
}

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

/* 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;
  }
}
