body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f5f7fb;
}

/* ======================= HEADER ======================= */
header {
    background: white;
    padding: 10px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 0 20px;
}

header img {
    height: 58px;
}

.title-group h1 {
    margin: 0;
    font-size: 25px;
    color: #003e7f;
    font-weight: 700;
}

.title-group p {
    margin: 0;
    font-size: 13.5px;
    color: #555;
}

/* ======================= CONTAINER ======================= */
.container {
    max-width: 1300px;
    background: white;
    margin: 35px auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

/* ======================= CONTENT ======================= */
.content-wrapper {
    display: flex;
    gap: 30px;
}

.poster {
    width: 38%;
}

.poster img {
    width: 100%;
    border-radius: 10px;
}

.desc {
    width: 62%;
    line-height: 1.6;
    font-size: 15.5px;
}

.desc h2 {
    color: #003e7f;
    margin-top: 0;
    font-size: 22px;
}

.btn-daftar {
    background: #0057b8;
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.btn-daftar:hover {
    background: #003f7f;
}

/* ======================= BERITA ======================= */
.berita-box {
    margin-top: 40px;
    background: #fff8ea;
    border-left: 6px solid #ffc04d;
    padding: 25px;
    border-radius: 10px;
    line-height: 1.7;
}

/* ======================= TEAM GRID ======================= */
.team-box {
    margin-top: 40px;
    background: #e9f3ff;
    padding: 25px;
    border-radius: 10px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.team-item {
    background: white;
    padding: 10px 14px;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* ======================= FOOTER ======================= */
footer {
    margin-top: 60px;
    background: #003f7f;
    color: white;
    padding: 18px 0;
    text-align: center;
    font-size: 14px;
}

/* ======================= RESPONSIVE ======================= */
@media (max-width: 1000px) {
    .content-wrapper {
        flex-direction: column;
    }
    .poster, .desc {
        width: 100%;
    }
}

@media (max-width: 650px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ======================= HP HEADER ======================= */
@media (max-width: 600px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        padding: 15px 10px;
        gap: 10px;
    }

    header img {
        height: 70px;
    }

    .title-group h1 {
        font-size: 21px;
    }

    .title-group p {
        font-size: 13px;
    }
}

/* ======================= NAVBAR ======================= */
.navbar {
    background: #003f7f;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    max-width: 1300px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

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

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

/* ======================= DROPDOWN STABIL ======================= */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: white;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: 6px;

    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 999;
}

/* Area aman anti hilang */
.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li a {
    color: #003f7f;
    padding: 10px 14px;
    display: block;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: #e9f3ff;
}

/* ======================= MENU MOBILE ======================= */
.menu-icon {
    display: none;
    font-size: 22px;
    color: white;
    cursor: pointer;
}

#menu-toggle {
    display: none;
}

@media (max-width: 900px) {
    .menu-icon {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        background: #003f7f;
        width: 100%;
        flex-direction: column;
        display: none;
        padding: 15px 0;
    }

    .nav-menu li {
        text-align: center;
    }

    .nav-menu li a {
        display: block;
        padding: 10px 0;
    }

    #menu-toggle:checked + .menu-icon + .nav-menu {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
    }
}

/* ======================= PROJECT HIGHLIGHT ======================= */
.project-highlight {
    margin-top: 40px;
}

.project-highlight h2 {
    margin-bottom: 20px;
    color: #1f2d3d;
}

.project-card {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, #ffffff, #f0f4ff);
    border-radius: 16px;
    padding: 25px;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-icon {
    font-size: 48px;
    color: #3b82f6;
    background: #e6efff;
    padding: 20px;
    border-radius: 50%;
}

.project-content h3 {
    margin-bottom: 10px;
    color: #1f2937;
}

.project-content p {
    color: #4b5563;
    line-height: 1.6;
}

.project-tags {
    margin: 15px 0;
}

.project-tags span {
    background: #3b82f6;
    color: white;
    padding: 6px 12px;
    margin-right: 8px;
    font-size: 12px;
    border-radius: 20px;
}

.btn-project {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-project:hover {
    background: #1d4ed8;
}
