/* fallback */
@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 100 700;
    src: url('MaterialSymbolsOutlined.woff2') format('woff2');
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* Kontainer Utama Menu */
.menu-container {
    width: 100%;
    max-width: 400px; /* Lebar maksimal seperti di mobile */
}

h1 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    text-align: left;
    margin-bottom: 25px;
}

/* Daftar Menu */
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px; /* Jarak antar item menu */
}

/* Setiap Item Menu */
.menu-item {
    display: flex;
    align-items: center;
    padding: 16px;
    border-radius: 20px;
    text-decoration: none;
    color: #3a3a3a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

    .menu-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

/* Wrapper untuk Ikon */
.icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
    flex-shrink: 0; /* Mencegah ikon menyusut */
}

    .icon-wrapper .material-symbols-outlined {
        font-size: 26px;
        color: #333;
    }

/* Teks Menu */
.menu-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}


/* -- VARIASI WARNA UNTUK SETIAP ITEM -- */

/* 1. Data Diri (Kuning Pucat) */
.item-1 {
    background: linear-gradient(135deg, #fefdf6, #fbf7e8);
}

    .item-1 .icon-wrapper {
        background-color: #f3edd9;
    }

/* 2. Sekilas Info (Oranye Pucat) */
.item-2 {
    background: linear-gradient(135deg, #fff7f2, #feeede);
}

    .item-2 .icon-wrapper {
        background-color: #f5e0d1;
    }

/* 3. Manfaat Olahraga (Ungu Pucat) */
.item-3 {
    background: linear-gradient(135deg, #f5f6fe, #eef0fc);
}

    .item-3 .icon-wrapper {
        background-color: #dde0ef;
    }

/* 4. Faktor Penyebab (Biru Pucat) */
.item-4 {
    background: linear-gradient(135deg, #f0fcfa, #e6f9f6);
}

    .item-4 .icon-wrapper {
        background-color: #d8ece7;
    }

/* 5. Penanganan (Hijau Mint) */
.item-5 {
    background: linear-gradient(135deg, #effff8, #e5fcf2);
}

    .item-5 .icon-wrapper {
        background-color: #d6eee5;
    }

/* 6. Komunitas (Pink Pucat) */
.item-6 {
    background: linear-gradient(135deg, #fef4f6, #fbebed);
}

    .item-6 .icon-wrapper {
        background-color: #efdee1;
    }

/* 7. Obat Inhaler (Oranye Kemerahan) */
.item-7 {
    background: linear-gradient(135deg, #fff5f2, #feebe7);
}

    .item-7 .icon-wrapper {
        background-color: #f3dcd6;
    }
