:root {
  --font: "Geist", "Geist Placeholder", sans-serif;
  --bg: #ffffff;
  --bg-dark: #111111; /* ✅ Tambahan untuk background gelap */
  --text: #111111;
  --accent: #e63946;
  --hover: #f1f1f1;
}

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: var(--font);
      background: var(--bg);
      color: var(--text);
    }

    .href{
      text-decoration: none;
      color: var(--text);
    }
header {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}




    .fa-bolt{
        color: var(--accent) !important;
    }

    .fa-arrow-right{
        color: var(--accent) !important;
    }

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}



    .logo i {
      color: var(--accent);
    }

    nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
    }

    nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: 0.2s ease;
    }

    nav a:hover {
    color: var(--accent);
    }



    .actions {
      display: flex;
      gap: 16px;
      align-items: center;
    }

    .toggle-icon {
      font-size: 1.2rem;
      cursor: pointer;
      color: var(--text);
      transition: 0.2s ease;
    }

    .toggle-icon:hover {
      color: var(--accent);
    }



.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

#mobileMenu {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-icons a {
  font-size: 1.2rem;
  color: #000;
  text-decoration: none;
}



@media (max-width: 768px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .hamburger {
    display: block;
    margin-top: -18px !important;
  }

  #mobileMenu {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 16px;
    margin-top: 20px;
  }

  #mobileMenu.show {
    display: flex;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }
}

.template-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-top: 5px;
  color: #666;
}

