/* --- GLOBAL RESET --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ANTI GARIS BAWAH & WARNA LINK DEFAULT */
a {
  text-decoration: none; /* Garis bawah hilang total */
  color: inherit; /* Warna ngikutin teks induk */
  transition: 0.3s ease;
}

body {
  background-color: #050505; /* Hitam pekat ala streetwear */
  color: #ffffff;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3 {
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* --- NAVIGATION --- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  background: #000;
  border-bottom: 1px solid #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 8px;
  font-family: "Syncopate", sans-serif;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li a {
  color: #666; /* Warna link nav saat normal */
  margin-left: 30px;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 2px;
}

nav ul li a:hover {
  color: #fff; /* Warna link nav saat di-hover */
}

/* --- FOOTER --- */
footer {
  padding: 80px 50px;
  background: #000;
  border-top: 1px solid #1a1a1a;
  text-align: center;
}

footer p {
  font-size: 0.7rem;
  color: #444;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* --- HELPER CLASSES --- */
.text-center {
  text-align: center;
}
.mt-5 {
  margin-top: 3rem;
}
.mb-5 {
  margin-bottom: 3rem;
}

.search-overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.search-content {
  position: relative;
  top: 40%;
  width: 80%;
  margin: auto;
  text-align: center;
}

.search-content input {
  background: transparent;
  border: none;
  border-bottom: 2px solid #333;
  color: white;
  font-size: 3rem;
  width: 100%;
  font-family: "Syncopate", sans-serif;
  outline: none;
  text-align: center;
}

.search-content p {
  color: #555;
  margin-top: 20px;
  letter-spacing: 5px;
  font-size: 0.7rem;
}

.close-btn {
  position: absolute;
  top: 40px;
  right: 50px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}
