/* RESET DASAR */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GLOBAL */
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  
  color: #333;
  background : url(../Assets/bg2.png) no-repeat center 0;
  background-size: cover;
  
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* CONTAINER BIAR RAPI */
.container {
 width: 100%;
  max-width: 1800px;
  margin: auto;
  margin-bottom: 40px;
}

/* NAVBAR */
.header {
  background: transparent;
  color: #fff;
  width: 100%;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 80px;
  width: auto;
  
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo h2 {
  margin: 0;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}


.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu a {
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #00bcd4;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  padding: 20px;
  border-radius: 15px;
height: 200px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);

  color: #fff;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #aaa;
}

.footer p:hover {
  color: #fff;
}

@media (max-width: 1000px) {

     .navbar {
    flex-direction: column;
    gap: 10px;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
  }

  .tools-grid {
    grid-template-columns: 1fr; /* 1 kolom di HP */
  }
}



