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

html, body {
  min-height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background: #000;
  color: #fff;
}

/* ================= NAVBAR ================= */
.navbar {
  background: transparent !important;
  padding: 20px 80px;
  width: 100%;
  z-index: 100;
  transition: 0.3s;
}

.navbar .nav-link {
  color: #fff !important;
  margin-left: 25px;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: 0.2s;
}

.navbar .nav-link:hover {
  opacity: 0.6;
}

/* ================= JUDUL ================= */
h1 {
  letter-spacing: 1px;
  margin-bottom: 30px;
  text-align: center;
}

/* ================= GALLERY CONTAINER ================= */
.gallery-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 80px;
}

/* ================= GALLERY GRID ================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 900px;
}

/* ================= CARD ================= */
.card {
  background: transparent;
  border: none;
  transition: transform 0.3s ease;
}

.card a {
  text-decoration: none;
  color: #fff;
}

.card img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  background: transparent;
  border-radius: 8px;
}

.card h3 {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 500;
}

.card p {
  font-size: 14px;
  color: #aaa;
}

/* Hover */
.card:hover {
  transform: translateY(-6px);
}

/* ================= FOOTER ================= */
footer {
  border-top: 1px solid rgba(255,255,255,0.1);
}

footer i {
  font-size: 18px;
  transition: 0.3s;
}

footer i:hover {
  opacity: 0.7;
}

/* ================= MOBILE & TABLET ================= */
@media (max-width: 768px) {

  /* Navbar */
  .navbar {
    padding: 15px 20px;
  }

  /* Gallery */
  .gallery-container {
    padding: 40px 20px;
  }

  .gallery {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .card img {
    height: 260px;
  }

  /* Footer */
  footer .container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}
  