body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #f5f7fa, #c3e8d3);
}

/* Header dengan hamburger + brand */
header {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    color: white;
    padding: 10px 15px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    text-align: center;
}

.menu-toggle {
    font-size: 26px;
    cursor: pointer;
    margin-right: 15px;
}

.brand {
    font-weight: 600;
    font-size: 1.1rem;
}

.brand span {
    color: #ffeb3b; /* Kuning biar kontras */
}

/* Menu tersembunyi default */
nav {
    display: none;
    flex-direction: column;
    background: #2e7d32;
}

nav.active {
    display: flex;
}

nav a {
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

nav a:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Profil */
.profil {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);
    text-align: center;
    padding: 30px 20px;
    margin: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.profil h1 {
    color: #1b5e20;
}

.profil p {
    max-width: 600px;
    margin: auto;
    color: #1b5e20;
    line-height: 1.6;
}

/* Pengalaman */
.pengalaman {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);
    padding: 25px 20px;
    margin: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pengalaman h2 {
    color: #1b5e20;
    text-align: center;
}

.pengalaman ul {
    max-width: 600px;
    margin: auto;
    color: #2e7d32;
    line-height: 1.6;
}

/* Space Iklan */
.iklan {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.iklan-box {
    width: 320px;
    height: 100px;
    background: linear-gradient(135deg, #a5d6a7, #81c784);
    border: 2px dashed #1b5e20;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    color: #1b5e20;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}