/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

/* Navigasi */
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
  background: black;
  border-bottom: 2px solid #ffd700;
}

.logo img {
  width: 50px;
  height: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #ffd700;
  font-weight: bold;
}

.nav-links .active {
  border-bottom: 2px solid #ffd700;
}

.reach-out {
  background: #ffd700;
  color: #000;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

/* Bagian Kontak */
.contact-section {
  text-align: center;
  padding: 50px 20px;
}

.contact-section h1 {
  font-size: 4rem;
  color: #ffd700;
}

.contact-section p {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
}

.info-item img {
  width: 40px;
  margin-bottom: 10px;
}

.info-item p {
  font-size: 1rem;
  color: #fff;
}

/* Footer */
footer {
  text-align: center;
  padding: 10px;
  background: #111;
  color: #ffd700;
  font-size: 0.9rem;
}
