/* ====== WARNA UTAMA DARI LOGO ====== */
:root {
    --primary: #D7DED7;
    --secondary: #4DA1A9;
    --dark: #1F3F55;
    --light-bg: #f4f8f9;
    --white: #ffffff;
}

/* ====== GLOBAL ====== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: var(--light-bg);
    color: var(--dark);
}

/* ====== HEADER ====== */
header {
    background: var(--primary);
    color: var(--black);
    padding: 25px;
    text-align: center;
}

header img {
    width: 90px;
    height: auto;
    margin-bottom: 12px;
}

/* ====== NAVBAR ====== */
nav {
    background: var(--dark);
    padding: 12px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;

    position: relative;
    z-index: 1000;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
}

/* ====== DROPDOWN MENU ====== */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    color: var(--white);
    font-weight: bold;
    padding: 0 15px;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: var(--dark);
    min-width: 160px;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.3);
    border-radius: 6px;
    z-index: 999;
}

.dropdown-content a {
    color: var(--white);
    padding: 10px 15px;
    display: block;
    text-decoration: none;
}

.dropdown-content a:hover {
    background: var(--primary);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* ====== CONTENT ====== */
.container {
    width: 90%;
    max-width: 900px;
    margin: auto;
    padding: 20px 0;
}

.card {
    background: var(--white);
    padding: 22px;
    margin-bottom: 22px;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.12);
}

h2 {
    border-left: 6px solid var(--primary);
    padding-left: 12px;
}

/* ====== PRICE BOX ====== */
.price-box {
    border: 2px solid var(--secondary);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 12px;
    background: #ffffff;
}

/* ====== FOOTER ====== */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 18px;
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
}

footer a {
    color: var(--white);
    text-decoration: underline;
}
