/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #3E2723; /* coklat elegan */
  color: #f0f0f0;
  line-height: 1.6;
}

/* HEADER */
header {
  text-align: center;
  padding: 20px;
}

header h1 {
  font-weight: 800;
  font-size: 2.2em;
  color: #fff;
  margin-bottom: 15px;
}

header img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

/* NAVIGATION */
nav {
  background-color: #0A1F44; /* navy */
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav ul li {
  position: relative;
}

nav ul li a {
  display: block;
  padding: 12px 18px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: background 0.3s;
}

nav ul li a:hover {
  background-color: #1a3b6e;
  border-radius: 6px;
}

/* DROPDOWN */
nav ul li ul.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #0A1F44;
  border-radius: 6px;
  min-width: 180px;
  flex-direction: column;
  z-index: 1000;
}

nav ul li:hover ul.dropdown {
  display: flex;
  flex-direction: column;
}

nav ul li ul.dropdown li a {
  padding: 10px 16px;
  font-weight: 500;
}

nav ul li ul.dropdown li a:hover {
  background-color: #1a3b6e;
}

/* CONTENT */
.content {
  text-align: center;
  padding: 40px;
  max-width: 900px;
  margin: auto;
}

/* FOOTER */
footer {
  background-color: #0A1F44;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}
