/* ================= GENERAL ================= */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #111;
}

h1, h2 {
    text-align: center;
    margin: 0;
}


/* ================= NAVBAR ================= */
.navbar {
    width: 100%;
    background-color: #0A1A3A;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    width: 45px;
    height: auto;
}

.nav-title {
    color: #D4AF37;
    font-weight: 700;
    font-size: 18px;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
}

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

.nav-toggle {
    display: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

/* ================= DROPDOWN PROGRAM PEMBINAAN ================= */
.nav-dropdown {
  position: relative;
}


.nav-parent {
  color: #ffffff;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
}

/* dropdown default mati */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 240px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 8px 0;
  list-style: none;

  display: none;
  z-index: 999;
}

/* MUNCUL SAAT HOVER LI */
.nav-dropdown:hover > .dropdown-menu,
.nav-dropdown:focus-within > .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: #0A1A3A;
  font-weight: 500;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #f4b400;
  color: #000;
}



/* ================= FOOTER MEWAH ================= */

.footer {
    background: #2f2f2f;
    color: #e5e5e5;
    padding: 60px 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* LEFT */
.footer-left {
    flex: 2;
}

.footer-logo {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 55px;
}

.footer-title {
    color: #ff0000;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-info {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.footer-info li {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

.footer-info i {
    color: #f4b400;
}

/* SOSMED */
.footer-sosmed {
    display: flex;
    gap: 12px;
}

.footer-sosmed a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
}

.footer-sosmed a:hover {
    background: #f4b400;
    color: #000;
}

/* RIGHT */
.footer-right {
    flex: 1;
}

.footer-right h4 {
    margin-bottom: 15px;
    color: #fff;
}

.footer-right ul {
    list-style: none;
    padding: 0;
}

.footer-right li {
    margin-bottom: 10px;
}

.footer-right a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-right a:hover {
    color: #f4b400;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 40px;
    padding: 25px 15px;
    text-align: center;
    color: #ddd;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
    color: #f4b400;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
}



/* ================= RESPONSIVE NAV ================= */
@media (max-width: 768px) {

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #0A1A3A;
        flex-direction: column;
        text-align: center;
        padding-bottom: 15px;
        display: none;
    }

    .nav-menu a {
        padding: 12px;
        border-top: 1px solid rgba(255,255,255,0.15);
    }

    .nav-toggle {
        display: block;
    }

    .hero-logo {
        width: 90px;
    }

    .hero-unit {
        font-size: 30px;
    }

    .hero-kemen {
        font-size: 17px;
    }
}

/* ================= NAV LIST GLOBAL FIX ================= */
.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-list > li {
  list-style: none;
}


